/* ============================================
   ISHONCH — WHITE GLASS DESIGN SYSTEM
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Color Palette — Light Theme */
    --bg-primary: #f5f5f7;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eef2f7;

    --accent-primary: #0071e3;
    /* Apple Blue, but wait, preserving ISHONCH Green might be better for branding, let's keep green but a softer one */
    --accent-secondary: #00c689;
    /* A bit more vibrant apple-like green */
    --accent-primary: #10b981;
    --accent-secondary: #059669;
    --accent-light: #d1fae5;
    --accent-glow: rgba(16, 185, 129, 0.4);
    --accent-glow-secondary: rgba(5, 150, 105, 0.3);

    --text-primary: #1d1d1f;
    /* Apple dark gray */
    --text-secondary: #86868b;
    /* Apple light gray */
    --text-muted: rgba(29, 29, 31, 0.4);

    /* Apple Glass Properties */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-bg-hover: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-border-hover: rgba(255, 255, 255, 0.8);
    --glass-blur: 40px;
    --glass-blur-heavy: 60px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --glass-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- UTILITY CLASSES ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-smooth);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-3px);
}

/* ============================================
   GLOBAL FORMS
   ============================================ */
.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: all var(--transition-smooth);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
    margin-bottom: 16px;
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(var(--glass-blur-heavy)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 1001;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--accent-primary);
    font-size: 1.2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px var(--accent-glow);
    }

    50% {
        text-shadow: 0 0 25px var(--accent-glow), 0 0 50px rgba(16, 185, 129, 0.1);
    }
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-glow);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1001;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    padding: 4px 8px;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.lang-btn.active {
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.1);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: var(--text-muted);
}

.navbar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-fast);
}

.navbar__phone:hover {
    color: var(--accent-primary);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.06);
}

.phone-icon {
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 100%);
}

.hero-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    /* Apple-style floating blobs */
    background:
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 198, 137, 0.15), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(209, 250, 229, 0.6), transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.05), transparent 40%);
    animation: gradient-shift 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes gradient-shift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.1) translate(-2%, 2%);
    }

    66% {
        transform: scale(1.05) translate(2%, -2%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float var(--duration) var(--delay) infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 0.4;
        transform: translateY(-20px) scale(1);
    }

    80% {
        opacity: 0.15;
        transform: translateY(-120px) scale(0.6);
    }

    100% {
        opacity: 0;
        transform: translateY(-160px) scale(0);
    }
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-primary);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    margin-bottom: 24px;
    animation: fade-up 0.8s ease-out 0.2s both;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    animation: fade-up 0.8s ease-out 0.4s both;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fade-up 0.8s ease-out 0.6s both;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fade-up 0.8s ease-out 0.8s both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow), 0 0 60px rgba(16, 185, 129, 0.12);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--glass-shadow);
}

.btn--glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
}

/* Hero Visual — Floating Cards */
.hero__visual {
    position: relative;
    height: 400px;
    animation: fade-up 1s ease-out 1s both;
}

.hero__card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    animation: float 6s ease-in-out infinite;
    cursor: default;
}

.hero__card--1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero__card--2 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

.hero__card--3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-card__icon {
    font-size: 2rem;
}

.hero-card__text {
    display: flex;
    flex-direction: column;
}

.hero-card__text strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-card__text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.swiper-pagination-bullet-active {
    background: var(--accent-primary) !important;
}

/* Hero Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero__scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    position: relative;
    background: var(--bg-secondary);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about__card {
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.about__card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about__text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
}

.about__text:last-child {
    margin-bottom: 0;
}

.about__text strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-padding);
    position: relative;
    background: var(--bg-primary);
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card__icon {
    font-size: 2.5rem;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.12);
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
    background: rgba(16, 185, 129, 0.12);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PROMOTIONS SECTION
   ============================================ */
.promotions {
    padding: var(--section-padding);
    position: relative;
    background: var(--bg-secondary);
}

.promo__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promo-card {
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.promo-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-primary);
}

.promo-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.promo-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.promo-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.promo-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.promo-card__price {
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.promo-card__link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.promo-card__link:hover {
    color: var(--accent-primary);
}

/* ============================================
   STORES SECTION
   ============================================ */
.stores {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.stores__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 500px;
}

.stores__layout:hover {
    transform: none;
}

.stores__map {
    min-height: 500px;
    border-right: 1px solid var(--glass-border);
}

.stores__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.9;
    transition: opacity var(--transition-smooth);
}

.stores__map iframe:hover {
    opacity: 1;
}

.stores__list {
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.stores__search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.stores__search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.stores__search-input::placeholder {
    color: var(--text-muted);
}

.stores__items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

/* Custom scrollbar */
.stores__items::-webkit-scrollbar {
    width: 4px;
}

.stores__items::-webkit-scrollbar-track {
    background: transparent;
}

.stores__items::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.2);
    border-radius: 4px;
}

/* --- Store List Redesign --- */
.region-group {
    margin-bottom: 8px;
}

.region-header {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.region-header:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}

.region-header.open {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.region-header__title {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-header__count {
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    background: var(--accent-primary);
    padding: 2px 8px;
    border-radius: 12px;
    line-height: 1.4;
}

.region-header__icon {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.region-header.open .region-header__icon {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.region-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid transparent;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.3);
}

.region-content.open {
    opacity: 1;
    border-bottom-color: var(--glass-border);
}

.region-content__inner {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: translateY(8px);
    animation: storeItemIn 0.3s ease forwards;
}

.store-item:hover {
    background: rgba(16, 185, 129, 0.06);
    border-left-color: var(--accent-primary);
    transform: translateX(4px);
}

.store-item.store-active {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--accent-primary);
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.15);
}

@keyframes storeItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-item__icon {
    color: var(--accent-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.store-item__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.store-item__info strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.store-item__info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.store-item__link {
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.store-item__link:hover {
    opacity: 0.75;
}

.stores__empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 20px;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, var(--bg-primary) 0%, #e8f5e9 100%);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--accent-primary);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer__col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer__col a:hover {
    color: var(--accent-primary);
}

.footer__bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stores__layout {
        grid-template-columns: 1fr;
    }

    .stores__map {
        min-height: 350px;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .navbar__links {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-smooth);
        z-index: 1000;
    }

    .navbar__links.open {
        opacity: 1;
        pointer-events: all;
    }

    .navbar__links .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
        color: var(--text-primary);
    }

    .hamburger {
        display: flex;
    }

    .navbar__phone {
        display: none;
    }

    .lang-switcher {
        display: none;
    }

    /* Hero */
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .hero__title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
    }

    .about__card {
        padding: 32px 24px;
    }

    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
    }

    /* Promotions */
    .promo__grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .about__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.preloader__icon {
    font-size: 3rem;
    color: var(--accent-primary);
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader__text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.preloader__bar {
    width: 180px;
    height: 3px;
    background: var(--glass-border);
    border-radius: 3px;
    overflow: hidden;
}

.preloader__progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    animation: preloaderProgress 1.5s ease-in-out forwards;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

@keyframes preloaderProgress {
    0% {
        width: 0%;
    }

    60% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.fab-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fab-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-top:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.15);
}

/* ============================================
   CALCULATOR ANIMATION
   ============================================ */
.calc-result-value {
    transition: transform 0.15s ease;
}

.calc-result-value.counting {
    transform: scale(1.05);
}

/* Popular Products Section */
.popular-products {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.popular-products .product-grid {
    margin-top: 40px;
}

/* ============================================
   UTILITY CLASSES (replacing inline styles)
   ============================================ */

/* Icon Sizes */
.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 32px;
    height: 32px;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

/* Icon Color */
.icon-accent {
    color: var(--accent-primary);
}

/* Section Footer Centered */
.section-footer--centered {
    text-align: center;
    margin-top: 40px;
}

/* Full-width Button */
.btn--full {
    width: 100%;
    justify-content: center;
}

/* Stores Map Inner */
.stores__map-inner {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
}

/* Footer Contact Links */
.footer__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hidden State Classes */
.cart-drawer__footer--hidden {
    display: none;
}

.cart-checkout-form--hidden {
    display: none;
}

.cart-order-status--hidden {
    display: none;
}