:root {
    /* Luxury Color System */
    --color-text-primary: #121212;
    --color-text-secondary: #4a4a4a;
    --color-text-muted: #888888;
    --color-text-light: #f5f5f5;
    --color-text-gold: #D4AF37;
    /* Luxury Gold */

    --color-primary: #121212;
    /* Deep Black */
    --color-primary-dark: #000000;
    --color-luxury-gold: #D4AF37;
    --color-luxury-gold-light: #F3E5AB;

    --color-secondary: #f9f9f9;
    --color-accent: #D4AF37;

    --color-link-blue: #D4AF37;
    /* Replaced blue with gold for links */

    --color-bg: #ffffff;
    --color-bg-grey: #f8f8f8;
    --color-bg-dark: #121212;
    --color-bg-section: #fcfcfc;

    --color-border: #e0e0e0;
    --color-border-light: #eeeeee;
    --color-border-gold: #D4AF37;

    /* Typography - Retaining Inter */
    --font-family-base: 'Inter', sans-serif;

    /* Standardized Type Scale */
    --text-xxs: 0.625rem;
    /* 10px */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 2rem;
    /* 32px */
    --text-4xl: 2.5rem;
    /* 40px */
    --text-5xl: 3rem;
    /* 48px */

    --font-size-base: var(--text-base);

    --font-weight-regular: 400;
    /* Changed from 300 to 400 for better legibility at small sizes */
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing & Layout */
    --container-width: 84%;
    /* 8% margin on each side */
    --section-padding: 3rem 0;
    /* Reduced from 6rem */

    /* Design Tokens */
    --radius-sm: 2px;
    --radius-md: 4px;
    /* Sharper corners */
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-pill: 999px;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);

    /* Legacy mapping */
    --radius-base: var(--radius-md);
    --color-muted: var(--color-text-muted);
    --color-text: var(--color-text-primary);
}

/* ========================================
   CRITICAL: PREVENT HORIZONTAL OVERFLOW
   ======================================== */
html {
    /* overflow-x: hidden; removed to fix sticky */
    width: 100%;
    box-sizing: border-box;
}

body {
    /* overflow-x: hidden; removed to fix sticky */
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-x: clip;
    /* clip is safer for sticky */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


.reels-section {
    padding: 4rem 0;
    background: #fff;
}

.reels-section .section-header {
    align-items: center;
    gap: 1.5rem;
}

.reels-actions {
    display: inline-flex;
    gap: 0.75rem;
}

.reels-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-heading);
    font-size: var(--text-2xl);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reels-nav:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.reels-strip {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.reels-strip::-webkit-scrollbar {
    height: 6px;
}

.reels-strip::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 999px;
}

.reel-card {
    flex: 0 0 clamp(200px, calc((100% - 7.5rem) / 6), 260px);
    display: grid;
    gap: 0.85rem;
    scroll-snap-align: start;
}

.reel-thumb {
    position: relative;
    border-radius: 32px;
    aspect-ratio: 9 / 16;
    background: var(--reel-bg, #f4f2f8) center/cover no-repeat;
    overflow: hidden;
    display: grid;
}

.reel-meta {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 600;
}

.offer {
    color: var(--color-primary-green-light);
    font-size: var(--text-xxs);
    font-weight: var(--font-weight-semibold);
}

.reel-icon {
    font-size: 0.95rem;
}

.reel-play {
    appearance: none;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    margin: auto;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.reel-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--color-primary);
}

.reel-label {
    display: inline-block;
    align-self: start;
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-heading);
    text-align: center;
}

@media (max-width: 1024px) {
    .reel-card {
        flex-basis: clamp(200px, calc((100% - 4.5rem) / 4), 260px);
    }
}

@media (max-width: 640px) {
    .reels-strip {
        gap: 1rem;
    }

    .reel-card {
        flex-basis: clamp(180px, calc((100% - 1rem) / 2), 220px);
    }

    .reels-nav {
        display: none;
    }
}

/* ========================================
   BASE RESET & MOBILE-FIRST FOUNDATION
   ======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    /* Standard 16px */
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 640px) {
    html {
        font-size: 93.75%;
        /* 15px on mobile */
    }
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
    background: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   MOBILE-FIRST RESPONSIVE CONTAINER SYSTEM
   Inspired by Tailwind CSS approach
   ======================================== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    /* 16px */
    padding-right: 1rem;
    /* 16px */
    max-width: 98%;
}

/* Small devices (landscape phones, 640px and up) */
@media (min-width: 640px) {
    .container {
        max-width: 98%;
        padding-left: 1.5rem;
        /* 24px */
        padding-right: 1.5rem;
        /* 24px */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 98%;
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .container {
        max-width: 98%;
    }
}

/* Extra large devices (large desktops, 1280px and up) */
@media (min-width: 1280px) {
    .container {
        max-width: 98%;
    }
}

/* 2XL devices (larger desktops, 1536px and up) */
@media (min-width: 1536px) {
    .container {
        max-width: 98%;
    }
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-text);
}

.section {
    padding: 2rem 0;
    /* Reduced from 4rem */
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header h2,
.section-header-row h2,
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    /* Responsive size */
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: var(--color-primary-dark);
    display: block;
}

.section-header .link {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.topbar {
    background: var(--color-bg);
    font-size: var(--text-sm);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 1rem;
}

.top-links {
    display: inline-flex;
    gap: 1.25rem;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    gap: 2rem;
    position: relative;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.main-nav {
    display: inline-flex;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-item {
    position: static;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0;
    color: var(--color-text);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    opacity: 0.4;
}

.nav-item:not(.has-mega) .nav-link::after {
    content: none;
}

.nav-link:hover,
.nav-item:focus-within>.nav-link {
    color: var(--color-primary-dark);
}

.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 2rem 0;
    border-radius: var(--radius-base);
    background: #fff;
    box-shadow: 0 24px 50px rgba(31, 27, 46, 0.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    display: flex;
    justify-content: center;
}

.mega-panel::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.mega-grid {
    width: min(960px, calc(100% - 4rem));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.mega-column h4 {
    margin: 0 0 0.75rem;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.mega-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.mega-column a {
    color: var(--color-muted);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.2s ease;
}

.mega-column a:hover,
.mega-column a:focus {
    color: var(--color-primary);
}

.nav-item:hover>.mega-panel,
.nav-item:focus-within>.mega-panel {
    opacity: 1;
    visibility: visible;
}

.nav-actions {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
}

.auth-buttons {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.icon-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--color-bg);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.icon {
    width: 18px;
    height: 18px;
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-search {
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 19a8 8 0 100-16 8 8 0 000 16z"/%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-4.35-4.35"/%3E%3C/svg%3E');
}

.icon-heart {
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"%3E%3Cpath d="M12 21s-6.727-4.526-9.364-8.727C.491 9.545 1.96 5.455 5.454 4.09 7.638 3.232 9.818 4 12 6.182 14.182 4 16.362 3.232 18.546 4.09c3.495 1.364 4.964 5.454 2.818 8.182C18.727 16.474 12 21 12 21z"/%3E%3C/svg%3E');
}

.icon-cart {
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 3h2l.4 2M7 13h10l3-7H5.4"/%3E%3Ccircle cx="9" cy="19" r="1"/%3E%3Ccircle cx="17" cy="19" r="1"/%3E%3C/svg%3E');
}

.hero {
    position: relative;
}

.slider-dot.is-active {
    background: var(--color-primary, #e28643);
    transform: scale(1.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-slide {
        flex: 0 0 calc((100% - 16px) / 2);
        height: 350px;
    }
}

/* Mobile: Full-width slides */
@media (max-width: 767px) {
    .hero-slider-wrapper {
        padding: 0 !important;
        min-height: 280px;
    }

    .hero-slider {
        min-height: 270px;
        gap: 0;
        padding: 0;
    }

    .hero-slide {
        flex: 0 0 100% !important;
        height: 280px;
        border-radius: 0;
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .hero-slide.is-center {
        flex: 0 0 100% !important;
    }

    /* Hide navigation arrows on mobile */
    .hero-slider-wrapper .slider-nav {
        display: none;
    }

    /* Adjust dots for mobile */
    .hero-slider-section .slider-dots {
        margin-top: 1rem;
    }
}

.hero-slide .container {
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 36rem;
    color: #fff;
    display: grid;
    gap: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    margin: 0;
    color: #fff;
}

.hero p {
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-slider__controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-slider__control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 24px rgba(31, 27, 46, 0.14);
    font-size: 1.5rem;
    color: var(--color-primary);
    display: grid;
    place-items: center;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider__control:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(31, 27, 46, 0.16);
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(31, 27, 46, 0.14);
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(226, 134, 67, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dot.is-active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.hero-slider__dot:focus-visible,
.hero-slider__control:focus-visible {
    outline: 2px solid var(--color-heading);
    outline-offset: 2px;
}

.hero-quick-links {
    padding: 2.5rem 0;
    background: #fff;
}

.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.hero-quick-card {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    padding: 1rem 0.75rem 1.25rem;
    border-radius: var(--radius-base);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.hero-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.hero-quick-media {
    width: 88px;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--radius-base) - 6px);
    overflow: hidden;
    background: #f4f2f8;
    display: grid;
}

.hero-quick-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-quick-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-heading);
}

@media (max-width: 640px) {
    .hero-quick-links {
        padding: 2rem 0;
    }

    .hero-quick-card {
        padding: 0.85rem 0.75rem 1rem;
    }
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.usp-card {
    padding: 1.75rem;
    border-radius: var(--radius-base);
    background: var(--color-bg);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.usp-icon {
    font-size: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.category-card {
    padding: 1.5rem;
    border-radius: var(--radius-base);
    background: #fff;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.category-media {
    height: 160px;
    border-radius: calc(var(--radius-base) - 6px);
    background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    margin-bottom: 1.5rem;
}

.pill-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    background: var(--color-bg);
    color: var(--color-muted);
    cursor: pointer;
}

.pill.active {
    background: var(--color-primary);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: #fff;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-thumb {
    display: block;
    position: relative;
    /* padding: 1.25rem 1.25rem 0; */
}

.product-thumb img {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f4f2f8;
}

.product-info {
    display: flex;
    flex-direction: column;
    /* gap: 0.6rem; */
    padding: 1.25rem 1.5rem 0;
}

.product-info h3 {
    margin: 0;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    color: var(--color-text-primary);
}

.product-info h3 a {
    color: inherit;
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.rating {
    font-weight: 600;
    color: #1f8b4c;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.rating span {
    color: inherit;
    opacity: 0.7;
}

.assured {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.65rem;
    border-radius: var(--radius-pill);
    background: rgba(47, 128, 237, 0.12);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.product-price strong {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.mrp {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: var(--font-weight-regular);
}

.offer {
    color: #1f8b4c;
    font-weight: 600;
    font-size: 0.95rem;
}

.product-weight {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.product-card .btn-block {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 1.5rem 1.4rem;
}

.highlight {
    background: var(--color-bg);
}

.audience-section {
    background: linear-gradient(180deg, rgba(228, 154, 39, 0.08) 0%, #ffffff 90%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.audience-section .section-header {
    align-items: baseline;
}

.audience-section .product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-section .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.highlight-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 3rem;
    border-radius: var(--radius-base);
    background: linear-gradient(120deg, rgba(228, 154, 39, 0.15), rgba(243, 111, 159, 0.12));
    box-shadow: var(--shadow-soft);
}

.highlight-media {
    min-height: 260px;
    border-radius: var(--radius-base);
    background: url('https://images.unsplash.com/photo-1542037104857-ffbb0b915ef1?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-soft);
}

.testimonial-card p {
    font-style: italic;
}

.author {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, rgba(228, 154, 39, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    max-width: 36rem;
    margin: 0 auto;
    color: var(--color-muted);
}

.page-section {
    padding: 3rem 0;
}

.search-bar,
.track-form,
.auth-form,
.support-form {
    margin: 2rem auto 0;
    display: grid;
    gap: 1.25rem;
    max-width: 540px;
}

.search-bar input,
.track-form input,
.auth-form input,
.support-form input,
.support-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-size: 1rem;
}

.support-form textarea {
    border-radius: var(--radius-base);
    resize: vertical;
}

.search-bar {
    grid-template-columns: 1fr auto;
    background: #fff;
    padding: 0.5rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
}

.search-bar input {
    border: none;
    outline: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.form-note {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.support-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.support-list a {
    color: var(--color-muted);
    font-weight: 500;
}

.support-list a:hover {
    color: var(--color-primary);
}

.card-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card-option {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-soft);
    display: grid;
}

.card-option h2 {
    margin: 0;
}

.track-form {
    max-width: 420px;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb a {
    color: inherit;
}

.product-page {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}


.product-gallery {
    display: block;
}

.gallery-container {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: start;
}

.product-gallery-thumbs {
    display: grid;
    gap: 1rem;
}

.product-gallery-thumbs-vertical {
    display: grid;
    gap: 1rem;
}

.gallery-main-wrapper {
    display: grid;
    gap: 0.5rem;
}

.gallery-expand-text {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.product-thumbnail-button {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-base);
    border: 2px solid transparent;
    background: #f4f2f8;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
    padding: 0;
}

.product-thumbnail-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumbnail-button.is-active,
.product-thumbnail-button:focus-visible {
    border-color: var(--color-primary);
    outline: none;
}

.product-thumbnail-button:hover {
    transform: translateY(-3px);
}

.product-gallery-main {
    position: relative;
    border-radius: var(--radius-base);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-main img.is-transitioning {
    animation: productImageSlide 0.5s ease forwards;
}

@keyframes productImageSlide {
    0% {
        opacity: 0;
        transform: translateX(-24px);
    }

    60% {
        opacity: 0.6;
        transform: translateX(-8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 960px) {
    .product-gallery {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        display: flex;
        gap: 0.85rem;
        order: 2;
    }

    .product-thumbnail-button {
        width: 72px;
    }
}

.product-info {
    display: flex;
    flex-direction: column;
    /* gap: 1.25rem; */
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.product-price {
    font-size: 2rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--color-muted);
    font-weight: 500;
}

.product-options {
    display: grid;
    gap: 1rem;
}

.product-options legend {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill-button {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pill-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pill-button.is-selected {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-actions .btn {
    min-width: 180px;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.product-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-highlights li::before {
    content: '✔';
    color: var(--color-primary);
    margin-top: 0.1rem;
}

.product-tabs {
    margin-top: 3rem;
}

.product-tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-tabbutton {
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-tabbutton.is-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.product-tabpanel {
    display: none;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-soft);
    line-height: 1.65;
    color: var(--color-muted);
}

.product-tabpanel.is-active {
    display: block;
}

.related-products {
    margin-top: 4rem;
}

.related-products .section-header {
    justify-content: space-between;
    align-items: center;
}

.catalog-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
}

.catalog-main {
    display: grid;
    gap: 2rem;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.catalog-toolbar select,
.catalog-toolbar button {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-weight: 500;
    cursor: pointer;
}

.catalog-toolbar label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-muted);
    font-weight: 500;
}

.filter-panel {
    position: sticky;
    top: 7rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 2rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
}

.filter-group {
    display: grid;
    gap: 0.75rem;
}

.filter-group h3 {
    margin: 0;
    font-size: 1.1rem;
}

.filter-options {
    display: grid;
    gap: 0.5rem;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    color: var(--color-muted);
}

.filter-options input[type="checkbox"],
.filter-options input[type="radio"] {
    accent-color: var(--color-primary);
}

.filter-clear {
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
}

.catalog-products .product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-products .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.catalog-products.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .catalog-products.product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .catalog-products.product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .catalog-products.product-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.cart-layout,
.checkout-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.checkout-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-muted);
}

.checkout-progress .step-badge {
    background: rgba(47, 128, 237, 0.12);
    color: var(--color-primary);
}

.cart-items,
.cart-summary,
.checkout-summary,
.checkout-card {
    background: #fff;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

.cart-items,
.checkout-main {
    display: grid;
    gap: 2rem;
}

.cart-items__header,
.checkout-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-items__header h2,
.checkout-card__header h2 {
    margin: 0;
    font-size: 1.45rem;
}

.cart-items__header span {
    font-weight: 600;
    color: var(--color-muted);
}

.cart-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.75rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.cart-item-media {
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-base);
    background: center/cover no-repeat;
    box-shadow: var(--shadow-soft);
}

.cart-item-details h3 {
    margin: 0;
    font-size: 1.1rem;
}

.cart-item-details p {
    margin: 0.5rem 0 0;
    color: var(--color-muted);
}

.cart-item-meta {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.cart-item-actions {
    display: grid;
    gap: 1rem;
    justify-items: end;
}

.quantity-control {
    display: inline-grid;
    grid-auto-flow: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-pill);
    padding: 0.15rem;
}

.quantity-control button {
    border: none;
    background: transparent;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--color-heading);
}

.quantity-control input {
    border: none;
    background: transparent;
    width: 2.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-heading);
}

.quantity-control button:focus,
.quantity-control input:focus {
    outline: none;
}

.cart-item-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-savings {
    margin: 0;
    color: #1f8b4c;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-link {
    border: none;
    background: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: underline;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-footer p {
    margin: 0;
    color: var(--color-muted);
}

.cart-summary,
.checkout-summary {
    display: grid;
    gap: 1.5rem;
}

.coupon-form {
    display: grid;
    gap: 0.65rem;
}

.coupon-input {
    display: flex;
    gap: 0.75rem;
}

.coupon-input input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-pill);
    background: rgba(0, 0, 0, 0.02);
}

.summary-lines {
    display: grid;
    gap: 0.75rem;
}

.summary-lines li {
    list-style: none;
    margin: 0;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.summary-line {
    color: var(--color-muted);
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.summary-note {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.checkout-main {
    align-content: start;
}

.checkout-card {
    display: grid;
    gap: 1.5rem;
}

.step-help {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.field-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.field-grid label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-base);
    padding: 0.7rem 0.85rem;
    background: rgba(0, 0, 0, 0.02);
}

.field-grid textarea {
    min-height: 110px;
}

.option-list {
    display: grid;
    gap: 1rem;
}

.option-tile {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-base);
    padding: 1rem 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.option-tile:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.option-tile input {
    accent-color: var(--color-primary);
}

.option-tile strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.option-tile span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkout-actions .btn {
    min-width: 180px;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(47, 128, 237, 0.08);
    padding: 1rem 1.25rem;
}

@media (max-width: 1080px) {
    .nav .container {
        gap: 1.25rem;
    }

    .main-nav {
        gap: 1.1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }
}

@media (max-width: 1024px) {

    .catalog-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        order: -1;
    }

    .catalog-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .filter-panel {
        top: 6.5rem;
    }
}

@media (max-width: 960px) {
    .topbar .container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        text-align: center;
    }

    .nav .container {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.75rem 0;
    }

    /* Desktop brand styling - excludes mobile-header-row */
    .nav .container>.brand:not(.mobile-header-row .brand) {
        flex: 1 0 100%;
        text-align: center;
    }

    .nav-actions {
        order: 2;
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.75rem;
        justify-items: center;
        padding-bottom: 0.5rem;
    }

    .nav-link {
        padding: 0.35rem 0.5rem;
        border-radius: var(--radius-pill);
        background: rgba(0, 0, 0, 0.04);
        width: 100%;
        justify-content: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item.has-mega>.mega-panel {
        display: none !important;
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 860px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-main {
        order: 2;
    }

    .catalog-main {
        order: 2;
    }

    .filter-panel {
        position: static;
        max-height: none;
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-slider__controls {
        display: none;
    }

    .hero-slider__dots {
        bottom: 1rem;
        padding: 0.5rem 1rem;
    }

    .nav .container {
        gap: 0.75rem;
    }

    .nav-actions {
        justify-content: space-between;
    }

    .nav-actions .auth-buttons {
        display: none;
    }

    .main-nav {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.45rem 0.5rem;
    }

    .filter-panel {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .search-bar {
        grid-template-columns: 1fr;
        border-radius: var(--radius-base);
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-actions {
        justify-content: center;
    }

    .main-nav {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

.site-footer {
    background: #1f1b2e;
    color: #f0e7ff;
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.site-footer h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.newsletter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.newsletter input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-pill);
    border: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.payment-icons {
    display: inline-flex;
    gap: 1rem;
    font-weight: 600;
}

.social-links {
    display: inline-flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 1.5rem 0;
        /* Reduced from 3rem */
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar .container {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 2rem;
    }

    .nav .container {
        padding: 0.75rem 0;
    }

    .hero {
        padding-top: 4rem;
    }
}


/* .nav-item {
    position: relative;
} */

/* .mega-panel {
    top: 100%;
    margin-top: 0;
} */

.mega-panel::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
}

/* ============================================
   PRODUCT PAGE REDESIGN - FNP STYLE
   ============================================ */

/* Star Rating Component */
.star-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0 1rem;
}

.stars {
    display: flex;
    gap: 0.15rem;
}

.star-icon {
    color: #ffa500;
    font-size: 1.25rem;
}

.rating-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
}

.rating-count {
    color: #666;
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.rating-count:hover {
    color: var(--color-primary);
}

/* Enhanced Pricing Block */
.product-price-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-sale {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.price-original {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: #999;
}

.discount-badge {
    background: #e9e9e9;
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgb(183 183 183 / 30%);
}

.free-gift-badge {
    color: #00a699;
    font-weight: 600;
}

/* Promotional Offers Section */
.offers-section {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    background: #fafafa;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.offers-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0;
}

.offers-list {
    display: grid;
    gap: 0.75rem;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.offer-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

.offer-content {
    flex: 1;
}

.offer-text {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.offer-code {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.25rem 0.65rem;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.view-all-offers {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: color 0.2s ease;
}

.view-all-offers:hover {
    color: var(--color-primary-dark);
}

.offers-list .offer-item:nth-child(n+4) {
    display: none;
}

.offers-list.expanded .offer-item {
    display: flex;
}

/* Pincode Checker */
.pincode-section {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.pincode-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.75rem;
    color: var(--color-text);
}

.pincode-checker {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pincode-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.pincode-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.pincode-btn {
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pincode-btn:hover {
    background: var(--color-primary-dark);
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00a699;
    font-weight: 600;
    font-size: 0.95rem;
}

.delivery-info-icon {
    font-size: 1.25rem;
}

.same-day-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #00a699, #00c9a7);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.trust-badge-icon {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Customer Reviews Section */
.reviews-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.reviews-header {
    margin-bottom: 2rem;
}

.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.reviews-score {
    text-align: center;
}

.reviews-score-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.reviews-score-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.reviews-score-stars .star-icon {
    font-size: 1.5rem;
}

.reviews-score-count {
    color: #666;
    font-size: 0.95rem;
}

.reviews-breakdown {
    display: grid;
    gap: 0.75rem;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-bar-label {
    min-width: 60px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.review-bar-track {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 4px;
}

.review-bar-count {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.reviews-list {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.75rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: grid;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.review-date {
    color: #999;
    font-size: 0.875rem;
}

.review-rating {
    display: flex;
    gap: 0.15rem;
}

.review-rating .star-icon {
    font-size: 1rem;
}

.review-text {
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0.75rem 0;
}

.review-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s ease;
}

.review-read-more:hover {
    color: var(--color-primary-dark);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.review-helpful-text {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.review-helpful-buttons {
    display: flex;
    gap: 0.5rem;
}

.review-helpful-btn {
    padding: 0.35rem 0.85rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-helpful-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.show-all-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    margin: 2rem auto 0;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-all-reviews:hover {
    background: var(--color-primary);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-sale {
        font-size: 1.75rem;
    }

    .price-original {
        font-size: 1.1rem;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pincode-checker {
        flex-direction: column;
    }

    .pincode-btn {
        width: 100%;
    }
}

/* FNP Product Detail Page Overrides */
.product-info h1 {
    font-family: var(--font-family-base) !important;
    font-size: 24px !important;
    font-weight: var(--font-weight-medium) !important;
    line-height: 24px !important;
    color: var(--color-text-primary) !important;
    margin-bottom: 8px !important;
}

.price-sale {
    font-size: 28px !important;
    font-weight: var(--font-weight-semibold) !important;
    line-height: 42px !important;
    color: var(--color-text-primary) !important;
}

.price-original {
    font-size: 20px !important;
    font-weight: var(--font-weight-regular) !important;
    color: var(--color-text-secondary) !important;
    text-decoration: line-through !important;
}

.discount-badge {
    font-size: 14px !important;
    font-weight: var(--font-weight-semibold) !important;
    color: var(--color-primary-green-light) !important;
}

.star-rating {
    padding: 4px 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-count {
    font-size: 10px !important;
    font-weight: var(--font-weight-semibold) !important;
    color: var(--color-link-blue) !important;
    text-decoration: underline;
}

.reviewer-name {
    font-size: 14px !important;
    font-weight: var(--font-weight-medium) !important;
    color: var(--color-text-primary) !important;
}

.review-date {
    font-size: 12px !important;
    font-weight: var(--font-weight-regular) !important;
    color: var(--color-text-muted) !important;
}

.review-text {
    font-size: 14px !important;
    font-weight: var(--font-weight-regular) !important;
    line-height: 21px !important;
    color: var(--color-text-secondary) !important;
}

/* Responsive overrides for FNP */
@media (max-width: 768px) {
    .price-sale {
        font-size: 24px !important;
    }

    .price-original {
        font-size: 18px !important;
    }

    .product-info h1 {
        font-size: 20px !important;
    }
}

/* Product Page Layout Override */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery {
    grid-column: 1;
}

.product-info {
    grid-column: 2;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Actions wrapper - normal positioning within sticky parent */
.product-actions-sticky-wrapper {
    position: relative;
    background: white;
    padding-top: 20px;
    padding-bottom: 20px;

    margin-top: 20px;
}

/* When scrolled past - fixed at bottom like IGP */
.product-actions-sticky-wrapper.active {
    position: fixed;
    width: 50%;
    bottom: 0;
    right: 0;
    padding: 2vh 3.5vw 3vh 0;
    z-index: 150;

}

/* Product Mini Tabs */
.product-mini-tabs {
    margin: 20px 0;
}

.mini-tab-headers {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.mini-tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.mini-tab-btn:hover {
    color: #121212;
}

.mini-tab-btn.active {
    color: #362b04;
    border-bottom-color: #D4AF37;
}

.mini-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    font-size: 16px !important;
    line-height: 1.8;
    color: #4a4a4a;
}

.mini-tab-content p {
    margin-bottom: 12px;
    font-size: 16px !important;
    line-height: 1.8;
}

.mini-tab-content ul {
    padding-left: 0;
    list-style: none;
}

.mini-tab-content li {
    margin-bottom: 8px;
    font-size: 16px !important;
    line-height: 1.8;
}

.mini-tab-content strong {
    font-weight: 600;
    color: #121212;
}

.mini-tab-content.active {
    display: block;
    animation: fadeInSmooth 0.4s ease-in-out forwards;
}

@keyframes fadeInSmooth {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FNP Gallery Layout - Vertical Thumbnails */
.gallery-container {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.product-gallery-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-thumbnail-button {
    width: 96px;
    height: 96px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.2s ease;
}

.product-thumbnail-button:hover {
    border-color: var(--color-border);
}

.product-thumbnail-button.is-active {
    border-color: var(--color-primary);
}

.product-thumbnail-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-main-wrapper {
    flex: 1;
    max-width: 600px;
}

.product-gallery-main {
    margin: 0;
}

.product-gallery-main img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.gallery-expand-text {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 8px;
    cursor: pointer;
}

/* Product Badges */
.product-badges {
    display: flex;
    gap: 8px;
    margin: 0 0 16px 0;
}

.badge-limited {
    background: #386641;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
}

.badge-delivery {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary-green);
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
}

.badge-delivery svg {
    width: 16px;
    height: 16px;
}


.product-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.order-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF4E6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #D97706;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.order-count-badge svg {
    width: 16px;
    height: 16px;
    stroke: #D97706;
}

/* Gift Receiver's Location Section */
.gift-location-section {
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
}

.gift-location-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--color-text-primary);
}

.location-inputs {
    display: flex;
    gap: 8px;
}

.country-select {
    width: 120px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family-base);
    background: white;
    cursor: pointer;
}

.location-input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family-base);
}

.location-input::placeholder {
    color: var(--color-text-muted);
}

/* Explore More Options Section */
.explore-options-section {
    margin: 24px 0;
}

.explore-options-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--color-text-primary);
}

.explore-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.option-card {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.option-title {
    padding: 8px 4px 4px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: var(--color-text-primary);
    display: block;
}

/* Product Offers List */
.product-offers-list {
    margin: 24px 0;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.offer-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #E8E8E8;
    background: #FAFAFA;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.offer-row:hover {
    background: white;
    border-color: var(--color-border-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.offer-icon {
    font-size: 18px;
}

.offer-text {
    flex: 1;
}

.offer-desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    display: block;
}

.offer-arrow {
    color: var(--color-text-muted);
    font-weight: bold;
}

/* Product Mini Tabs */
.product-mini-tabs {
    margin: 32px 0;
}

.mini-tab-headers {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 16px;
    gap: 24px;
}

}

.mini-tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.mini-tab-content li {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-tab-content li::before {
    content: '•';
    color: var(--color-text-muted);
}



/* Product Action Buttons */
.product-actions {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    align-items: center;
}

.btn-add-to-cart {
    flex: 1;
    background: white;
    border: 1px solid #7c8a45;
    color: #6e7935;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
    background: #f8fae5;
}

.btn-buy-now {
    flex: 1.5;
    background: #7c8a45;
    color: white;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-buy-now:hover {
    background: #626d36;
}

.btn-chat {
    background: #1976D2;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
}

.btn-chat:hover {
    background: #1565C0;
}

/* Delivery Timer */
.delivery-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    color: #DD2C00;
    font-size: 11px;
    font-weight: 500;
}


/* Responsive Design for New Components */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
    }

    .product-gallery-thumbs-vertical {
        flex-direction: row;
        overflow-x: auto;
    }

    .product-thumbnail-button {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .explore-options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .location-inputs {
        flex-direction: column;
    }

    .country-select {
        width: 100%;
    }

    .product-actions {
        flex-direction: column;
    }
}

/* Section Headers */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.section-header-row h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-primary);
}

.btn-text {
    background: none;
    border: none;
    color: #7c8a45;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Customer Reviews Specifics */
.customer-reviews {
    margin-top: 48px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Product Page Layout Constraints */
@media (min-width: 1024px) {
    .page-product-detail .container.page-section {
        margin-left: 10%;
        margin-right: 10%;
        max-width: none;
        width: auto;
    }
}

/* Sticky Actions Wrapper */
.product-actions-sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 100;
    background: white;
    padding: 16px 0;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

/* Category Page Functionality and Redesign */
.category-header h1 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.category-header .count {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 18px;
    margin-left: 8px;
}

/* Horizontal Sub Nav */
.category-sub-nav {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.sub-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 80px;
    gap: 8px;
}

.sub-cat-item .img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: border-color 0.2s;
}

.sub-cat-item:hover .img-wrap {
    border-color: #7c8a45;
}

.sub-cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-cat-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-align: center;
}

/* Grid Layout Overrides */
@media (min-width: 1200px) {
    .catalog-products.product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Horizontal Scrollable Product List */
.product-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.scroll-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

.scroll-relative-container {
    position: relative;
    /* padding: 0 20px; */
}

.product-scroll-wrapper .product-card {
    flex: 0 0 calc((100% - 48px) / 4.3);
    /* Display 4.3 items to partial show 5th */
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .product-scroll-wrapper .product-card {
        flex: 0 0 calc((100% - 32px) / 3.3);
        /* 3.3 items to partial show 4th */
    }
}

@media (max-width: 768px) {
    .product-scroll-wrapper .product-card {
        flex: 0 0 calc((100% - 16px) / 2.2);
        /* 2.2 items to partial show 3rd */
    }
}


/* New Product Card Styles (FNP Style) */
.product-card {
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.product-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    /* Force square */
    background: #f9f9f9;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 12px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-badge {
    background: #008539;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-badge .star {
    font-size: 9px;
}

.review-count {
    font-size: 11px;
    color: #666;
    text-decoration: none;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-mrp {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
}

.price-off {
    font-size: 12px;
    font-weight: 600;
    color: #008539;
}

.product-delivery {
    display: inline-block;
    background: #f2f2f2;
    padding: 2px 6px;
    border-radius: 4px;
}

.earliest-delivery {
    font-size: 11px;
    color: #555;
    font-weight: 500;
}

.earliest-delivery strong {
    color: #333;
}

/* =========================================
   HOMEPAGE REDESIGN STYLES
   ========================================= */

/* Hero Section */
.home-hero-section {
    padding: 24px 0;
    background: #f8f9fa;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 992px) {
    .hero-layout {
        grid-template-columns: 280px 1fr;
    }
}

.hero-sidebar-banner {
    display: none;
    /* Hide on mobile by default or stack */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

@media (min-width: 992px) {
    .hero-sidebar-banner {
        display: block;
        height: 400px;
    }
}

.hero-sidebar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.hero-main-slider {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 250px;
    /* Smaller mobile height */
}

@media (min-width: 768px) {
    .hero-main-slider {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .hero-main-slider {
        height: 400px;
    }
}

.hero-main-slider .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-caption h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

@media(min-width: 768px) {
    .hero-caption h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
}

/* Home Icon Grid */
.home-icon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 8px 0 24px 0;
}

.home-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text-primary);
    width: 90px;
    /* Mobile width */
    transition: transform 0.2s;
}

@media(min-width: 768px) {
    .home-icon-grid {
        gap: 24px;
    }

    .home-icon-item {
        width: 130px;
        gap: 12px;
    }
}

.home-icon-item:hover {
    transform: translateY(-5px);
}

.icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media(min-width: 768px) {
    .icon-wrap {
        width: 120px;
        height: 120px;
    }
}

.icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-icon-item span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.icon-wrap.circle-lg {
    width: 100px;
    height: 100px;
}

@media (min-width: 768px) {
    .icon-wrap.circle-lg {
        width: 140px;
        height: 140px;
    }
}

/* Occasions Grid */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .occasions-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}

.occasion-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.occasion-card.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
    /* Mobile rect */
}

@media (min-width: 768px) {
    .occasion-card.large {
        aspect-ratio: 1;
        /* Actually large card might be 2x2 grid cell? Reference image has 1 big 4 small. Let's keep it fluid. */
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
        height: 100%;
    }

    .occasions-grid {
        grid-template-rows: repeat(2, 1fr);
        height: 400px;
        /* Fixed height for grid on desktop */
    }

    /* Wait, easiest is just Flex or Simple Grid. Let's stick to simple grid first. */
    .occasions-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
    }

    .occasion-card.large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
}

.occasion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.occasion-card:hover img {
    transform: scale(1.05);
}

.occasion-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-primary);
}

/* Promo Banners */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.promo-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
}

@media(min-width: 768px) {
    .promo-card {
        height: 200px;
    }
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-content h3 {
    margin: 0;
    font-size: 18px;
}

.promo-content span {
    font-size: 13px;
}

/* Bestseller Section Background */
.bestsellers-section {
    background: #fff;
    padding: 24px 0 40px;
}

/* =========================================
   Quirky Celebrations Styles
   ========================================= */
.quirky-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.quirky-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    background: #fff;
}

.quirky-card:hover {
    transform: translateY(-5px);
}

.q-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f0f0f0;
    overflow: hidden;
}

.q-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quirky-card h3 {
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* =========================================
   New Best Seller (Clean Minimal) Styles
   ========================================= */
.five-col-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    /* Allow horizontal scroll on small screens if 5 cols is too tight */
}

/* 4 Column Grid */
.four-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card.minimal-clean {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding-bottom: 0.5rem;
}

.product-card.minimal-clean:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card.minimal-clean .product-thumb-wrapper {
    aspect-ratio: 1;
    border-radius: 8px 8px 0 0;
}

.product-card.minimal-clean .product-content {
    padding: 0.75rem;
    text-align: left;
}

.product-card.minimal-clean .product-title {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    height: auto;
    /* Reset fixed height if any */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card.minimal-clean .product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.rating-badge.green {
    background-color: #249a41;
    /* FNP Green */
    color: #fff;
    padding: 1px 4px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.7rem;
}

.product-card.minimal-clean .review-count {
    color: #888;
}

.product-card.minimal-clean .product-price-row {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.product-card.minimal-clean .product-delivery-tag {
    background-color: #ffd008;
    color: #222;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 2px;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.product-card.minimal-clean .price-mrp {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-card.minimal-clean .earliest-delivery {
    font-size: 0.75rem;
    color: #666;
}

/* Scroll scrollbar for the grid */
.five-col-grid::-webkit-scrollbar {
    height: 6px;
}

.five-col-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* =========================================
   Relationship Section Styles
   ========================================= */
.relationship-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.relationship-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 100px;
}

.rel-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    /* Rounded square shapes as per image */
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid #eee;
}

.rel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.relationship-item:hover .rel-img-wrap img {
    transform: scale(1.05);
}

.relationship-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Responsive Updates for New Sections */
@media (max-width: 991px) {
    .five-col-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 on tablet */
    }
}

@media (max-width: 576px) {
    .five-col-grid {
        display: flex;
        /* Scroll horizontal on mobile */
        grid-template-columns: none;
    }

    .product-card.minimal-clean {
        min-width: 220px;
        width: 220px;
        flex-shrink: 0;
    }

    .product-card.minimal-clean .product-thumb-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .product-card.minimal-clean .product-thumb {
        display: block;
        width: 100%;
        height: 100%;
    }

    .product-card.minimal-clean .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .product-card.minimal-clean .product-title {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.3;
        height: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .quirky-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Remove padding for edge-to-edge scroll */
    .bestsellers-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .bestsellers-section .section-header-row {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .product-scroll-wrapper {
        padding-left: 1rem;
    }
}

/* =========================================
   Celebrate Occasions (Bento Grid) Styles
   ========================================= */
.occasions-section .section-header-row.centered {
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
}

.occasions-section .section-header-row.centered h2 {
    margin: 0;
    text-align: center;
}

.occasions-section .view-all-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.occasions-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 main cols: Large Item | 2x2 Grid */
    gap: 1.5rem;
}

.bento-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.bento-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.bento-content {
    background: #1a1a1a;
    /* Dark background */
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

/* Removed overlay ::before block */

.bento-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.3s;
}

.bento-item:hover .bento-bg-img {
    transform: scale(1.05);
}

.bento-title {
    display: none;
    /* Hide text on image */
}

.bento-item.large-item .bento-content {
    min-height: 320px;
    /* Match height of subgrid approx */
}

.bento-item:hover .bento-content {
    background: #000;
}

.bento-label {
    display: block;
    /* Show text below image */
    background: transparent;
    color: #000;
    text-align: center;
    padding-top: 12px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Responsive Bento */
@media (max-width: 768px) {
    .occasions-bento-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .bento-item.large-item .bento-content {
        min-height: 200px;
    }

    .bento-title {
        font-size: 3rem;
    }

    .occasions-section .view-all-link {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: block;
        margin-top: 0.5rem;
        text-align: center;
    }

    .occasions-section .section-header-row.centered {
        flex-direction: column;
    }
}

/* =========================================
   Joyful Gifting Stories Section
   ========================================= */
.gifting-stories-section {
    padding: 4rem 0;
    background: #fff;
}

.gifting-stories-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.stories-carousel {
    position: relative;
    /*    padding: 0 3rem;*/
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.stories-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.stories-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
}

.story-card {
    flex-shrink: 0;
    width: 260px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 3px solid #C30101;
    border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background: #fff;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.story-image {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    background: #f5f5f5;
}

.story-image img,
.story-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    z-index: 2;
    width: 80%;
}

.story-views {
    display: none;
}

.story-tag {
    background: #ffffff;
    color: #000000;
    padding: 12px 16px;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    white-space: normal;
    width: 100%;
    border-top: 1px solid #5a3a29;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stories-carousel {
        padding: 0 2rem;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .story-card {
        width: 150px;
    }

    .story-image {
        height: 240px;
    }

    .story-overlay-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gifting-stories-section {
        padding: 3rem 0;
    }

    .stories-carousel {
        padding: 0 1rem;
    }

    .carousel-nav {
        display: none;
        /* Hide arrows on very small screens */
    }

    .story-card {
        width: 130px;
    }

    .story-image {
        height: 200px;
        border-radius: 12px;
    }

    .story-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* =========================================
   Inline Header Search Bar
   ========================================= */
.header-search-bar {
    position: absolute;
    left: 200px;
    /* Start after logo */
    right: 400px;
    /* End before nav-actions */
    top: 0;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 50;
    pointer-events: none;
}

.search-active .header-search-bar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.search-input-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}

.search-input-wrapper:focus-within {
    background: #fff;
    border-color: #1976D2;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}

.search-icon {
    font-size: 1.25rem;
    color: #666;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: #1a1a1a;
}

.search-input::placeholder {
    color: #999;
}

.search-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #e0e0e0;
    color: #666;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.search-close:hover {
    background: #d0d0d0;
    color: #1a1a1a;
}

/* Hide navigation items when search is active */
.search-active .main-nav {
    opacity: 0;
    visibility: hidden;
}

/* Make search button look active */
.search-active .icon-button[onclick*="toggleHeaderSearch"] {
    background: #E3F2FD;
    color: #1976D2;
}

@media (max-width: 968px) {
    .header-search-bar {
        padding: 0 1rem;
    }

    .search-input-wrapper {
        padding: 0.6rem 1rem;
    }

    .search-input {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .search-input::placeholder {
        font-size: 0.9rem;
    }

    .search-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}


/* =========================================
   User Dropdown (Logged In State)
   ========================================= */
.user-dropdown {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.user-trigger:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.user-email {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    color: #666;
    transition: transform 0.2s;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.user-dropdown.active .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.user-menu-header .user-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.user-menu-header .user-email {
    font-size: 0.85rem;
}

.user-menu-items {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.user-menu-items li {
    margin: 0;
}

.user-menu-items a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.user-menu-items a:hover {
    background: #f8f9fa;
    color: #1a1a1a;
}

.user-menu-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.user-menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0.5rem 0;
}

.user-menu-items a.logout {
    color: #dc3545;
}

.user-menu-items a.logout:hover {
    background: #fff5f5;
}

/* Hide auth buttons when logged in */
.logged-in .auth-buttons {
    display: none;
}

/* Show user dropdown when logged in */
.user-dropdown {
    display: none;
}

.logged-in .user-dropdown {
    display: block;
}

@media (max-width: 768px) {
    .user-trigger {
        padding: 0.5rem;
    }

    .user-info {
        display: none;
    }

    .dropdown-arrow {
        margin-left: 0;
    }

    .user-menu {
        right: -1rem;
        min-width: 200px;
    }
}

/* =========================================
   Mobile Responsive Header
   ========================================= */

/* Hide mobile elements on desktop */
.mobile-header-row,
.mobile-search-row {
    display: none;
}

/* Show desktop nav-actions, hide mobile nav-actions on desktop */
.desktop-nav-actions {
    display: inline-flex;
}

.mobile-header-row .nav-actions {
    display: none;
}

/* Hide desktop brand on mobile */
.desktop-brand {
    display: block;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 968px) {

    /* Show mobile header elements */
    .mobile-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
        gap: 1rem;
    }

    /* Logo on the left */
    .mobile-header-row .brand {
        flex-shrink: 0;
        font-size: 1.5rem;
        flex: 0 0 auto;
        text-align: left;
    }

    /* Hamburger on the right */
    .hamburger-menu {
        flex-shrink: 0;
        order: 3;
    }

    .mobile-search-row {
        display: block;
        background: #f8f9fa;
        padding: 0.75rem 0;
        border-top: 1px solid #e0e0e0;
    }

    /* Hide desktop brand */
    .desktop-brand {
        display: none !important;
    }

    /* Hide desktop nav-actions, show mobile nav-actions */
    .desktop-nav-actions {
        display: none !important;
    }

    .mobile-header-row .nav-actions {
        display: flex !important;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
        background: #1a1a1a;
        padding: 10px;
        border-radius: 6px;
        width: 44px;
        height: 44px;
    }

    .hamburger-menu span {
        height: 3px;
        background: #ffffff;
        box-shadow: none;
    }

    /* Mobile Search Bar */
    .mobile-search-wrapper {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 25px;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .search-icon-mobile {
        font-size: 1.1rem;
        color: #666;
        flex-shrink: 0;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 0.95rem;
        outline: none;
        color: #1a1a1a;
    }

    .mobile-search-input::placeholder {
        color: #999;
    }

    /* Hide desktop navigation */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000000;
        z-index: 999;
        overflow-y: auto;
        padding: 5rem 2rem 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        display: block;
        transform: translateX(0);
    }

    /* Stack nav items vertically */
    .main-nav .nav-item {
        display: block;
        border-bottom: 1px solid #ffffff;
    }

    .main-nav .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #ffffff;
    }

    .main-nav .nav-link:hover {
        color: #D4AF37;
    }

    /* Hide mega menu on mobile */
    .mega-menu {
        display: none !important;
    }

    /* Hide desktop search bar on mobile */
    .header-search-bar {
        display: none !important;
    }

    /* Adjust nav-actions for mobile - position inline in header row */
    .nav-actions {
        position: static;
        display: flex;
        gap: 0.5rem;
        align-items: center;
        order: 2;
        flex-shrink: 0;
        width: auto;
        flex: 0 1 auto;
    }

    .nav-actions .icon-button {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    /* Hide some nav-actions on mobile */
    .nav-actions .icon-button[onclick*="toggleHeaderSearch"] {
        display: none;
    }

    /* User dropdown adjustments */
    .user-dropdown {
        position: relative;
    }

    .user-trigger {
        padding: 0.5rem;
        border: none;
    }

    .user-info {
        display: none;
    }

    .dropdown-arrow {
        display: none;
    }

    .user-menu {
        right: 0;
        top: calc(100% + 0.5rem);
    }

    /* Topbar adjustments */
    .topbar {
        display: none;
        /* Hide topbar on mobile */
    }

    /* Container adjustments */
    .nav .container {
        position: relative;
        flex-direction: column;
        gap: 0;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .mobile-header-row {
        padding: 0.75rem 0;
    }

    .mobile-search-wrapper {
        padding: 0.6rem 0.85rem;
    }

    .mobile-search-input {
        font-size: 0.9rem;
    }

    .nav-actions {
        right: 3.5rem;
        gap: 0.25rem;
    }

    /* ========================================
       PRODUCT DETAIL PAGE RESPONSIVE STYLES
       ======================================== */

    /* Main product layout - stack columns on mobile */
    .product-page {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .product-gallery,
    .product-info {
        grid-column: 1 !important;
        width: 100%;
    }

    /* Gallery adjustments for mobile */
    .gallery-container {
        flex-direction: column-reverse !important;
        gap: 1rem !important;
    }

    .product-gallery-thumbs-vertical {
        flex-direction: row !important;
        width: 100% !important;
        overflow-x: auto !important;
        gap: 0.5rem !important;
        padding-bottom: 0.5rem;
    }

    .product-thumbnail-button {
        min-width: 60px !important;
        height: 60px !important;
        flex-shrink: 0;
    }

    .gallery-main-wrapper {
        width: 100% !important;
    }

    .product-gallery-main {
        width: 100% !important;
        max-height: 300px !important;
    }

    .gallery-expand-text {
        font-size: 0.85rem !important;
        text-align: center;
    }

    /* Product info section */
    .product-info h1 {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
    }

    .product-price-block {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .price-main {
        flex: 1 1 auto;
    }

    /* Gift location section */
    .gift-location-section {
        margin: 1.5rem 0;
    }

    .location-inputs {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .country-select,
    .location-input {
        width: 100% !important;
        max-width: none !important;
    }

    /* Explore options grid */
    .explore-options-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem !important;
    }

    .option-card {
        min-width: 0 !important;
    }

    .option-card img {
        height: 80px !important;
    }

    .option-title {
        font-size: 0.75rem !important;
    }

    /* Offers list */
    .product-offers-list {
        margin: 1.5rem 0;
    }

    .offer-row {
        padding: 0.75rem !important;
    }

    .offer-desc {
        font-size: 0.85rem !important;
    }

    /* Mini tabs */
    .product-mini-tabs {
        margin: 1.5rem 0;
    }

    .mini-tab-headers {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mini-tab-btn {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
    }

    .mini-tab-content {
        font-size: 0.9rem !important;
    }

    /* Product action buttons - CRITICAL FOR MOBILE */
    .product-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .product-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .btn-add-to-cart,
    .btn-buy-now {
        min-height: 48px !important;
    }

    .btn-chat {
        min-height: 44px !important;
    }

    /* Delivery timer */
    .delivery-timer {
        font-size: 0.85rem !important;
        padding: 0.75rem !important;
        text-align: center;
    }

    /* Sticky wrapper for mobile */
    .product-actions-sticky-wrapper {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        margin: 0 -1rem -1rem -1rem;
        /* Negative margin to touch edges */
    }

    /* Reviews section */
    .customer-reviews {
        padding: 1.5rem 0 !important;
    }

    .section-header-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .review-card {
        padding: 1rem !important;
    }

    .reviewer-name {
        font-size: 0.95rem !important;
    }

    .review-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Related products grid */
    .four-col-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .product-card {
        min-width: 0 !important;
    }

    .product-title {
        font-size: 0.9rem !important;
    }

    .product-price-row {
        font-size: 0.9rem !important;
    }

    /* Chat FAB */
    .chat-fab {
        bottom: 80px !important;
        right: 1rem !important;
        font-size: 0.85rem !important;
        padding: 0.75rem 1.25rem !important;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem !important;
        padding: 0.75rem 0 !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ======================================== */

/* Mobile: 0-767px - Critical Fixes */
@media (max-width: 767px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Header adjustments */
    .site-header {
        position: sticky;
    }

    .topbar {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }

    .topbar .container {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .top-links {
        gap: 0.75rem;
        font-size: 0.75rem;
    }

    /* Navigation */
    .nav .container {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

    .brand {
        font-size: 1.35rem;
    }

    .main-nav {
        display: none !important;
    }

    .nav-actions {
        gap: 0.35rem;
    }

    .icon-button {
        width: 36px;
        height: 36px;
    }

    .auth-buttons {
        display: none !important;
    }

    .mega-panel {
        display: none !important;
    }

    /* Desktop brand - hide on mobile */
    .desktop-brand {
        display: none !important;
    }

    /* Sections */
    .section {
        padding: 2rem 0 !important;
    }

    .section-header,
    .section-header-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        text-align: left !important;
    }

    .section-header h2,
    .section-header-row h2,
    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }

    .view-all-link {
        align-self: flex-end;
    }

    /* Grids - 2 columns on mobile */
    .product-grid,
    .four-col-grid,
    .five-col-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Home icon grid */
    .home-icon-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }

    /* Product cards */
    .product-card {
        font-size: 0.875rem;
    }

    .product-content {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 0.875rem !important;
        margin-bottom: 0.35rem;
    }

    .product-price-row {
        margin-bottom: 0.5rem;
    }

    .price-current {
        font-size: 1rem;
    }

    .price-mrp {
        font-size: 0.8rem;
    }

    .earliest-delivery {
        font-size: 0.75rem;
    }

    /* Buttons - touch friendly */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-sm {
        min-height: 40px;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    /* Footer */
    .footer-trust-badges {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .footer-main-row {
        flex-direction: column !important;
    }

    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    /* Occasions bento grid */
    .occasions-bento-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .bento-subgrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Quirky grid */
    .quirky-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Relationship grid */
    .relationship-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }

    /* Product scroll wrapper */
    .product-scroll-wrapper {
        gap: 0.75rem !important;
    }

    .scroll-btn {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #333;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .scroll-btn svg {
        color: #333;
        stroke-width: 3;
    }

    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px !important;
        min-height: 44px;
        padding: 0.75rem;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.8rem;
        padding: 0.75rem 0;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Container padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Tablet: 768px-1023px */
@media (min-width: 768px) and (max-width: 1023px) {

    .product-grid,
    .four-col-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .home-icon-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {

    .product-grid,
    .four-col-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .five-col-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

/* ========================================
   MOBILE MENU STYLES
   ======================================== */

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Show hamburger on mobile */
@media (max-width: 767px) {
    .hamburger-menu {
        display: flex;
    }

    /* Mobile menu overlay */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #000000;
        z-index: 1000;
        padding: 80px 0 20px;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        display: flex !important;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.active {
        left: 0;
    }

    /* Mobile menu items */
    .main-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #ffffff;
    }

    .main-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: #ffffff;
        width: 100%;
    }

    .main-nav .nav-link:hover {
        color: #D4AF37;
    }

    .main-nav .nav-link::after {
        display: inline-block;
        opacity: 0.6;
        border-color: #ffffff;
    }

    /* Hide mega panels on mobile */
    .main-nav .mega-panel {
        display: none !important;
    }

    /* Mobile menu backdrop */
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Tablet and up - hide hamburger */
@media (min-width: 768px) {
    .hamburger-menu {
        display: none !important;
    }
}

/* ========================================
   FOOTER STYLES - GIFTLY STYLE
   ======================================== */

.footer-seo-section,
.footer-corporate-info {
    display: none !important;
}

.site-footer {
    background: #f7f7f7;
    color: #333;
    padding: 3rem 0 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    margin-top: 4rem;
}

.fnp-footer .container {
    max-width: 1400px;
    padding: 0 2rem;
}

/* SEO Text Section */
.footer-seo-section {
    margin-bottom: 2.5rem;
}

.footer-seo-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000;
}

.footer-seo-section .sub-heading {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.seo-content-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.seo-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
    display: inline;
}

.read-more-link {
    color: #0066cc;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon svg {
    color: #555;
    width: 32px;
    height: 32px;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.badge-info span {
    font-size: 0.85rem;
    color: #666;
}

/* Main Links Row */
.footer-main-row {
    display: flex;
    background: transparent;
    padding: 0 0 2rem 0;
    gap: 2rem;
    justify-content: space-between;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    flex: 1;
}

.footer-col h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #555;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #000;
}

/* Newsletter Section */
.footer-newsletter {
    flex: 0 0 280px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.footer-newsletter h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 0.5rem;
    gap: 0.5rem;
}

.newsletter-form .icon-mail {
    font-size: 1.2rem;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    padding: 0.25rem;
}

.newsletter-form button {
    background: #000;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #333;
}

/* Corporate Info */
.footer-corporate-info {
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.footer-corporate-info p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-corporate-info .csr-link {
    font-size: 0.75rem;
    color: #0066cc;
    text-decoration: none;
}

.footer-corporate-info .csr-link:hover {
    text-decoration: underline;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.2s;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.1);
}

.copyright-text {
    color: #666;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
}

.payment-methods img {
    height: 25px;
    width: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    background: white;
}

/* Category Icons Section Heading */
.category-icons-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Chat FAB */
.chat-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #000;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    display: none;
}

.chat-fab:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main-row {
        flex-direction: column;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-newsletter {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-trust-badges {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .chat-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   LUXURY UTILITY CLASSES
   ======================================== */

/* Background Colors */
.bg-lux-black {
    background-color: var(--color-bg-dark, #121212);
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.bg-lux-gold {
    background-color: var(--color-luxury-gold, #D4AF37);
    color: black;
}

.bg-lux-grey {
    background-color: #f8f8f8;
    color: var(--color-text-primary, #121212);
}

/* Text Colors */
.text-gold {
    color: var(--color-luxury-gold, #D4AF37);
}

.text-white {
    color: white;
}

.text-black {
    color: var(--color-primary, #121212);
}


/* ========================================
   PRODUCT ACTIONS - NORMAL SCROLL
   ======================================== */

.product-actions-sticky-wrapper {
    position: relative;
    background: white;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

/* Inner wrapper to constrain width */
.product-actions-sticky-wrapper>* {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.product-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
}

.btn-add-to-cart {
    background: #FFFFFF;
    color: #c30101;
    border: 1px solid #c30101 !important;
}

.btn-add-to-cart:hover {
    background: #f9f9f9;
}

.btn-add-to-cart svg {
    color: #c30101;
}

.btn-buy-now {
    background: #c30101;
    color: #FFFFFF;
    font-weight: 700;
}

.btn-buy-now:hover {
    background: #0f0f0f;
}

.btn-buy-now svg {
    color: white;
}

.delivery-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    padding: 0.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.delivery-timer svg {
    color: #ff6b6b;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .product-actions {
        flex-direction: row;
        gap: 0.75rem;
    }

    .product-actions .btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Services Section Styling */
.services.bg-lux-black {
    padding: 6rem 0;
    color: white;
}

.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.services .service-item .icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-luxury-gold);
    /* Center aligning the icon content */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: none;
}

.services .service-item h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.services .service-item p {
    color: white;
    font-size: 0.95rem;
}