/* ============================================
   SURBHI GHEE — Premium E-commerce Frontend
   site.css — Master Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --brand-green: #173F2A;        /* Forest Green */
    --brand-green-light: #1e5438;
    --brand-gold: #B77A18;         /* Antique Gold Accent */
    --brand-gold-light: #D99A22;   /* Ghee Gold */
    --brand-cream: #FBF5E8;        /* Main Background - Warm Cream */
    --brand-dark: #3B2A1E;         /* Rich Brown */
    --brand-beige: #F5E8C8;        /* Natural Beige */
    --brand-white: #ffffff;
    --brand-ivory: #FEFBF3;        /* Warm Ivory */
    --text-primary: #3B2A1E;       /* Rich Brown Primary Text */
    --text-secondary: #6B5A4E;     /* Muted Brown Secondary Text */
    --text-muted: #9B8A7E;
    --text-light: #c4b8ad;
    --border-color: #E8DDD0;
    --shadow-sm: 0 2px 8px rgba(59,42,30,0.06);
    --shadow-md: 0 4px 20px rgba(59,42,30,0.08);
    --shadow-lg: 0 8px 40px rgba(59,42,30,0.12);
    --shadow-xl: 0 16px 60px rgba(59,42,30,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --container-wide: 1400px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--brand-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--brand-dark); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-gold);
    margin-bottom: 10px;
    display: inline-block;
}
.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 20px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand-green);
    color: var(--brand-white);
    border-color: var(--brand-green);
}
.btn-primary:hover {
    background: var(--brand-green-light);
    border-color: var(--brand-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23,63,43,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--brand-green);
    border-color: var(--brand-green);
}
.btn-outline:hover {
    background: var(--brand-green);
    color: var(--brand-white);
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--brand-gold);
    color: var(--brand-white);
    border-color: var(--brand-gold);
}
.btn-gold:hover {
    background: var(--brand-gold-light);
    border-color: var(--brand-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,167,44,0.3);
}
.btn-white {
    background: var(--brand-white);
    color: var(--brand-green);
    border-color: var(--brand-white);
}
.btn-white:hover {
    background: var(--brand-cream);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--brand-green);
    color: var(--brand-cream);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.announcement-bar i { color: var(--brand-gold); margin-right: 6px; }

/* ========== NAVBAR ========== */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brand-white);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}
.site-navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    transition: var(--transition);
}
.site-navbar.scrolled .navbar-inner { padding: 10px 0; }
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.navbar-brand-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    object-fit: cover;
}
.navbar-brand-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-green);
}
.navbar-brand-text span { color: var(--brand-gold); }
.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: var(--transition);
}
.navbar-links a:hover { color: var(--brand-green); }
.navbar-links a:hover::after { width: 100%; }
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar-icon {
    position: relative;
    font-size: 18px;
    color: var(--text-secondary);
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}
.navbar-icon:hover { color: var(--brand-green); }
.navbar-icon .badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--brand-gold);
    color: var(--brand-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-hamburger {
    display: none;
    font-size: 22px;
    color: var(--brand-dark);
    cursor: pointer;
    background: none;
    border: none;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-white);
    z-index: 200;
    padding: 30px;
    flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
    align-self: flex-end;
    font-size: 24px;
    color: var(--brand-dark);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}
.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu a:hover { color: var(--brand-green); }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--brand-ivory) 0%, var(--brand-beige) 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,167,44,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(23,63,43,0.08);
    color: var(--brand-green);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--brand-gold); }
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--brand-gold); font-style: italic; }
.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrap img {
    max-height: 500px;
    object-fit: contain;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(59,42,30,0.15));
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.hero-decorative {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,167,44,0.12) 0%, transparent 70%);
    z-index: 0;
}

/* ========== TRUST BADGES ========== */
.trust-section {
    padding: 50px 0;
    background: var(--brand-white);
    border-bottom: 1px solid var(--border-color);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 10px;
    transition: var(--transition);
}
.trust-item:hover { transform: translateY(-4px); }
.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-beige) 0%, rgba(212,167,44,0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand-green);
}
.trust-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* ========== FEATURED PRODUCTS ========== */
.products-section {
    padding: 80px 0;
    background: var(--brand-cream);
    text-align: center;
}
.products-section h2 { margin-bottom: 12px; }
.products-header { margin-bottom: 48px; }

/* Product Card */
.product-card {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--brand-beige);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-gold);
    color: var(--brand-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.product-badge.badge-green { background: var(--brand-green); }
.product-badge.badge-red { background: #c0392b; }
.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.product-wishlist-btn:hover,
.product-wishlist-btn.active {
    color: #e74c3c;
    border-color: #e74c3c;
    background: #fef2f2;
}
.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-gold);
    margin-bottom: 6px;
}
.product-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.35;
}
.product-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.product-rating .stars { color: var(--brand-gold); font-size: 13px; }
.product-rating .count { font-size: 12px; color: var(--text-muted); }
.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-green);
}
.product-price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-discount {
    font-size: 12px;
    font-weight: 600;
    color: #27ae60;
    background: #eafaf1;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}
.product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}
.product-card-actions .btn { flex: 1; padding: 10px 16px; font-size: 13px; }

/* Product Carousel Swiper overrides */
.products-carousel .swiper-button-prev,
.products-carousel .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--brand-dark);
}
.products-carousel .swiper-button-prev::after,
.products-carousel .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.products-carousel .swiper-pagination-bullet {
    background: var(--brand-gold);
    opacity: 0.3;
}
.products-carousel .swiper-pagination-bullet-active { opacity: 1; }

/* ========== WHY CHOOSE US ========== */
.why-section {
    padding: 80px 0;
    background: var(--brand-white);
    text-align: center;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}
.why-item {
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    background: var(--brand-ivory);
}
.why-item:hover {
    border-color: var(--brand-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--brand-gold);
}
.why-item h4 { margin-bottom: 8px; font-size: 16px; }
.why-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ========== PROCESS TIMELINE ========== */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-beige) 100%);
    text-align: center;
}
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-gold), var(--brand-green));
    border-radius: 3px;
}
.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-step-image {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.process-step:hover .process-step-image img { transform: scale(1.05); }
.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-green);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--brand-cream), var(--shadow-md);
}
.process-step-content { padding: 20px; text-align: left; }
.process-step-content h4 { margin-bottom: 8px; color: var(--brand-green); font-size: 18px; }
.process-step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Alternating layout */
.process-step:nth-child(even) .process-step-image { order: 3; }
.process-step:nth-child(even) .process-step-number { order: 2; }
.process-step:nth-child(even) .process-step-content { order: 1; text-align: right; }

/* ========== GALLERY ========== */
.gallery-section {
    padding: 80px 0;
    background: var(--brand-white);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    margin-top: 48px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ========== OUR STORY ========== */
.story-section {
    padding: 80px 0;
    background: var(--brand-cream);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-content h2 { margin-bottom: 20px; }
.story-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-green);
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ========== PARTNERS ========== */
.partners-section {
    padding: 60px 0;
    background: var(--brand-white);
    text-align: center;
    overflow: hidden;
}
.partners-track {
    display: flex;
    gap: 60px;
    animation: partnerScroll 30s linear infinite;
    width: max-content;
    margin-top: 40px;
}
.partner-logo {
    height: 50px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
    flex-shrink: 0;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0%); }
@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 80px 0;
    background: var(--brand-beige);
    text-align: center;
}
.testimonial-card {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}
.testimonial-stars { color: var(--brand-gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--brand-beige);
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.testimonial-location { font-size: 12px; color: var(--text-muted); }
.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--brand-green);
    font-weight: 600;
    margin-top: 4px;
}

/* ========== INSTAGRAM ========== */
.instagram-section {
    padding: 80px 0;
    background: var(--brand-white);
    text-align: center;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--brand-beige);
}
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23,63,43,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--brand-white);
    font-size: 28px;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }

/* ========== NEWSLETTER ========== */
.newsletter-section {
    padding: 80px 0;
    background: var(--brand-green);
    text-align: center;
    color: var(--brand-cream);
}
.newsletter-section h2 { color: var(--brand-cream); }
.newsletter-section .section-desc { color: rgba(255,249,236,0.7); }
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid rgba(212,167,44,0.3);
}
.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: var(--brand-cream);
    font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,249,236,0.5); }
.newsletter-form button {
    padding: 14px 28px;
    background: var(--brand-gold);
    color: var(--brand-white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--brand-gold-light); }
.newsletter-privacy {
    font-size: 12px;
    color: rgba(255,249,236,0.5);
    margin-top: 14px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--brand-dark);
    color: rgba(255,249,236,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-cream);
    margin-bottom: 16px;
}
.footer-brand-name span { color: var(--brand-gold); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,249,236,0.6);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-white);
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-cream);
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--brand-gold); padding-left: 6px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact-item i { color: var(--brand-gold); margin-top: 3px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,249,236,0.4);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--brand-green); }
.breadcrumb span { margin: 0 8px; }

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 20px 0 60px;
    align-items: flex-start;
}
.pd-gallery {}
.pd-main-image {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--brand-beige);
    margin-bottom: 16px;
    cursor: zoom-in;
}
.pd-main-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.pd-main-image:hover img { transform: scale(1.1); }
.pd-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    background: var(--brand-beige);
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--brand-gold); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info {}
.pd-title { margin-bottom: 10px; font-size: 28px; }
.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.pd-short-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.pd-price-box {
    background: var(--brand-ivory);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}
.pd-price-main {
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-green);
}
.pd-price-mrp {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}
.pd-price-off {
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
    margin-left: 10px;
}
.pd-tax-note { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.pd-variants { margin-bottom: 24px; }
.pd-variant-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.pd-variant-options { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-variant-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    background: var(--brand-white);
}
.pd-variant-btn.active,
.pd-variant-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: rgba(23,63,43,0.05);
}

.pd-quantity { margin-bottom: 24px; }
.pd-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
    width: fit-content;
}
.pd-qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    background: var(--brand-white);
    border: none;
}
.pd-qty-btn:hover { background: var(--brand-beige); color: var(--brand-green); }
.pd-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    background: var(--brand-white);
    color: var(--text-primary);
}

.pd-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.pd-actions .btn { flex: 1; min-width: 140px; }

.pd-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.pd-trust-item {
    text-align: center;
    padding: 12px 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}
.pd-trust-item i { display: block; font-size: 20px; color: var(--brand-green); margin-bottom: 6px; }

/* Tabs */
.pd-tabs { margin-bottom: 60px; }
.pd-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
}
.pd-tab-btn {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.pd-tab-btn.active,
.pd-tab-btn:hover {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}
.pd-tab-content { display: none; padding: 30px 0; }
.pd-tab-content.active { display: block; }
.pd-tab-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }

/* FAQ Accordion */
.faq-section { padding: 40px 0 60px; }
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--brand-white);
}
.faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    text-align: left;
}
.faq-question:hover { color: var(--brand-green); }
.faq-question i { transition: var(--transition); color: var(--brand-gold); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== CART PAGE ========== */
.cart-page { padding: 40px 0 80px; }
.cart-page h1 { margin-bottom: 30px; }
.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}
.cart-items {}
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--brand-beige);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.cart-item-variant { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-price { font-size: 17px; font-weight: 700; color: var(--brand-green); }
.cart-item-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-item-remove {
    font-size: 13px;
    color: #c0392b;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
}
.cart-item-remove:hover { text-decoration: underline; }

.cart-summary {
    background: var(--brand-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
}
.cart-summary h3 { margin-bottom: 24px; font-size: 20px; }
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}
.cart-summary-row.total {
    border-top: 2px solid var(--border-color);
    margin-top: 12px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.cart-coupon {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}
.cart-coupon input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    outline: none;
    font-size: 13px;
}
.cart-coupon input:focus { border-color: var(--brand-green); }
.cart-summary-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.cart-summary-actions .btn { width: 100%; justify-content: center; }

.cart-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.cart-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.cart-trust-item i { color: var(--brand-green); font-size: 16px; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}
.empty-state-icon { font-size: 64px; color: var(--brand-gold); margin-bottom: 24px; opacity: 0.5; }
.empty-state h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.empty-state p { color: var(--text-muted); margin-bottom: 28px; }

/* ========== WISHLIST PAGE ========== */
.wishlist-page { padding: 40px 0 80px; }
.wishlist-page h1 { margin-bottom: 30px; }
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ========== FLOATING BUTTONS ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
    text-decoration: none;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand-cream);
    z-index: 50;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--brand-green-light); transform: translateY(-2px); }

/* ========== TOAST ========== */
.site-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-toast {
    background: var(--brand-green);
    color: var(--brand-cream);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: toastSlide 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-toast i { color: var(--brand-gold); }
@keyframes toastSlide {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-actions { justify-content: center; }
    .hero-image-wrap img { max-height: 350px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image { height: 300px; }
    .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .cart-grid { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar-links { display: none; }
    .navbar-hamburger { display: block; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process-timeline::before { left: 24px; }
    .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
    .process-step-image { display: none; }
    .process-step:nth-child(even) .process-step-number { order: unset; }
    .process-step:nth-child(even) .process-step-content { order: unset; text-align: left; }
    .process-step-number { width: 48px; height: 48px; font-size: 14px; margin: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-trust-badges { grid-template-columns: repeat(2, 1fr); }
    .cart-item { grid-template-columns: 80px 1fr; }
    .cart-item-controls { align-items: flex-start; flex-direction: row; gap: 16px; grid-column: span 2; }
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; }
    .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
    .newsletter-form input { border-radius: var(--radius-md) var(--radius-md) 0 0; }
    .newsletter-form button { border-radius: 0 0 var(--radius-md) var(--radius-md); }
    .pd-actions { flex-direction: column; }
    .pd-actions .btn { width: 100%; }
    .wishlist-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cart-trust { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pd-tab-nav { gap: 0; }
    .pd-tab-btn { padding: 10px 14px; font-size: 12px; }
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-swiper {
    width: 100%;
    height: 600px;
}
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100%;
    transition: background-position 6s ease-out;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(251,245,232,0.95) 30%, rgba(251,245,232,0.85) 45%, rgba(251,245,232,0) 75%);
    z-index: 1;
    pointer-events: none;
}
.swiper-slide-active.hero-slide {
    background-position: right 10% center;
}
.hero-slide-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
.hero-slide-content {
    max-width: 580px;
    z-index: 5;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}
.swiper-slide-active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}
.hero-slide-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-gold);
    margin-bottom: 16px;
}
.hero-slide-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    color: var(--brand-green);
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-slide-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
}
.swiper-slide-active .hero-slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper custom controls */
.hero-swiper-button-prev,
.hero-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-cream);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
    background: var(--brand-green);
    color: var(--brand-white);
    border-color: var(--brand-green);
}
.hero-swiper-button-prev { left: 30px; }
.hero-swiper-button-next { right: 30px; }

.hero-swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--brand-gold) !important;
    opacity: 1;
    transform: scale(1.2);
}

/* ========== PREMIUM PROMOTIONAL BANNER ========== */
.promo-banner-section {
    padding: 60px 0 30px;
    background: var(--brand-cream);
}
.promo-banner-inner {
    position: relative;
    padding: 60px 80px;
    z-index: 1;
}
.promo-banner-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
    z-index: -1;
}
.promo-banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.promo-banner-content {
    color: var(--brand-cream);
    position: relative;
    text-align: left;
}
.promo-banner-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--brand-gold);
    margin-bottom: 12px;
    display: inline-block;
}
.promo-banner-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--brand-cream);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.promo-banner-desc {
    font-size: 15px;
    color: rgba(251,245,232,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}
.promo-banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.promo-banner-image .promo-img {
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    z-index: 2;
    animation: promoFloat 5s ease-in-out infinite;
}
@keyframes promoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.promo-ghee-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,154,34,0.25) 0%, transparent 70%);
    z-index: 1;
}

/* ========== SPECIAL OFFER STRIP ========== */
.offer-strip-section {
    padding: 10px 0 40px;
    background: var(--brand-cream);
}
.offer-strip-inner {
    background: var(--brand-ivory);
    border: 1px solid var(--brand-gold);
    border-radius: var(--radius-full);
    padding: 12px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.offer-strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--brand-green);
}

@media (max-width: 992px) {
    .promo-banner-inner {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .hero-swiper {
        height: 500px;
    }
    .hero-slide {
        background-position: center center;
    }
    .hero-slide::before {
        background: linear-gradient(to bottom, rgba(251,245,232,0.95) 30%, rgba(251,245,232,0.7) 65%, rgba(251,245,232,0) 100%);
    }
    .hero-slide-grid {
        grid-template-columns: 1fr;
    }
    .hero-slide-content {
        max-width: 100%;
        text-align: center;
        padding: 40px 20px;
    }
    .hero-slide-actions {
        justify-content: center;
    }
    .hero-swiper-button-prev,
    .hero-swiper-button-next {
        display: none;
    }
    .promo-banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .promo-banner-content {
        text-align: center;
    }
    .promo-banner-image .promo-img {
        max-height: 220px;
    }
    .offer-strip-inner {
        border-radius: var(--radius-md);
    }
    .offer-strip-content {
        flex-direction: column;
        gap: 12px;
    }
    .offer-strip-content .btn {
        margin-left: 0 !important;
        width: 100%;
    }
}

