/* ==========================================
   کاکافه - استایل‌های اصلی
   ========================================== */

/* Variables */
:root {
    --primary-color: #0f6a43;
    --primary-dark: #063824;
    --primary-light: #d7f5e7;
    --secondary-color: #f4a259;
    --accent-color: #7de2b8;
    --dark-color: #0c1f18;
    --light-color: #f4fbf7;
    --gray-color: #6d7c75;
    --white: #ffffff;
    --text-color: #f4fbf7;
    --shadow: 0 20px 50px rgba(5, 25, 17, 0.08);
    --shadow-lg: 0 30px 70px rgba(5, 25, 17, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 10px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yekan Bakh FaNum', 'Tahoma', sans-serif;
    background: radial-gradient(circle at top, #0b3928 0%, #07271c 45%, #041710 100%);
    min-height: 100vh;
    color: var(--text-color);
    overflow-x: hidden;
}

/* ==========================================
   Hero Slider
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: visible;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .hero-slider {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .hero-slider {
        height: 450px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: inherit;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.1) 0%, rgba(4, 23, 16, 0.7) 80%);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--dark-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    right: 15px;
}

.slider-btn.next {
    left: 15px;
}

/* Slide Content */
.slide-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    max-width: 420px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(4, 23, 16, 0.7);
    backdrop-filter: blur(16px);
    color: var(--white);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.08);
}

.slide-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.slide-card h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 800;
}

.slide-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.slide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.slide-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
}

@media (max-width: 576px) {
    .hero-slider {
        height: 320px;
        padding: 0 10px;
    }
    .slider-container {
        border-radius: 28px;
    }
    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .slider-dots {
        bottom: 10px;
    }
    .slide-card {
        right: 20px;
        left: 20px;
        bottom: 25px;
        max-width: none;
        padding: 20px;
    }
    .slide-card h2 {
        font-size: 22px;
    }
    .slide-card p {
        font-size: 14px;
    }
    .slide-meta {
        gap: 8px;
        font-size: 12px;
    }
}

/* ==========================================
   Loading Screen
   ========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, #0f442e, #03140d 70%);
    display: grid;
    place-items: center;
    padding: 30px 20px;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: min(360px, 85vw);
}

.loading-logo {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(125,226,184,0.15));
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: floaty 5s ease-in-out infinite;
}

.loading-logo img {
    width: 72%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.35));
}

.logo-glow {
    position: absolute;
    inset: 14px;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(255,255,255,0.65), transparent 70%);
    opacity: 0.7;
    animation: glowPulse 3.6s ease-in-out infinite;
}

.loading-cup {
    position: relative;
    width: 220px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.steam {
    position: absolute;
    top: -50px;
    width: 6px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    filter: blur(1px);
    animation: steamRise 3s ease-in-out infinite;
}

.steam-1 { left: 90px; animation-delay: 0s; }
.steam-2 { left: 110px; animation-delay: 0.6s; }
.steam-3 { left: 130px; animation-delay: 1.2s; }

.heat-wave {
    position: absolute;
    bottom: 70px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    filter: blur(1px);
    animation: heatPulse 4s ease-in-out infinite;
}

.heat-wave.wave-2 {
    transform: scale(0.8);
    animation-delay: 0.9s;
}

.cup-body {
    width: 160px;
    height: 96px;
    border-radius: 0 0 42px 42px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.2);
}

.cup-rim {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}

.cup-liquid {
    position: absolute;
    inset: 30px 16px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c4a1f, #3c1f0e);
    box-shadow: inset 0 12px 25px rgba(0,0,0,0.35);
    animation: liquidPulse 2.4s ease-in-out infinite;
}

.cup-glow {
    position: absolute;
    inset: 8px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.6), transparent 70%);
    opacity: 0.55;
}

.cup-gloss {
    position: absolute;
    top: 24px;
    left: 20px;
    width: 26px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    filter: blur(2px);
}

.cup-handle {
    position: absolute;
    right: -26px;
    bottom: 40px;
    width: 70px;
    height: 90px;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,0.3);
    border-left-color: transparent;
    border-bottom-color: rgba(255,255,255,0.5);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.cup-base {
    position: absolute;
    bottom: -12px;
    width: 140px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.18);
}

.cup-shadow {
    position: absolute;
    bottom: -34px;
    width: 200px;
    height: 26px;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    filter: blur(14px);
}


.loading-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

@keyframes steamRise {
    0% { opacity: 0; transform: translateY(25px) scaleX(0.6); }
    30% { opacity: 1; }
    70% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-60px) scaleX(1); }
}

@keyframes liquidPulse {
    0%, 100% { transform: scaleX(0.98); }
    50% { transform: scaleX(1.02); }
}

@keyframes heatPulse {
    0% { opacity: 0.05; transform: scale(0.75); }
    50% { opacity: 0.25; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.25); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.header {
    position: relative;
    background: transparent;
    z-index: 120;
    margin-bottom: 18px;
    padding-top: 20px;
}

.header-top {
    background: rgba(4, 23, 16, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    border-radius: 28px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.header-main {
    background: rgba(4, 23, 16, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 35px 70px rgba(0,0,0,0.35);
    padding: 22px 0;
    margin-top: 14px;
    border-radius: 36px;
    width: min(1200px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    flex-wrap: wrap;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    direction: rtl;
}

.header-contact a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.contact-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.3);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-hint {
    font-size: 13px;
    opacity: 0.75;
    color: rgba(255,255,255,0.8);
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    transition: transform 0.3s ease, border-color 0.3s ease;
    animation: socialPulse 4s ease-in-out infinite;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--accent-color);
}

.social-icon.instagram { background: linear-gradient(135deg, #ff5428, #ffdc80); }
.social-icon.telegram { background: linear-gradient(135deg, #2aabee, #229ed9); }
.social-icon.whatsapp { background: linear-gradient(135deg, #25d366, #0f6a43); }

@keyframes socialPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 576px) {
    .header-top-content {
        justify-content: center;
        text-align: center;
    }
    .header-contact,
    .header-socials {
        justify-content: center;
    }
    .contact-divider {
        display: none;
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 576px) {
    .brand-block {
        flex-direction: column;
        text-align: center;
    }
    .brand-info {
        text-align: center;
    }
    .header-actions {
        justify-content: center;
    }
}

.brand-block img {
    width: 86px;
    height: 86px;
    border-radius: 28px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.brand-info h1 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 6px;
}

.brand-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

.brand-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.header-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
}

.header-status.open {
    background: rgba(125,226,184,0.15);
    color: var(--white);
}

.header-status.open i {
    font-size: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.header-status.closed {
    background: #ffebee;
    color: #c62828;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: scale(1.05);
}

.header-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.header-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}
.theme-toggle {
    position: relative;
}

.theme-toggle .theme-indicator {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
    display: block;
    color: var(--white);
    letter-spacing: 0.3px;
}

.theme-toggle-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

@media (max-width: 576px) {
    .theme-toggle .theme-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    .categories-nav {
        padding: 6px 0 0;
        box-shadow: 0 16px 30px rgba(0,0,0,0.3);
        border-radius: 0;
    }
    .categories-nav .container {
        padding: 0 12px;
    }
    .categories-nav-inner {
        gap: 6px;
        align-items: stretch;
    }
    .categories-scroll-btn {
        width: 36px;
        height: 64px;
        border-radius: 18px;
        font-size: 16px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
    }
    .categories-wrapper {
        gap: 10px;
        padding: 2px 0 6px;
    }
    .category-card {
        min-width: 110px;
        max-width: 140px;
        padding: 10px;
        border-radius: 20px;
        white-space: normal;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .category-illustration {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    .category-illustration svg {
        width: 32px;
        height: 32px;
    }
    .category-label {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .category-label strong {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .category-label small {
        font-size: 10px;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .quick-filters {
        gap: 8px;
        padding: 8px 0 0;
        margin-top: 10px;
    }
    .filter-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .header-actions {
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }
}

.header-pill i {
    font-size: 11px;
}

/* ==========================================
   Search Bar
   ========================================== */
.search-bar {
    background: rgba(4, 23, 16, 0.8);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
}

.search-bar.active {
    max-height: 80px;
    padding: 15px 0;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 12px 20px;
    gap: 12px;
}

.search-input-wrapper i {
    color: var(--accent-color);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    color: var(--white);
    outline: none;
}

.search-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--accent-color);
}

/* ==========================================
   Categories Navigation
   ========================================== */

.categories-nav {
    background: rgba(4, 23, 16, 0.65);
    padding: 15px 0 5px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 99;
}

.categories-nav-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories-scroll-btn {
    width: 44px;
    height: 86px;
    border: none;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.categories-scroll-btn:hover {
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(125, 226, 184, 0.6);
}

.categories-wrapper {
    flex: 1;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px 5px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    direction: rtl;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-card {
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 28px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    direction: rtl;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.25);
}

.category-card.active {
    box-shadow: 0 25px 45px rgba(5, 25, 17, 0.45);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(125, 226, 184, 0.5), rgba(255,255,255,0.15));
    color: var(--white);
}

.category-illustration {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 10px 25px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.category-illustration svg {
    width: 44px;
    height: 44px;
}

.category-illustration--all {
    background: linear-gradient(135deg, #1a4f3a, #0f6a43);
}

.category-illustration--gelato {
    background: linear-gradient(135deg, #1c734d, #37b980);
}

.category-illustration--sundae {
    background: linear-gradient(135deg, #2e7d5b, #4fc08d);
}

.category-illustration--milkshake {
    background: linear-gradient(135deg, #165a64, #3ec5d1);
}

.category-illustration--waffle {
    background: linear-gradient(135deg, #8c6422, #f4a259);
}

.category-illustration--drinks {
    background: linear-gradient(135deg, #4c2a84, #b084f4);
}

.category-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.category-label strong {
    font-size: 15px;
    color: var(--white);
}

.category-label small {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0 5px;
    border-top: 1px dashed rgba(255,255,255,0.15);
    margin-top: 12px;
}

.filter-chip {
    border: none;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.filter-chip:hover {
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(125,226,184,0.6);
}

.filter-chip.active {
    background: rgba(125,226,184,0.25);
    color: var(--dark-color);
    box-shadow: inset 0 0 0 1px rgba(125,226,184,0.6);
}

.title-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    fill: var(--primary-color);
}

/* ==========================================
   Products Section
   ========================================== */
.products-section {
    padding: 25px 0 100px;
    position: relative;
}

.kakafeh-experience {
    padding: 40px 0 10px;
    background: radial-gradient(circle at top, rgba(125,226,184,0.12), transparent 70%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.experience-card {
    border-radius: 28px;
    padding: 24px;
    background: rgba(4, 23, 16, 0.65);
    border: 1px solid rgba(125, 226, 184, 0.12);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
    color: var(--white);
}

.experience-card h3,
.experience-card h4 {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--accent-color);
}

.experience-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.experience-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(244, 162, 89, 0.15);
    color: #f4a259;
    font-size: 12px;
    margin-bottom: 12px;
}

.experience-meta {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.experience-meta li {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: flex;
    gap: 8px;
    align-items: center;
}

.experience-meta i {
    color: var(--accent-color);
}

.experience-cta {
    margin-top: 10px;
    padding: 10px 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(130deg, #0f6a43, #12a36a);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.experience-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.experience-card--stats .stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.eco-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(125,226,184,0.18);
    color: var(--accent-color);
    font-size: 12px;
}

.experience-card--club .club-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.club-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 6px;
    overflow: hidden;
}

.club-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(120deg, #12a36a, #7de2b8);
    border-radius: inherit;
}

.product-category {
    margin-bottom: 35px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-right: 10px;
    border-right: 4px solid rgba(125, 226, 184, 0.7);
}

.category-title i {
    color: var(--accent-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

/* Product Card */

.product-card {
    --card-accent: #7de2b8;
    background: radial-gradient(circle at 15% 20%, rgba(125,226,184,0.12), transparent 55%),
                radial-gradient(circle at 80% -10%, rgba(255,255,255,0.15), transparent 60%),
                rgba(7, 24, 17, 0.9);
    border-radius: 32px;
    padding: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    border: 1px solid rgba(125, 226, 184, 0.08);
}

.product-card[data-category="gelato"] {
    --card-accent: #7de2b8;
}

.product-card[data-category="sundae"] {
    --card-accent: #f4a259;
}

.product-card[data-category="milkshake"] {
    --card-accent: #5ad6ff;
}

.product-card[data-category="waffle"] {
    --card-accent: #f9d371;
}

.product-card[data-category="drinks"] {
    --card-accent: #b084f4;
}

.product-card::before,
.product-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0)),
                radial-gradient(circle at 70% 10%, color-mix(in srgb, var(--card-accent) 55%, transparent) 0%, transparent 70%);
}

.product-card::after {
    inset: 8px;
    border-radius: 24px;
    border: 1px dashed rgba(255,255,255,0.12);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 35px 45px rgba(31, 43, 56, 0.15);
}

.product-card:hover::before,
.product-card:hover::after {
    opacity: 1;
}

.product-card:hover .product-hover-info {
    opacity: 1;
    visibility: visible;
}

.product-card:active {
    transform: scale(0.99);
}

.product-image {
    position: relative;
    padding-top: 90%;
    overflow: hidden;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%),
                rgba(10, 26, 18, 0.9);
    box-shadow: inset 0 12px 26px rgba(255, 255, 255, 0.08), inset 0 -12px 30px rgba(0, 0, 0, 0.4);
}

.product-image img {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 78%;
    height: 78%;
    transform: translateX(-50%);
    object-fit: cover;
    transition: transform 0.35s ease;
    border-radius: 22px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
}

.product-card:hover .product-image img {
    transform: translateX(-50%) scale(1.08) translateY(-4px);
}

/* Product Hover Info Overlay */
.product-hover-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 16px;
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.product-hover-info p {
    color: var(--white);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--card-accent), rgba(255,255,255,0.9));
    color: #041710;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.product-badge.new {
    background: linear-gradient(135deg, #66bb6a, rgba(255,255,255,0.9));
}

.product-badge.popular {
    background: linear-gradient(135deg, #ffd54f, rgba(255,255,255,0.9));
    color: var(--dark-color);
}

.product-info {
    padding: 18px 10px 8px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-current {
    font-size: 14px;
    font-weight: 700;
    color: var(--card-accent);
}

.price-old {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}

.product-add-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--card-accent);
    color: var(--white);
    border-radius: 14px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-add-btn:hover {
    background: color-mix(in srgb, var(--card-accent) 85%, #ffffff);
    color: #212121;
    transform: translateY(-2px) scale(1.05);
}

/* ==========================================
   Cart Button (Fixed)
   ========================================== */
.cart-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, #0f6a43, #12a36a);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: var(--transition);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
}

.cart-button.visible {
    opacity: 1;
    visibility: visible;
}

.cart-button:hover {
    background: #0b4a30;
    transform: translateX(-50%) scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-button i {
    font-size: 20px;
}

.cart-total {
    font-size: 15px;
    font-weight: 600;
}

/* ==========================================
   Cart Sidebar
   ========================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 199;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #071611;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 200;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.cart-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 50px 20px;
    color: rgba(255,255,255,0.5);
}

.cart-empty i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 16px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius-sm);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.cart-item-price {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-qty-btn.minus {
    background: rgba(244, 162, 89, 0.15);
    color: #f4a259;
}

.cart-item-qty-btn.plus {
    background: rgba(125,226,184,0.2);
    color: var(--accent-color);
}

.cart-item-qty-btn:hover {
    transform: scale(1.1);
}

.cart-item-qty {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #f87171;
}

.cart-footer {
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cart-summary {
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: linear-gradient(120deg, #0f6a43, #12a36a);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: #0b4a30;
}

.btn-checkout:disabled {
    background: rgba(255,255,255,0.15);
    cursor: not-allowed;
}

/* ==========================================
   Product Modal
   ========================================== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}

.product-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.modal-image {
    height: 250px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 25px;
}

.modal-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.modal-description {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-value {
    font-size: 24px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}
.btn-add-to-cart {
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   Info Modal
   ========================================== */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.info-modal.active {
    opacity: 1;
    visibility: visible;
}

.info-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 30px;
    transform: translateY(30px);
    transition: var(--transition);
}

.info-modal.active .info-modal-content {
    transform: translateY(0);
}

.info-header {
    text-align: center;
    margin-bottom: 25px;
}

.info-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary-light);
}

.info-header h3 {
    font-size: 22px;
    color: var(--dark-color);
}

.info-body {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 13px;
    color: var(--gray-color);
}

.info-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: var(--transition);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--white);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer p {
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.powered-by {
    font-size: 12px;
}

.powered-by i {
    color: var(--primary-color);
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 576px) {
    .header-logo img {
        width: 50px;
        height: 50px;
    }
    
    .header-info h1 {
        font-size: 17px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .categories-nav-inner {
        gap: 6px;
    }
    
    .categories-scroll-btn {
        width: 32px;
        height: 70px;
    }
    
    .category-card {
        min-width: 130px;
        padding: 10px 12px;
        border-radius: 24px;
    }
    
    .category-illustration {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
    
    .category-label strong {
        font-size: 13px;
    }
    
    .quick-filters {
        gap: 6px;
    }
    
    .filter-chip {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 14px;
        border-radius: 26px;
    }
    
    .product-image {
        border-radius: 20px;
    }
    
    .product-image img {
        border-radius: 18px;
    }
    
    .product-hover-info {
        bottom: 14px;
        left: 14px;
        right: 14px;
    }
    
    .product-info {
        padding: 14px 4px 4px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .price-current {
        font-size: 13px;
    }
    
    .product-add-btn {
        width: 34px;
        height: 34px;
    }
    
    .cart-button {
        padding: 12px 25px;
    }
}

@media (max-width: 420px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .categories-nav {
        top: 0;
    }
    
    .category-card {
        min-width: 120px;
    }
    
    .products-section {
        padding: 15px 0 80px;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-hover-info {
        font-size: 12px;
    }
    
    .cart-button {
        bottom: 15px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    z-index: 400;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================
   Phone Modal (Checkout)
   ========================================== */
.phone-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.phone-modal.active {
    opacity: 1;
    visibility: visible;
}

.phone-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.phone-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.phone-modal.active .phone-modal-content {
    transform: translateY(0);
}

.phone-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: var(--dark-color);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.phone-modal-close:hover {
    color: var(--primary-color);
}

.phone-modal-body {
    padding: 60px 25px 40px;
}

.phone-modal-body h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.phone-input-wrapper {
    margin-bottom: 25px;
}

.phone-input-wrapper input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-family: inherit;
    font-size: 16px;
    text-align: center;
    outline: none;
    transition: var(--transition);
    background: transparent;
}

.phone-input-wrapper input::placeholder {
    color: #aaa;
}

.phone-input-wrapper input:focus {
    border-bottom-color: #4db6ac;
}

.phone-submit-btn {
    width: 100%;
    padding: 18px;
    background: #4db6ac;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.phone-submit-btn:hover {
    background: #3d9e94;
}

.phone-submit-btn i {
    position: absolute;
    left: 20px;
}

.phone-submit-btn {
    position: relative;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==========================================
   Theme Variants
   ========================================== */
body.theme-light {
    --primary-color: #1f7a54;
    --primary-dark: #0f4c33;
    --primary-light: #e3f4ec;
    --secondary-color: #f4a259;
    --accent-color: #1f7a54;
    --dark-color: #10231b;
    --light-color: #ffffff;
    --gray-color: #7a837c;
    --text-color: #1a1f1d;
    background: radial-gradient(circle at top, #f9fff4 0%, #f2fbf5 45%, #e8f4ec 100%);
    color: var(--text-color);
}

body.theme-light .main-container {
    background: linear-gradient(180deg, #fefefe 0%, #f3f9f5 100%);
}

body.theme-light .header-top {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

body.theme-light .header-main {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

body.theme-light .header-top-content,
body.theme-light .header-contact a,
body.theme-light .social-hint {
    color: var(--primary-dark);
}

body.theme-light .brand-info h1,
body.theme-light .brand-tagline,
body.theme-light .header-pill {
    color: var(--primary-dark);
}

body.theme-light .brand-block img {
    border-color: rgba(31,122,84,0.2);
    background: #ffffff;
}

body.theme-light .header-pill {
    background: rgba(31,122,84,0.12);
    border: 1px solid rgba(31,122,84,0.25);
}

body.theme-light .header-status {
    background: rgba(31,122,84,0.12);
    color: var(--primary-dark);
}

body.theme-light .btn-icon,
body.theme-light .theme-toggle-btn {
    background: rgba(31, 122, 84, 0.08);
    color: var(--primary-dark);
}

body.theme-light .theme-toggle .theme-indicator {
    color: var(--primary-dark);
}

body.theme-light .btn-icon:hover,
body.theme-light .theme-toggle-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

body.theme-light .slide-card {
    background: rgba(255,255,255,0.92);
    color: var(--dark-color);
    border-color: rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

body.theme-light .slide-card p {
    color: var(--gray-color);
}

body.theme-light .slide-label {
    color: var(--primary-dark);
}

body.theme-light .slide-meta span {
    background: rgba(0,0,0,0.05);
    color: var(--dark-color);
}

body.theme-light .categories-nav {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

body.theme-light .category-card,
body.theme-light .filter-chip {
    background: rgba(0,0,0,0.03);
    color: var(--dark-color);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.07);
}

body.theme-light .category-card.active {
    background: linear-gradient(135deg, rgba(31,122,84,0.08), rgba(255,255,255,0.3));
    color: var(--dark-color);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

body.theme-light .category-label small {
    color: var(--gray-color);
}

body.theme-light .category-label strong {
    color: var(--dark-color);
}

body.theme-light .search-bar {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

body.theme-light .search-input-wrapper {
    background: rgba(0,0,0,0.04);
}

body.theme-light .search-input-wrapper input {
    color: var(--dark-color);
}

body.theme-light .products-section {
    background: transparent;
}

body.theme-light .product-card {
    background: radial-gradient(circle at 15% 20%, rgba(31,122,84,0.08), transparent 55%), #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

body.theme-light .product-card::after {
    border-color: rgba(0,0,0,0.05);
}

body.theme-light .product-image {
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.7), transparent 55%), #f7f9f8;
    box-shadow: inset 0 8px 18px rgba(255,255,255,0.8), inset 0 -8px 18px rgba(0,0,0,0.04);
}

body.theme-light .product-image img {
    border-color: rgba(255,255,255,0.9);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

body.theme-light .product-hover-info {
    background: rgba(255,255,255,0.9);
}

body.theme-light .product-hover-info p {
    color: var(--dark-color);
}

body.theme-light .product-name,
body.theme-light .cart-item-name,
body.theme-light .cart-summary,
body.theme-light .summary-row {
    color: var(--dark-color);
}

body.theme-light .price-old {
    color: rgba(0,0,0,0.35);
}

body.theme-light .cart-button {
    background: linear-gradient(120deg, #1f7a54, #34a96f);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

body.theme-light .cart-sidebar {
    background: #ffffff;
}

body.theme-light .cart-header {
    background: rgba(31,122,84,0.08);
    color: var(--dark-color);
}

body.theme-light .cart-item {
    background: rgba(0,0,0,0.03);
}

body.theme-light .cart-item-remove {
    color: rgba(0,0,0,0.4);
}

body.theme-light .cart-footer {
    background: rgba(0,0,0,0.02);
    border-top-color: rgba(0,0,0,0.05);
}

body.theme-light .toast-notification {
    background: rgba(0,0,0,0.85);
    color: var(--white);
}

body.theme-light .footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

body.theme-light .info-modal-content,
body.theme-light .phone-modal-content,
body.theme-light .modal-content {
    background: #ffffff;
}

body.theme-light .info-item i {
    background: var(--primary-light);
    color: var(--primary-color);
}

body.theme-light .loading-screen {
    background: radial-gradient(circle at top, #f0fff5, #c9ead8 70%);
}

body.theme-light .loading-text {
    color: var(--dark-color);
}

body.theme-light .experience-card {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.04);
    color: var(--dark-color);
}

body.theme-light .experience-card h3,
body.theme-light .experience-card h4 {
    color: var(--primary-dark);
}

body.theme-light .experience-card p,
body.theme-light .experience-meta li,
body.theme-light .experience-card--club .club-tier {
    color: rgba(0,0,0,0.7);
}

body.theme-light .experience-badge {
    background: rgba(244,162,89,0.2);
}

body.theme-light .club-progress {
    background: rgba(0,0,0,0.08);
}

body.theme-light .club-progress span {
    background: linear-gradient(120deg, #34a96f, #7de2b8);
}

body.theme-light .stat-value {
    color: var(--primary-dark);
}

body.theme-light .stat-label {
    color: rgba(0,0,0,0.55);
}

body.theme-light .eco-pill {
    background: rgba(31,122,84,0.12);
    color: var(--primary-dark);
}

body.theme-light .categories-scroll-btn {
    background: rgba(0,0,0,0.04);
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

body.theme-light .categories-scroll-btn:hover {
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(31,122,84,0.5);
}

body.theme-light .filter-chip.active {
    background: rgba(31,122,84,0.15);
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 1px rgba(31,122,84,0.5);
}

body.theme-light .quick-filters {
    border-top-color: rgba(0,0,0,0.08);
}

body.theme-light .category-title {
    color: var(--dark-color);
    border-right-color: rgba(31,122,84,0.6);
}

body.theme-light .category-title i {
    color: var(--primary-color);
}

body.theme-light .product-badge {
    background: linear-gradient(135deg, var(--primary-color), rgba(255,255,255,0.9));
    color: #fff;
}

body.theme-light .product-badge.new {
    background: linear-gradient(135deg, #43a047, #a5d6a7);
    color: #fff;
}

body.theme-light .product-badge.popular {
    background: linear-gradient(135deg, #fbc02d, #fff176);
    color: #333;
}

body.theme-light .product-name {
    color: var(--dark-color);
}

body.theme-light .price-current {
    color: var(--primary-dark);
}

body.theme-light .product-add-btn {
    background: var(--primary-color);
    color: #fff;
}

body.theme-light .product-add-btn:hover {
    background: var(--primary-dark);
}

body.theme-light .modal-body h3 {
    color: var(--dark-color);
}

body.theme-light .modal-description {
    color: var(--gray-color);
}

body.theme-light .modal-price {
    color: var(--primary-color);
}

body.theme-light .quantity-btn {
    border-color: var(--primary-color);
    background: #fff;
    color: var(--primary-color);
}

body.theme-light .quantity-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

body.theme-light .quantity-value {
    color: var(--dark-color);
}

body.theme-light .btn-add-to-cart {
    background: var(--primary-color);
    color: #fff;
}

body.theme-light .btn-add-to-cart:hover {
    background: var(--primary-dark);
}

body.theme-light .info-header h3 {
    color: var(--dark-color);
}

body.theme-light .info-item strong {
    color: var(--dark-color);
}

body.theme-light .info-item p {
    color: var(--gray-color);
}

body.theme-light .phone-modal-content h3 {
    color: var(--dark-color);
}

body.theme-light .phone-input {
    background: rgba(0,0,0,0.03);
    color: var(--dark-color);
    border-color: rgba(0,0,0,0.1);
}

body.theme-light .phone-input:focus {
    border-color: var(--primary-color);
}

body.theme-light .checkout-btn {
    background: var(--primary-color);
    color: #fff;
}

body.theme-light .checkout-btn:hover {
    background: var(--primary-dark);
}

body.theme-light .slider-btn {
    background: rgba(255,255,255,0.95);
    color: var(--dark-color);
}

body.theme-light .slider-btn:hover {
    background: #fff;
}

body.theme-light .dot {
    background: rgba(0,0,0,0.3);
}

body.theme-light .dot.active {
    background: var(--primary-color);
}

body.theme-light .slide-card h2 {
    color: var(--dark-color);
}

body.theme-light .experience-cta {
    background: linear-gradient(130deg, #1f7a54, #34a96f);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(31,122,84,0.18);
}

body.theme-light .category-title {
    color: var(--dark-color);
    border-right-color: rgba(31,122,84,0.4);
}

body.theme-light .category-title i {
    color: var(--primary-dark);
}
