/* ===================== RESET & BASE ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #fff !important;

}

body {
    /* font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
    /* color: #111827; */
    color: #71706F;
    background: #fff !important;
    line-height: 1.5;
}


/* 🔥 RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 🔥 ROOT SETTINGS */
html {
  font-size: 16px;
}

body {
  font-family: sans-serif;
  line-height: 1.5;
  background: #fff;
  color: #111;
}

/* 🔥 IMAGES */
img {
  max-width: 100%;
  display: block;
}

/* 🔥 LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* 🔥 LISTS */
ul, ol {
  list-style: none;
}

/* 🔥 BUTTONS */
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ===================== LAYOUT ===================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 0;
}

.muted {
    color: #6b7280;
}

.title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #71706F;
}

.subtitle {
    margin-top: 10px;
    font-size: 16px;
}

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* ===== LOGO ===== */
.header-logo {
    flex: 0 0 auto;
}

.logo-img {
    width: 80px;
    height: auto;
    background: transparent !important;
    mix-blend-mode: multiply;
    display: block;
}

/* ===== DESKTOP NAV ===== */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
    margin: 0 20px;
}

.nav-link,
.dropdown-btn {
    color: #71706F;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.nav-link:hover,
.dropdown-btn:hover {
    color: #4A4A4A;
}

.nav-link.active {
    color: #4A4A4A;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F0ECE9;
    border-radius: 2px;
}

.caret {
    font-size: 18px;
    opacity: 0.8;
    transition: transform 0.2s;
}

.nav-dropdown.is-open .caret {
    transform: rotate(180deg);
}

/* ===== DROPDOWN - ՔԼԻԿԻՆ ԲԱՑՎԻ ===== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 200px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1001;
    text-align: center;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #71706F;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #4A4A4A;
}

/* ===== HEADER RIGHT ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #71706F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    padding: 8px 0;
    transition: color 0.2s;
}

.header-phone:hover {
    color: #4A4A4A;
}

/* ===== LANGUAGE SWITCHER - ԱՄԵՐԻԿՅԱՆ ԴՐՈՇ ===== */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    color: #71706F;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: #f9fafb;
    border-color: rgba(0, 0, 0, 0.18);
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 15px;
}

.lang-flag svg,
.flag svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
    list-style: none;
    text-align: left;
}

.lang-switcher.is-open .lang-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-dropdown li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 2px;
}

.lang-dropdown li:hover {
    background: #f8f9fb;
}

.lang-dropdown li.active-lang {
    background: #F0ECE9 !important;
}

.lang-dropdown li.active-lang .lang-link {
    color: #4A4A4A;
    font-weight: 700;
}

.lang-link {
    color: #71706F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}

.flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 15px;
    flex-shrink: 0;
}

/* ===== MENU BUTTON ===== */
.menu-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.menu-btn:hover {
    background: #f9fafb;
    border-color: rgba(0, 0, 0, 0.18);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: #71706F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active .menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active .menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
}

.mobile-menu.is-open {
    max-height: 600px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0 20px;
}

.mobile-link {
    color: #71706F;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.mobile-link.active {
    background: #F0ECE9;
    color: #4A4A4A;
    font-weight: 700;
    border-radius: 8px;
    border-bottom: none;
}

.mobile-details {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4px 0;
}

.mobile-details summary {
    list-style: none;
    cursor: pointer;
    color: #71706F;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.mobile-details summary::-webkit-details-marker {
    display: none;
}

.mobile-sub {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: #f9fafb;
    margin-top: 4px;
    border-radius: 8px;
}

.mobile-sub-link {
    color: #71706F;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-sub-link:last-child {
    border-bottom: none;
}

.mobile-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 12px 0 4px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #71706F;
    text-decoration: none;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== MOBILE LANGUAGE - ՄԵՋՏԵՂՈՎ, ՀԱՅԵՐԵՆ/RUSSIAN/ENGLISH ===== */
.mobile-lang-switcher {
    width: 100%;
    padding: 16px 0 8px;
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.mobile-lang-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    background: #f8f9fb;
    color: #71706F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-width: 110px;
}

.mobile-lang-item.active-lang {
    background: #F0ECE9 !important;
    color: #4A4A4A;
    font-weight: 700;
    border-color: rgba(0, 0, 0, 0.08);
}

.mobile-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 15px;
}

.mobile-flag svg {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.mobile-lang-text {
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */

.desktop-only {
    display: inline-block;
}

/* Tablet – այստեղ արդեն անցնում ենք mobile menu-ի */
@media (max-width: 992px) {

    .desktop-nav,
    .header-phone,
    .lang-switcher {
        display: none !important;
    }

    .menu-btn {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .header-logo .logo-img {
        width: 70px;
    }

    .mobile-lang-items {
        gap: 12px;
    }

    .mobile-lang-item {
        padding: 8px 16px;
        min-width: 100px;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .mobile-lang-items {
        gap: 8px;
        flex-direction: column;
        max-width: 200px;
    }

    .mobile-lang-item {
        width: 100%;
        padding: 10px 16px;
    }
}

/* Desktop only */
@media (min-width: 993px) {

    .mobile-menu {
        display: none !important;
    }

    .menu-btn {
        display: none !important;
    }
}


/* ================= HERO (TEXT FITS IMAGE) ================= */

.hero-section {
    --header-height: 70px;
    --section-space: clamp(70px, 9vw, 130px);

    padding-top: calc(var(--header-height) + var(--section-space));
    padding-bottom: var(--section-space);

    background: #F0ECE9;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(26px, 4vw, 60px);
    align-items: stretch;
    /* նույն բարձրություն */
}

/* ✅ Նկարի վերահսկվող բարձրություն՝ առանց կտրվելու */
.hero-image-wrapper {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 560px;

    /* կարևորը սա է */
    max-height: clamp(300px, 40vw, 520px);
    /* ✅ նկարի բարձրությունը վերահսկում ենք */
    height: auto;

    object-fit: contain;
    /* ✅ չի կտրվում */
    display: block;
}

/* ✅ Տեքստը “հավասարվում է” նկարի բարձրությանը */
.hero-content {
    max-width: 560px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ✅ տեքստը կենտրոնանում է նկարի բարձրության մեջ */
}

/* ✅ Ֆոնտերը համաչափ՝ նկարի չափին համապատասխան */
.hero-title {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800;
    line-height: 1.50;
    color: #71706F;
    margin-bottom: clamp(10px, 1.2vw, 16px);
    letter-spacing: -0.2px;
}

.hero-text {
    font-size: clamp(14.5px, 1.15vw, 16.5px);
    line-height: 1.65;
    color: #6b6b7a;

    /* որ տեքստը չդառնա շատ “երկար” ու չգերազանցի նկարի տպավորությունը */
    max-width: 52ch;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image {
        max-width: 520px;
        max-height: clamp(280px, 44vw, 480px);
    }

    .hero-text {
        max-width: 48ch;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        justify-content: flex-start;
        /* mobile-ում բնական */
        align-items: center;
    }

    .hero-text {
        max-width: 60ch;
        /* mobile-ում կարող է մի քիչ լայն լինել */
    }

    .hero-image-wrapper {
        justify-content: center;
    }

    .hero-image {
        max-width: 520px;
        max-height: clamp(260px, 70vw, 440px);
    }
}






/* ================= MID SIZES FIX (tablet + small laptop) ================= */

/* 769px–1100px միջակայք — սովորաբար հենց այստեղ է փչանում */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-section {
        /* ✅ padding-ը փոքրացնում ենք, որ section-ը “չլայնանա/չերկարանա” */
        --section-space: clamp(34px, 5.2vw, 64px);
    }

    .hero-grid {
        /* ✅ stretch-ը հանում ենք, որ չձգի ավելորդ բարձրություն */
        align-items: center;
        gap: clamp(18px, 3vw, 40px);
    }

    .hero-image {
        /* ✅ միջին էկրանների համար ավելի ճիշտ սահման */
        max-height: clamp(280px, 34vw, 420px);
        max-width: 520px;
    }

    .hero-text {
        max-width: 50ch;
    }
}

/* 1101px–1280px — “փոքր desktop” կարգավորում */
@media (min-width: 1101px) and (max-width: 1280px) {
    .hero-section {
        --section-space: clamp(46px, 5.5vw, 86px);
    }

    .hero-grid {
        align-items: center;
    }

    .hero-image {
        max-height: clamp(320px, 30vw, 480px);
    }
}


/* ✅ FIX հենց 768px և ներքևի համար */
@media (max-width: 768px) {
    .hero-section {
        /* 768-ում սա է խնդիրը — շատ մեծ էր */
        --section-space: clamp(22px, 5vw, 42px);

        padding-top: calc(var(--header-height) + var(--section-space));
        padding-bottom: var(--section-space);
    }

    .hero-content {
        /* 768-ում որ centered լինի, ոչ թե վերև */
        justify-content: center;
    }
}

/* ================= HERO WIDTH BALANCE ================= */

/* ✅ Desktop-ում լայնացնենք կոնտենտը */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 640px;
    }

    .hero-image {
        max-width: 620px;
    }

    .hero-text {
        max-width: 58ch;
    }
}

/* ✅ Mobile-ում container-ը “չսեղմի” */
@media (max-width: 768px) {
    .container {
        padding: 0 14px;
        /* 20px-ի փոխարեն՝ ավելի լայն տեսք */
    }

    .hero-content {
        max-width: none;
        /* ✅ չսահմանափակի */
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        /* ✅ թող զբաղեցնի ամբողջ լայնքը */
    }

    .hero-image {
        width: 100%;
        max-width: 560px;
        /* պահում ենք, որ չդառնա ահռելի */
    }


}


/* ✅ Փոքր mobile — ավելի “full width” */
@media (max-width: 420px) {
    .container {
        padding: 0 12px;
    }
}


/* ===================== CATEGORIES ===================== */
.cat-head {
    text-align: center;
    margin-bottom: 30px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: start;
    justify-items: center;
}

.cat-item {
    text-align: center;
    width: 100%;
    max-width: 140px;
}

.cat-img {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    display: grid;
    place-items: center;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-item p {
    margin-top: 10px;
    font-weight: 800;
    color: #71706F;
    font-size: 14px;
}

/* ===================== WEEKLY OFFERS ===================== */

.weekly-head {
    text-align: center;
    margin-bottom: 40px;
}

.weekly-head h2 {
    font-size: 34px;
    font-weight: 800;
}

.weekly-head p {
    margin-top: 10px;
    color: #6b7280;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06), 0 24px 50px rgba(0, 0, 0, .10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12), 0 40px 80px rgba(0, 0, 0, .16);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #D92727;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.card img {
    width: 100%;
    object-fit: contain;
    background: #f9fafb;
    padding: 14px;
}

.card-body {
    padding: 16px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    align-items: baseline;
}

.old-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.new-price {
    font-size: 22px;
    font-weight: 900;
    color: #D92727;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 999px;
    background-color: #F0ECE9;
    color: #71706F;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease;
    margin-top: auto;
}

.btn:hover {
    border: 1px solid #ccc;
    background: #fff;
}

/* ===================== REVIEWS ===================== */
.reviews {
    background: #fff;
}

.reviews-head {
    text-align: center;
}

.ig-btn {
    margin: 24px auto 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #F0ECE9;
    font-weight: 800;
    color: #71706F;
}

.ig-btn:hover {
    background: #fff;
}

/* ===================== HOW TO ORDER ===================== */
.how-head {
    text-align: center;
    margin-bottom: 40px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 22px;
    position: relative;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .08);
    text-align: center;
}

.how-circle {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.how-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #71706F;
}

.how-card p {
    color: #6b7280;
    font-size: 14px;
}

/* ===================== FOOTER ===================== */
footer {
    background: #F0ECE9;
    color: #71706F;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 90px;
}


.footer-col h4 {
    margin-bottom: 12px;
    font-weight: 900;
    color: #71706F;
    font-size: 16px;
}

.footer-links a {
    display: inline-block;
    padding: 5px 0;
    color: #71706F;
    font-size: 14px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    color: #71706F;
    font-size: 14px;
}

.footer-contact a {
    color: #71706F;
}


.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-ic {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: #71706F;
    font-weight: 900;
    font-size: 16px;
}

.copy {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    font-size: 12px;
    color: #71706F;
}

.float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

/* ===================== FOOTER SOCIAL ICONS ===================== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #71706F;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(113, 112, 111, 0.1);
    text-decoration: none;
}

.social-ic i,
.social-ic span {
    font-size: 20px;
    color: #71706F;
    transition: all 0.3s ease;
}

.social-ic:hover {
    background: #71706F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(113, 112, 111, 0.2);
    border-color: transparent;
}

.social-ic:hover i,
.social-ic:hover span {
    color: #FFFFFF;
}

.h4-center {
    margin: 0 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }

    .social-ic {
        width: 40px;
        height: 40px;
    }

    .social-ic i,
    .social-ic span {
        font-size: 18px;
    }
}

/* ================= FAB ================= */

.fab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fab-main {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    color: #71706F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    transition: .3s;
}

.fab-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: .3s;
}

.fab-container.active .fab-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    transition: .3s;
}

.fab-btn:hover {
    transform: scale(1.1);
}

/* COLORS */
.whatsapp {
    background: #25D366;
}

.viber {
    background: #7360F2;
}

.phone {
    background: #0d6efd;
}

/* ================= SCROLL TO TOP ================= */

.scroll-to-top {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    transition: .3s;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

.scroll-to-top .arrow {
    width: 12px;
    height: 12px;
    border-left: 3px solid #71706F;
    border-top: 3px solid #71706F;
    transform: rotate(45deg);
    margin-top: 4px;
}

/* ===================== FOOTER SOCIAL ICONS ===================== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #71706F;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(113, 112, 111, 0.1);
    text-decoration: none;
}

.social-ic i,
.social-ic span {
    font-size: 20px;
    color: #71706F;
    transition: all 0.3s ease;
}

.social-ic:hover {
    background: #71706F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(113, 112, 111, 0.2);
    border-color: transparent;
}

.social-ic:hover i,
.social-ic:hover span {
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }

    .social-ic {
        width: 40px;
        height: 40px;
    }

    .social-ic i,
    .social-ic span {
        font-size: 18px;
    }
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    .section {
        padding: 50px 0;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .weekly-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}


/* Footer Mobile */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: #71706F;
    }


    .footer-contact li {
        justify-content: center;
    }

    .footer-links br {
        display: none;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-links a {
        display: block;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col:last-child {
        text-align: center;
    }

    .copy {
        margin-top: 30px;
        padding-top: 15px;
        font-size: 12px;
    }
}

/* Small Screens */
@media (max-width: 576px) {
    .title {
        font-size: 20px;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .weekly-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }



    .to-top {
        right: 18px;
        bottom: 18px;
    }

    .footer-contact {
        font-size: 13px;
    }

    .footer-contact li {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .footer-contact span:first-child {
        font-size: 16px;
        min-width: 20px;
        text-align: center;
        margin-bottom: 0;
    }

    .cat-img {
        width: 80px;
        height: 80px;
    }

    .cat-item p {
        font-size: 13px;
    }
}

/* Extra Small Screens */
@media (max-width: 420px) {
    .brand-logo {
        width: 80px;
        height: 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero-card img {
        height: 240px;
    }

    .burger {
        width: 42px;
        height: 42px;
    }

    .burger span {
        width: 18px;
    }

    .burger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu .lang-btn {
        min-width: 120px;
    }

    .mobile-menu .lang-dropdown {
        min-width: 120px;
    }
}

/* ================= FIXED FLOAT WRAPPER - ԿԱՐԳԱՎՈՐՎԱԾ ================= */
.float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

/* ================= FAB CONTAINER ================= */
.fab-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-container.active .fab-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
    border: 1px solid rgba(113, 112, 111, .1);
}

.fab-main i {
    font-size: 24px;
    color: #71706F;
    transition: transform 0.3s ease;
}

.fab-container.active .fab-main i {
    transform: rotate(45deg);
}

.fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, .8);
}

.fab-btn:hover {
    transform: scale(1.1);
}

.whatsapp i {
    color: #25D366;
    font-size: 24px;
}

.viber i {
    color: #7360F2;
    font-size: 24px;
}

.phone i {
    color: #0d6efd;
    font-size: 20px;
}

/* ================= SCROLL TO TOP ================= */
.scroll-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
    border: 1px solid rgba(113, 112, 111, .1);
}

.scroll-to-top .arrow {
    width: 12px;
    height: 12px;
    border-left: 2px solid #71706F;
    border-top: 2px solid #71706F;
    transform: rotate(45deg);
    margin-top: 5px;
}

.scroll-to-top:hover {
    background: #e5e0db;
    transform: translateY(-3px);
}

/* ===== MOBILE SAFE AREA - ՄԵԿ ՄԵԴԻԱ ԲԼՈԿ ===== */
@media (max-width: 768px) {
    .float-wrapper {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .fab-main {
        width: 48px;
        height: 48px;
    }

    .fab-main i {
        font-size: 22px;
    }

    .fab-btn {
        width: 42px;
        height: 42px;
    }

    .fab-btn i {
        font-size: 20px !important;
    }

    .scroll-to-top {
        width: 42px;
        height: 42px;
    }

    .scroll-to-top .arrow {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
}

/* ===== EXTRA SMALL ===== */
@media (max-width: 480px) {
    .float-wrapper {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .fab-main {
        width: 44px;
        height: 44px;
    }

    .fab-btn {
        width: 40px;
        height: 40px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
    }
}

/* ================= FAQ SECTION ================= */

.faq {
    padding: 50px 0;
    /* մի քիչ պակասեցինք վերև-ներքև */
}

.faq-head {
    text-align: center;
    margin-bottom: 35px;
    /* ավելի մոտ */
}

.faq-list {
    max-width: 650px;
    /* ՆԵՂԱՑՐԵԼ ԵՆՔ (800 → 650) */
    margin: 0 auto;
    background: #fff;
}

.faq-item {
    background: #F0ECE9;
    border-radius: 10px;
    padding: 18px 20px;
    /* մի քիչ պակաս padding */
    margin-bottom: 10px;
    /* իրար ավելի մոտ */
    cursor: pointer;
    transition: .3s ease;
    position: relative;
    border: 1px solid #e6e8ec;
}

.faq-item h4 {
    margin: 0;
    font-size: 16px;
    /* մի քիչ փոքր */
    font-weight: 600;
    color: #71706F;
}

.faq-item p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .3s ease;
    opacity: 0;
}

.faq-item.active {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
}

/* ARROW */

.faq-item::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 22px;
    font-size: 12px;
    transition: .3s ease;
    color: #6b7280;
}

.faq-item.active::after {
    transform: rotate(180deg);
}



