@media (max-width: 600px) {

  /* 📦 Header */
  header,
  body.dark header {
    width: 90%;
    padding: 22px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
  }

  body.dark header {
    background: rgba(25, 25, 25, 0.26);
    border-color: rgba(255, 255, 255, 0.1);
  }

  /* ✨ Logo */
  .logo img,
  body.dark .logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
  }

  .logo-text,
  body.dark .logo-text {
    font-size: 2.4rem;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
    margin-top: 10px;
  }

  /* 🌗 Theme Switch – smaller version */
  .theme-switch,
  body.dark .theme-switch {
    position: fixed;
    top: 20px;
    right: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 62px;   /* ⬅ փոքրացվել է */
    height: 25px;  /* ⬅ փոքրացվել է */
    border-radius: 20px;
    background: #e6e6e6;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1.5px 3px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: none;
  }

  body.dark .theme-switch {
    background: #1f1f1f;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 1.5px 3px rgba(0,0,0,0.3);
  }

  .switch-label { display: none; }

  /* Toggle Track */
  .switch-toggle,
  body.dark .switch-toggle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  /* ☀️🌙 Circle – smaller */
  .switch-circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;   /* ⬅ նախկինում 26px */
    height: 20px;  /* ⬅ նախկինում 26px */
    border-radius: 50%;
    background: white;
    box-shadow: 0 1.5px 3px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
  }

  .switch-circle img {
    width: 11px;  /* ⬅ փոքրացվել է */
    height: 11px;
    transition: all 0.3s ease;
  }

  /* ☀️ լուսավոր ռեժիմ */
  .switch-circle img.sun { display: block; }
  .switch-circle img.moon { display: none; }

  /* 🌙 մութ ռեժիմ */
  body.dark .switch-circle {
    transform: translateX(38px);  /* ⬅ հարմարեցված փոքր տարբերակին */
  }

  body.dark .switch-circle img.sun { display: none; }
  body.dark .switch-circle img.moon { display: block; filter: invert(1); }

  /* 👁 Visitor Box */
  .visitor-box,
  body.dark .visitor-box {
    position: fixed;
    top: 21px;
    left: 5px;
    font-size: 11px;
    font-weight: 300;
    padding: 1px 3px;
    border-radius: 8px;
    background: rgba(240,240,240,0.7);
    color: #333;
    backdrop-filter: blur(6px);
  }

/* 🌐 Contacts */
.contact-links {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 սյունակ */
  grid-template-rows: repeat(2, auto);   /* 2 շարք */
  justify-items: center;
  align-items: center;
  gap: 20px 30px; /* տողերի և սյուների միջև տարածություն */
}

.contact-links a img,
body.dark .contact-links a img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: none;
}

.contact-links span,
body.dark .contact-links span {
  font-size: 12px;
  text-transform: uppercase;
}


  body.dark .visitor-box {
    background: rgba(255,255,255,0.08);
    color: #eee;
  }
}

