/* Rustic Mango - Modern Abstract Theme */
/* Modern, abstract design with geometric patterns and smooth animations */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@400;700;900&display=swap');

:root {
    /* Measured by JS for mobile nav offset (fallback for first paint) */
    --site-header-offset: 6.5rem;

    /* Typography */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Lato', sans-serif;

    /* Brand palette: red, white, green, black */
    --primary: #e71d36;
    --primary-dark: #b8152a;
    --primary-light: #fde8eb;
    --secondary: #ffffff;
    --accent: #8DB355;
    --success: #8DB355;
    --danger: #e71d36;

    /* 3D black button border */
    --gold: #2a2a2a;
    --gold-light: #5a5a5a;
    --gold-mid: #2a2a2a;
    --gold-dark: #000000;
    --gold-shadow: rgba(0, 0, 0, 0.35);
    
    /* Neutral Colors */
    --dark: #000000;
    --dark-light: #000000;
    --gray: #333333;
    --gray-light: #ffffff;
    --light: #ffffff;
    --white: #ffffff;
    
    /* Brand gradients */
    --gradient-primary: linear-gradient(135deg, #e71d36 0%, #b8152a 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    --gradient-accent: linear-gradient(135deg, #8DB355 0%, #8DB355 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #000000 100%);
    --gradient-abstract: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(231, 29, 54, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 2.25rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

svg {
    height: auto;
}

/* Abstract Background Pattern — disabled so section gaps stay solid white */
body::before {
    content: none;
    display: none;
}

.main-content {
    background: #ffffff;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(var(--spacing-md), env(safe-area-inset-right, 0px)) 0 max(var(--spacing-md), env(safe-area-inset-left, 0px));
}

/* Header - Modern Abstract Design */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

/* Top bar: Customization, Bulk order, Track order (Mamta-style) */
.header-top-bar {
    background: #000;
    color: #fff;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.header-top-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-top-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-top-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.header-top-links a:hover {
    color: #fff;
    opacity: 0.85;
}

.navbar {
    padding: var(--spacing-sm) 0;
    font-family: var(--font-heading);
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
}

.navbar .nav-menu {
    justify-self: start;
    grid-column: 1;
}

.navbar .nav-brand {
    justify-self: center;
    justify-items: center;
    grid-column: 2;
    text-align: center;
}

.navbar .nav-brand a {
    margin-inline: auto;
}

.navbar .nav-actions {
    justify-self: end;
    grid-column: 3;
}

.nav-brand a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity var(--transition-base);
}

.nav-brand a:hover {
    opacity: 0.9;
}

.nav-brand .site-logo {
    display: block;
    height: 4rem;
    width: auto;
    max-width: min(320px, 55vw);
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-fast);
}

.menu-item {
    position: static;
}

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.menu-item.has-children > .menu-link::after {
    content: '▾';
    font-size: 0.75rem;
    color: var(--gray);
    transition: transform var(--transition-fast);
}

.menu-item.has-children:hover > .menu-link::after,
.menu-item.has-children:focus-within > .menu-link::after,
.menu-item.open > .menu-link::after {
    transform: rotate(180deg);
}

.submenu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(203, 213, 225, 0.7);
    color: var(--dark);
    width: 34px;
    height: 34px;
    border-radius: var(--radius-md);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: 0.25rem;
    position: relative;
}

.submenu-toggle::before,
.submenu-toggle::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast);
}

.submenu-toggle::after {
    transform: rotate(90deg);
}

.menu-item.open .submenu-toggle::after {
    transform: rotate(0deg);
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(203, 213, 225, 0.6);
    display: none;
    z-index: 1200;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.mega-menu--small {
    max-width: 720px;
    right: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: var(--spacing-lg);
}

.mega-menu-column h4 {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-column h4 a {
    color: inherit;
    text-decoration: none;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

.mega-menu-column h4 a:hover {
    color: var(--primary);
}

.mega-menu-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.mega-menu-column a:hover {
    color: var(--primary);
}

.mega-menu-column .mega-parent {
    color: var(--dark);
    font-weight: 600;
}

.mega-nested {
    margin: 0 0 0.35rem 0.85rem;
    padding-left: 0.65rem;
    border-left: 2px solid rgba(203, 213, 225, 0.7);
}

.mega-nested a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.mega-feature {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.mega-feature p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
}

.mega-links a {
    display: block;
    color: var(--dark);
    font-weight: 500;
    margin-top: 0.25rem;
}

.menu-item:hover .mega-menu,
.menu-item.mega-open .mega-menu,
.menu-item:focus-within .mega-menu,
.menu-item.open .mega-menu {
    display: block;
}

/* Contact Page */
.contact-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    background: var(--light);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-hero-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    max-width: 520px;
}

.contact-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.contact-highlight--roomy {
    gap: var(--spacing-lg);
}

.contact-highlight h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.contact-highlight a:not(.contact-touch-link),
.contact-highlight span {
    color: var(--gray);
    font-weight: 500;
}

.contact-touch-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.35rem 0;
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
    -webkit-tap-highlight-color: rgba(217, 0, 0, 0.15);
    touch-action: manipulation;
    cursor: pointer;
}

.contact-touch-link:hover,
.contact-touch-link:focus-visible {
    color: var(--primary-dark);
}

.contact-touch-link--block {
    display: flex;
    width: fit-content;
    max-width: 100%;
}

.contact-quick-actions {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.contact-hero-card {
    display: flex;
    justify-content: flex-end;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    max-width: 360px;
    width: 100%;
}

.contact-card h3 {
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.contact-card-note {
    margin: var(--spacing-sm) 0;
    color: var(--dark);
    font-weight: 500;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.track-order-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.track-order-form input {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: var(--radius-md);
}

.track-order-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.track-order-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.contact-section {
    padding: var(--spacing-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: var(--spacing-xl);
}

.contact-details {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.contact-info-card ul {
    padding-left: 1rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.contact-action {
    display: inline-flex;
    align-items: center;
    margin-top: var(--spacing-sm);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.contact-form-header h2 {
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-form label.full {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.12);
}

.contact-muted {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--primary);
}

.nav-menu a:hover::before,
.nav-menu a[aria-current="page"]::before {
    width: 100%;
}

/* Search (icon only; expands on click) */
.search-container {
    position: relative;
}

.search-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    color: inherit;
    padding: 0;
}

.search-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(320px, calc(100vw - 2rem));
    z-index: 1100;
}

.search-panel[hidden] {
    display: none;
}

.search-box {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.search-box:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.1), var(--shadow-lg);
}

/* Cart & Wishlist Icons */
.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.nav-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-icon-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--danger);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-full);
    min-width: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section - Abstract Design */
.hero {
    position: relative;
    padding: var(--spacing-2xl) 0;
    text-align: center;
    overflow: hidden;
    margin: var(--spacing-xl) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(217, 0, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    animation: float 30s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-60px, -60px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: var(--gradient-abstract);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons — 3D black border */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--gold-mid);
    border-top-color: var(--gold-light);
    border-left-color: var(--gold-light);
    border-right-color: var(--gold-dark);
    border-bottom: 3px solid var(--gold-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    color: #000000;
    text-shadow: none;
    background-color: transparent;
    background-image: none;
    box-shadow:
        0 3px 0 var(--gold-dark),
        0 5px 12px var(--gold-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.btn::before,
.btn::after {
    content: none;
    display: none;
}

.btn:hover {
    color: #000000;
    background-color: transparent;
    background-image: none;
    border-color: var(--gold-mid);
    border-top-color: #6b6b6b;
    border-left-color: #6b6b6b;
    border-right-color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
    transform: translateY(-2px);
    filter: none;
    box-shadow:
        0 5px 0 var(--gold-dark),
        0 9px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
    filter: none;
    box-shadow:
        0 1px 0 var(--gold-dark),
        0 2px 6px var(--gold-shadow),
        inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background-color: transparent;
    background-image: none;
    color: #000000;
    border: 1px solid var(--gold-mid);
    border-top-color: var(--gold-light);
    border-left-color: var(--gold-light);
    border-right-color: var(--gold-dark);
    border-bottom: 3px solid var(--gold-dark);
}

.btn-primary:hover {
    color: #000000;
    background-color: transparent;
    background-image: none;
    border-color: var(--gold-mid);
    border-top-color: #6b6b6b;
    border-left-color: #6b6b6b;
    border-right-color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
    transform: translateY(-2px);
    filter: none;
    box-shadow:
        0 5px 0 var(--gold-dark),
        0 9px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    background-image: none;
    color: #000000;
    border: 1px solid var(--gold-mid);
    border-top-color: var(--gold-light);
    border-left-color: var(--gold-light);
    border-right-color: var(--gold-dark);
    border-bottom: 3px solid var(--gold-dark);
}

.btn-secondary:hover {
    color: #000000;
    background-color: transparent;
    background-image: none;
    border-color: var(--gold-mid);
    border-top-color: #6b6b6b;
    border-left-color: #6b6b6b;
    border-right-color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
    transform: translateY(-2px);
    filter: none;
    box-shadow:
        0 5px 0 var(--gold-dark),
        0 9px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* Products Grid - Modern Card Design */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card > a {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gradient-abstract);
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-bottom: 2px solid var(--secondary);
    flex-shrink: 0;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.product-card > a > img {
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;
}

.product-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.product-badge,
.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.product-card .product-actions {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: var(--spacing-md);
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 0.35rem;
    padding: 0.55rem 0.5rem 0.65rem;
    text-align: center;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    min-height: 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.15rem 0.4rem;
    margin-top: var(--spacing-xs);
}

.product-card .product-price,
.popular-card .product-price,
.sale-card .product-price {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.2rem 0.45rem;
    background: var(--secondary);
    padding: 0.4rem 0.75rem 0.4rem 1.1rem;
    border-radius: 2px 8px 8px 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-xs);
    position: relative;
}

.product-card .product-price::before,
.popular-card .product-price::before,
.sale-card .product-price::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 0 1px var(--secondary);
}

.price,
.price-sale {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}

/* Rupee is in price HTML now — avoid CSS ::before so crawlers see ₹69,817 */
.price::before,
.price-sale::before {
    content: none;
}

.price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary);
}

.price-sale {
    color: var(--primary);
}

.price-original {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    line-height: 1.2;
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.price-original::before {
    content: none;
}

.price-on-request {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.2;
}

.product-discount-label {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: rgba(231, 29, 54, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    vertical-align: middle;
}

.search-result-item .price,
.search-result-item .price-sale {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.search-result-item .price-original {
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.search-result-item .price::before,
.search-result-item .price-original::before,
.search-result-item .price-sale::before {
    content: none;
}

.search-discount {
    margin-left: 0.35rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-detail .product-info h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    word-break: break-word;
}

.product-detail .product-info .product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .product-detail .product-info h1 {
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.35;
        display: block;
        overflow: visible;
        margin-bottom: 0.65rem;
        word-break: break-word;
        hyphens: auto;
    }

    .product-detail .product-info .product-price {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.35rem 0.5rem;
        text-align: center;
    }

    .product-detail .product-info .price,
    .product-detail .product-info .price-sale {
        font-size: 1.35rem !important;
    }

    .product-detail .product-info .price::before,
    .product-detail .product-info .price-sale::before {
        font-size: 1.05rem !important;
    }

    .product-detail .product-info .price-original {
        font-size: 0.95rem !important;
        flex: 0 0 auto !important;
        width: auto !important;
    }

    .product-detail .product-info .price-original::before {
        font-size: 0.85rem !important;
    }

    .product-detail .product-info .product-discount-label {
        margin-left: 0;
        font-size: 0.75rem;
        padding: 0.1rem 0.4rem;
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .product-detail .product-info h1 {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .product-detail .product-info .product-price {
        flex-wrap: nowrap;
        gap: 0.3rem 0.4rem;
    }

    .product-detail .product-info .price,
    .product-detail .product-info .price-sale {
        font-size: 1.25rem !important;
    }

    .product-detail .product-info .price::before,
    .product-detail .product-info .price-sale::before {
        font-size: 1rem !important;
    }

    .product-detail .product-info .price-original {
        font-size: 0.9rem !important;
        flex: 0 0 auto !important;
        width: auto !important;
    }

    .product-detail .product-info .product-discount-label {
        font-size: 0.7rem;
        padding: 0.08rem 0.35rem;
    }
}

/* Filters & Search Section */
.filters-section {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--spacing-lg) 0;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.1);
}

/* Cart & Wishlist Pages */
.cart-page,
.wishlist-page {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--spacing-lg) 0;
}

.cart-item,
.wishlist-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--gray-light);
    align-items: center;
}

.cart-item:last-child,
.wishlist-item:last-child {
    border-bottom: none;
}

.cart-item-image,
.wishlist-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.cart-item-info,
.wishlist-item-info {
    flex: 1;
}

.cart-item-actions,
.wishlist-item-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

/* Product detail options (Furniture BoutiQ-style) */
.product-shipping-note {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0.75rem 0 1rem;
}

.product-meta-line {
    margin: 0.35rem 0;
    color: var(--gray-dark);
}

.product-meta-availability {
    padding-bottom: 0.35rem;
    margin-bottom: 0;
}

.product-meta-availability .stock-instock {
    color: #137333;
    background: #E6F4EA;
}

.product-options {
    margin: 1.25rem 0;
}

.product-options-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
}

.product-options-table .product-option-group td {
    display: grid;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #d0d0d0;
    vertical-align: top;
}

.product-options-table .product-option-group:last-child td {
    border-bottom: none;
}

.product-option-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.product-option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-option-btn {
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--dark);
    border-radius: var(--radius-md);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 7.5rem;
    text-align: center;
}

.product-option-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-option-btn.active {
    border-color: var(--primary);
    background: rgba(217, 0, 0, 0.08);
    color: var(--primary);
    box-shadow: 0 0 0 1px rgba(217, 0, 0, 0.15);
}

.product-purchase-row {
    display: grid;
    gap: 1.25rem;
    margin: 1.75rem 0 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.product-quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-quantity-control {
    width: fit-content;
}

.product-quantity-input {
    width: 3rem;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    -moz-appearance: textfield;
}

.product-quantity-input::-webkit-outer-spin-button,
.product-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Product detail: big image + thumbnail slider under it */
.product-images {
    position: sticky;
    top: 100px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light);
    box-shadow: var(--shadow-md);
}

.product-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
}

.product-thumb-slider {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.product-thumb-viewport {
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
}

.product-thumb-viewport::-webkit-scrollbar {
    display: none;
}

.product-thumb-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.55rem;
    width: max-content;
    min-width: 100%;
}

.product-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--light);
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.product-thumb:hover {
    border-color: rgba(217, 0, 0, 0.45);
}

.product-thumb.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.product-thumb-arrow {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--radius-full);
    background: #000;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity var(--transition-fast), background var(--transition-fast);
}

.product-thumb-arrow:hover:not(:disabled) {
    background: #222;
}

.product-thumb-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

@media (max-width: 1024px) {
    .product-images {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-thumb-slider {
        grid-template-columns: 28px 1fr 28px;
    }

    .product-thumb {
        flex: 0 0 68px;
        width: 68px;
        height: 68px;
    }

    .product-thumb-arrow {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
}

.product-detail .product-actions,
.product-purchase-row .product-actions {
    position: static;
    opacity: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-detail .product-actions .btn,
.product-purchase-row .product-actions .btn {
    flex: 1 1 12rem;
}

.product-customize-btn {
    text-align: center;
}

.product-specs {
    margin: 1.5rem 0 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
}

.product-specs-accordion {
    margin: 1.5rem 0 2rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.product-spec-panel {
    border-bottom: 1px solid var(--gray-light);
}

.product-spec-panel:last-child {
    border-bottom: none;
}

.product-spec-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
    user-select: none;
}

.product-spec-summary::-webkit-details-marker {
    display: none;
}

.product-spec-summary:hover {
    background: rgba(217, 0, 0, 0.04);
}

.product-spec-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.product-spec-panel[open] .product-spec-chevron {
    transform: rotate(180deg);
}

.product-spec-content {
    padding: 0 1.25rem 1.15rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.product-spec-content p {
    margin: 0;
}

.product-specs h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--dark);
}

.product-specs-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.65rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

.cart-item-options,
.checkout-item-options {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .product-detail .product-actions .btn,
    .product-purchase-row .product-actions .btn {
        flex: 1 1 100%;
    }

    .product-options-table .product-option-group td {
        padding: 0.85rem 0.9rem;
    }

    .product-option-btn {
        min-width: calc(50% - 0.3rem);
        flex: 1 1 calc(50% - 0.3rem);
        padding: 0.55rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Home Page */
.home-hero {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(217, 0, 0, 0.1), rgba(255, 255, 255, 0.08));
}

.home-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.home-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

.gradient-text {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.home-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.home-hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.home-hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.home-hero-stats h3 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.home-hero-stats span {
    color: var(--gray);
    font-size: 0.85rem;
}

.home-hero-visual {
    display: grid;
    gap: var(--spacing-md);
}

.home-hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.home-hero-card.accent {
    background: var(--gradient-primary);
    color: var(--white);
}

.home-hero-card.accent p,
.home-hero-card.accent h4,
.home-hero-card.accent a {
    color: var(--white);
}

.home-hero-link {
    display: inline-flex;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.home-trust {
    padding: var(--spacing-lg) 0;
    background: var(--white);
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.home-trust-item {
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.home-trust-item h4 {
    margin-bottom: 0.5rem;
}

.home-trust-item p {
    color: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray);
}

.home-categories {
    padding: var(--spacing-2xl) 0;
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.category-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(203, 213, 225, 0.6);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--gray);
}

.home-collections {
    padding: var(--spacing-2xl) 0;
}

.home-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.home-collection-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(203, 213, 225, 0.6);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.home-collection-card.highlight {
    background: var(--gradient-secondary);
    color: var(--dark);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.home-collection-card.highlight h3 {
    color: var(--dark);
}

.home-collection-card.highlight p {
    color: var(--gray);
}

.home-collection-card a {
    display: inline-flex;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
}

.home-collection-card.highlight a {
    color: var(--white);
    background: var(--primary);
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
}

.home-collection-card.highlight a:hover {
    background: var(--dark);
    color: var(--white);
}

/* Home Page V2 */
.home-hero-banners {
    padding: var(--spacing-sm) 0;
    background: var(--white);
}

.home-hero-banners-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-md);
    align-items: stretch;
    min-height: clamp(340px, 38vw, 520px);
}

.home-hero-banners-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: var(--spacing-md);
    min-height: 0;
    height: 100%;
}

.home-hero-banner {
    display: block;
    position: relative;
    height: 100%;
    min-height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    background: var(--light);
}

.home-hero-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.home-hero-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-banner-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.home-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: var(--light);
}

.home-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.home-slide.is-active {
    opacity: 1;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: var(--light);
}

.home-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.15) 55%, rgba(15, 23, 42, 0) 100%);
    pointer-events: none;
}

.home-slide-content {
    position: absolute;
    left: 8%;
    bottom: 12%;
    max-width: 520px;
    color: var(--white);
    z-index: 2;
}

.home-slide-kicker {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-slide-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.home-slide-content p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.home-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
}

.home-slider-prev {
    left: 16px;
}

.home-slider-next {
    right: 16px;
}

.home-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
}

.home-slider-dot.is-active {
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.home-hero-v2--compact .home-hero-v2-grid {
    grid-template-columns: minmax(0, 1fr);
}

section.products-kids-hero + .products-page {
    padding-top: 0;
}

section.products-kids-hero + .products-page > .container {
    padding-top: var(--spacing-xl);
}

.home-hero-v2 {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(217, 0, 0, 0.12), rgba(255, 255, 255, 0.08));
}

.home-hero-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.home-hero-v2-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

.home-highlight {
    display: inline-block;
    color: var(--primary);
}

.home-hero-v2-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.home-kicker {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.home-hero-v2-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.home-hero-v2-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.home-hero-v2-stats strong {
    font-size: 1.6rem;
    display: block;
}

.home-hero-v2-stats span {
    color: var(--gray);
    font-size: 0.85rem;
}

.home-hero-v2-visual {
    display: grid;
    gap: var(--spacing-md);
}

.home-hero-v2-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.home-hero-v2-card.accent {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.home-hero-v2-card.accent a,
.home-hero-v2-card.accent p,
.home-hero-v2-card.accent h4 {
    color: var(--white);
}

.home-hero-v2-card a {
    display: inline-flex;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
}

.home-policies {
    padding: 0.75rem 0;
    background: var(--white);
}

.home-policies-inner {
    max-width: 1500px;
    text-align: center;
}

.home-policies-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f3b52;
    margin: 0 0 1rem;
}

.home-policies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .home-policies-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.home-policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-policy-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.625rem;
}

.home-policy-text {
    font-size: 0.8125rem;
    color: #555;
    line-height: 1.4;
}

.home-category {
    padding: var(--spacing-2xl) 0;
    background: var(--light);
}

.home-category-slider {
    position: relative;
    margin-top: var(--spacing-xl);
    --category-per-view: 5;
    --category-gap: var(--spacing-lg);
}

.home-category-viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.home-category-slider.is-mobile-grid .home-category-arrow,
.home-category-slider.is-mobile-grid .home-category-dots {
    display: none;
}

.home-category-slider.is-mobile-grid .home-category-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.18) rgba(0, 0, 0, 0.06);
}

.home-category-slider.is-mobile-grid .home-category-viewport::-webkit-scrollbar {
    height: 8px;
}

.home-category-slider.is-mobile-grid .home-category-viewport::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.home-category-slider.is-mobile-grid .home-category-viewport::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
}

.home-category-slider.is-mobile-grid .home-category-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100vw - 48px) / 3);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    width: max-content;
    max-width: none;
    transform: none !important;
    transition: none !important;
    will-change: auto;
}

.home-category-slider.is-mobile-grid .home-category-card {
    flex: none;
    width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    touch-action: pan-x pan-y;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.home-category-slider.is-mobile-grid .home-category-card:hover {
    transform: none;
    box-shadow: none;
}

.home-category-slider.is-mobile-grid .home-category-card-image {
    aspect-ratio: 1;
    max-height: 100px;
    border-radius: var(--radius-md);
}

.home-category-slider.is-mobile-grid .home-category-card-body {
    padding: 0.5rem 0 0;
    text-align: center;
}

.home-category-slider.is-mobile-grid .home-category-card-body h3 {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.home-category-slider.is-mobile-grid .home-category-card-body p {
    display: none;
}

.home-category-track {
    display: flex;
    gap: var(--category-gap);
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-category-card {
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    text-decoration: none;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(203, 213, 225, 0.6);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - (var(--category-gap) * (var(--category-per-view) - 1))) / var(--category-per-view));
    min-width: 0;
}

.home-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.home-category-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.home-category-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.14) 100%);
    opacity: 0.35;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.home-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.home-category-card:hover .home-category-card-image img,
.home-category-card:focus-visible .home-category-card-image img,
.home-category-card:active .home-category-card-image img {
    transform: scale(1.06);
}

.home-category-card:hover .home-category-card-image::after,
.home-category-card:focus-visible .home-category-card-image::after,
.home-category-card:active .home-category-card-image::after {
    opacity: 0.1;
}

.home-category-card-body {
    padding: var(--spacing-md) var(--spacing-lg);
    flex: 1;
}

.home-category-card-body h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.home-category-card-body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.home-category-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(203, 213, 225, 0.8);
    background: var(--white);
    color: var(--dark);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-base), color var(--transition-base), opacity var(--transition-base);
}

.home-category-arrow:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.home-category-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.home-category-prev {
    left: -0.35rem;
}

.home-category-next {
    right: -0.35rem;
}

.home-category-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.home-category-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.55);
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition-base), background var(--transition-base);
}

.home-category-dot.is-active {
    background: var(--primary);
    transform: scale(1.15);
}

.home-collection-strip {
    padding: var(--spacing-2xl) 0;
}

.home-collection-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.home-collection-tile {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.home-collection-tile.highlight {
    background: var(--gradient-secondary);
    color: var(--dark);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.home-collection-tile.highlight h3 {
    color: var(--dark);
}

.home-collection-tile.highlight p {
    color: var(--gray);
}

.home-collection-tile a {
    display: inline-flex;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
}

.home-collection-tile.highlight a {
    color: var(--white);
    background: var(--primary);
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
}

.home-collection-tile.highlight a:hover {
    background: var(--dark);
    color: var(--white);
}

.home-popular {
    padding: var(--spacing-2xl) 0;
}

.home-made-to-order {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: #faf8f5;
}

.home-made-to-order-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: var(--spacing-xl);
    align-items: center;
}

.home-made-to-order-media {
    min-width: 0;
}

.home-made-to-order-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-made-to-order-content {
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-made-to-order-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.home-made-to-order-lead,
.home-made-to-order-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: var(--spacing-md);
}

.home-made-to-order-lead em {
    font-style: italic;
}

.home-made-to-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin: var(--spacing-sm) auto 0;
    padding: 0.95rem 2.25rem;
    color: #000000;
    text-shadow: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    background-image: none;
    border: 1px solid var(--gold-mid);
    border-top-color: var(--gold-light);
    border-left-color: var(--gold-light);
    border-right-color: var(--gold-dark);
    border-bottom: 3px solid var(--gold-dark);
    border-radius: var(--radius-full);
    transition: filter var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
    box-shadow:
        0 3px 0 var(--gold-dark),
        0 5px 12px var(--gold-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.home-made-to-order-btn::before,
.home-made-to-order-btn::after {
    content: none;
    display: none;
}

.home-made-to-order-btn:hover {
    color: #000000;
    background-color: transparent;
    background-image: none;
    border-color: var(--gold-mid);
    border-top-color: #6b6b6b;
    border-left-color: #6b6b6b;
    border-right-color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
    filter: none;
    transform: translateY(-1px);
    box-shadow:
        0 5px 0 var(--gold-dark),
        0 9px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.home-cta {
    padding: var(--spacing-2xl) 0;
    background: var(--light);
}

.home-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.home-cta-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.home-features {
    padding: var(--spacing-2xl) 0;
    background:
        radial-gradient(ellipse 70% 80% at 10% 20%, rgba(231, 29, 54, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 70% at 95% 85%, rgba(141, 179, 85, 0.2), transparent 50%),
        #111111;
    color: var(--white);
}

.home-features .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
    background-clip: border-box;
    -webkit-background-clip: border-box;
}

.home-features .section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.home-feature {
    background: rgba(255, 255, 255, 0.06);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid var(--primary);
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.home-feature:nth-child(even) {
    border-top-color: var(--accent);
}

.home-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.home-feature h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.home-feature p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

/* Customer reviews (Alankaram-style) */
.home-reviews {
    padding: var(--spacing-2xl) 0 0.5cm;
    background: #f5f5f5;
}

.home-reviews-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.home-reviews-slider {
    position: relative;
    margin-top: var(--spacing-xl);
    --reviews-per-view: 3;
    --reviews-gap: var(--spacing-lg);
    padding: 0 2.75rem;
}

.home-reviews-viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.home-reviews-track {
    display: flex;
    gap: var(--reviews-gap);
    transition: transform 0.5s ease;
    will-change: transform;
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.home-review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: none;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - (var(--reviews-gap) * (var(--reviews-per-view) - 1))) / var(--reviews-per-view));
    min-width: 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.home-review-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.home-review-visual {
    display: block;
    aspect-ratio: 1;
    margin-bottom: 0;
    overflow: hidden;
    background: #e2e8f0;
}

.home-review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.45);
}

.home-review-detail {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 0.65rem 0.55rem 0.75rem;
}

.home-review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
    line-height: 1;
}

.home-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(203, 213, 225, 0.8);
    background: var(--white);
    color: var(--dark);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-base), color var(--transition-base), opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.home-reviews-arrow span {
    display: block;
    margin-top: -2px;
}

.home-reviews-arrow:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.home-reviews-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.home-reviews-prev {
    left: 0;
}

.home-reviews-next {
    right: 0;
}

.home-reviews-dots {
    display: none;
}

.home-reviews-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.55);
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition-base), background var(--transition-base);
}

.home-reviews-dot.is-active {
    background: var(--primary);
    transform: scale(1.15);
}

.home-review-card:hover {
    box-shadow: var(--shadow-md);
}

.home-review-quote {
    margin: 0 0 1rem;
    flex: 1;
}

.home-review-quote-icon {
    display: none;
}

.home-review-quote p {
    margin: 0;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.home-review-author {
    margin-top: auto;
    padding-top: 0.75rem;
}

.home-review-author cite {
    font-style: normal;
    font-weight: 700;
    color: var(--dark);
    display: block;
    font-size: 0.95rem;
}

.home-review-location {
    display: block;
    margin-top: 0.2rem;
    color: #64748b;
    font-size: 0.85rem;
}

.home-newsletter {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.home-newsletter-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.home-newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.home-newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.home-newsletter-form .btn,
.newsletter-form .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Products Page */
.products-page {
    padding: var(--spacing-2xl) 0 0;
}

.products-page .products-grid,
.products-page .collection-products-grid {
    margin-top: var(--spacing-xl);
    margin-bottom: 0;
}

.products-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.products-page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.products-page-header--no-desc h1 {
    margin-bottom: 0;
}

.products-page-header p {
    color: var(--gray);
}

.products-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-page .product-actions {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0 var(--spacing-md) var(--spacing-md);
    opacity: 1;
}

.products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pagination.products-pagination {
    margin: 0;
}

.products-empty {
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

/* Missing / upcoming product — notify me */
.product-unavailable {
    padding: var(--spacing-2xl) 0;
    display: flex;
    justify-content: center;
}

.product-unavailable-card {
    width: min(100%, 560px);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
}

.product-unavailable-kicker {
    margin: 0 0 0.5rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-unavailable-card h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark);
    line-height: 1.25;
}

.product-unavailable-lead {
    margin: 0 0 1.5rem;
    color: var(--gray);
    line-height: 1.55;
}

.product-notify-form {
    text-align: left;
}

.product-notify-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.product-notify-grid {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.product-notify-grid label {
    display: grid;
    gap: 0.35rem;
}

.product-notify-grid label span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.product-notify-grid label span em {
    font-style: normal;
    font-weight: 500;
    color: #6b7280;
}

.product-notify-grid input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font: inherit;
    color: var(--dark);
    background: #fff;
}

.product-notify-grid input:focus {
    outline: 2px solid rgba(231, 29, 54, 0.25);
    border-color: var(--primary);
}

.product-notify-submit {
    width: 100%;
    justify-content: center;
}

.product-notify-status {
    margin: 0.85rem 0 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.product-notify-status.is-success {
    color: #0A7C6E;
}

.product-notify-status.is-error {
    color: var(--primary);
}

.product-unavailable-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .product-unavailable-actions {
        flex-direction: column;
    }

    .product-unavailable-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Checkout Page */
.checkout-page {
    padding: var(--spacing-2xl) 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.checkout-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.checkout-muted {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.checkout-items {
    display: grid;
    gap: var(--spacing-md);
}

.checkout-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: var(--spacing-md);
    align-items: center;
}

.checkout-item img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.checkout-total {
    font-weight: 600;
}

.checkout-totals {
    margin-top: var(--spacing-md);
    border-top: 1px solid var(--gray-light);
    padding-top: var(--spacing-md);
    display: grid;
    gap: 0.5rem;
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-coupon {
    margin: var(--spacing-md) 0;
}

.checkout-coupon-row {
    display: flex;
    gap: var(--spacing-sm);
}

.checkout-coupon-message {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.checkout-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(203, 213, 225, 0.6);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.checkout-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.checkout-form label.full {
    grid-column: 1 / -1;
}

.checkout-form input {
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: var(--radius-md);
    padding: 0.7rem 0.9rem;
}

.home-consultation {
    padding: var(--spacing-2xl) 0;
    background: var(--light);
}

.home-consultation-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.home-consultation-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.sale-products-section {
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}


.home-sale-products .sale-card {
    border: none;
}
.sale-card {
    border: 2px solid var(--secondary);
}

.discount-badge,
.product-badge.discount-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    right: auto;
    background: #be8a4d;
    color: #fff;
    padding: 0.35rem 0.55rem;
    border-radius: 0.35rem;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    z-index: 3;
    pointer-events: none;
}

.why-choose-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.newsletter-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.newsletter-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.newsletter-text h2 {
    margin-bottom: var(--spacing-sm);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Popular Products */
.popular-products-section {
    padding: var(--spacing-2xl) 0;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: left;
}

.popular-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.popular-card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.popular-badge {
    background: var(--primary);
    color: var(--white);
}

.new-badge {
    background: var(--accent);
    color: var(--white);
}

.bestseller-badge {
    background: var(--primary-dark);
    color: var(--secondary);
}

.home-section-view-all {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.home-whats-new {
    padding-top: 0;
    padding-bottom: var(--spacing-lg);
    background: #ffffff;
}

.home-whats-new .section-header {
    margin-bottom: 0;
}

.home-whats-new .section-title {
    margin-bottom: 0;
}

.home-whats-new .products-grid,
.home-whats-new .popular-grid,
.home-whats-new .home-grid-8,
.home-whats-new .shop-products-grid {
    margin-top: 0;
    margin-bottom: 0;
}

.home-bestseller .section-header,
.home-popular-products .section-header {
    margin-bottom: 0;
}

.home-bestseller .section-title,
.home-popular-products .section-title {
    margin-bottom: 0;
}

.home-bestseller .products-grid,
.home-bestseller .popular-grid,
.home-bestseller .home-grid-8,
.home-bestseller .shop-products-grid,
.home-popular-products .products-grid,
.home-popular-products .popular-grid,
.home-popular-products .home-grid-8,
.home-popular-products .shop-products-grid {
    margin-top: 0;
    margin-bottom: 0;
}

.home-sale-products .section-header,
.sale-products-section .section-header {
    margin-bottom: 0;
}

.home-sale-products .section-title,
.sale-products-section .section-title {
    margin-bottom: 0.25rem;
}

.home-sale-products .section-subtitle,
.sale-products-section .section-subtitle {
    margin-bottom: 0;
    margin-top: 0;
}

.home-sale-products .products-grid,
.home-sale-products .popular-grid,
.home-sale-products .home-grid-8,
.home-sale-products .shop-products-grid,
.sale-products-section .products-grid,
.sale-products-section .popular-grid {
    margin-top: 0;
    margin-bottom: 0;
}

.home-bestseller,
.home-popular-products, .home-sale-products {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-2xl);
    background: #ffffff;
}

.home-grid-8 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

/* Product cards — bysuryavanshi-style (What's New / Bestseller / shop) */
.shop-product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0.8rem;
    overflow: visible;
    padding: 0 !important;
    height: 100%;
}

.shop-product-card > a {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
    background: transparent !important;
    border-radius: 0;
}

.home-bestseller .shop-product-card,
    .home-whats-new .shop-product-card,
    .home-popular-products .shop-product-card,
.home-sale-products .shop-product-card{
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0.8rem;
    overflow: visible;
}

.home-bestseller .shop-product-card::before,
.home-whats-new .shop-product-card::before,
.home-popular-products .shop-product-card::before,
.home-sale-products .shop-product-card::before{
    display: none;
}

.home-bestseller .shop-product-card:hover,
.home-whats-new .shop-product-card:hover,
.home-popular-products .shop-product-card:hover,
.home-sale-products .shop-product-card:hover{
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.home-bestseller .shop-product-card .product-image-wrapper,
.home-whats-new .shop-product-card .product-image-wrapper,
.home-popular-products .shop-product-card .product-image-wrapper,
.home-sale-products .shop-product-card .product-image-wrapper{
    aspect-ratio: 4 / 5;
    background: #ffffff;
    border-bottom: none;
    border-radius: 0.8rem;
}

.home-bestseller .shop-product-card img,
.home-whats-new .shop-product-card img,
.home-popular-products .shop-product-card img,
.home-sale-products .shop-product-card img{
    object-fit: cover;
    object-position: center;
}

.home-bestseller .shop-product-card:hover img,
.home-whats-new .shop-product-card:hover img,
.home-popular-products .shop-product-card:hover img,
.home-sale-products .shop-product-card:hover img{
    transform: scale(1.03);
}

.home-bestseller .shop-product-card .product-info,
.home-whats-new .shop-product-card .product-info,
.home-popular-products .shop-product-card .product-info,
.home-sale-products .shop-product-card .product-info{
    align-items: flex-start;
    text-align: left;
    padding: 1rem 0.15rem 0.35rem;
    gap: 0.4rem;
}

.home-bestseller .shop-product-card h3,
.home-whats-new .shop-product-card h3,
.home-popular-products .shop-product-card h3,
.home-sale-products .shop-product-card h3{
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #211;
    line-height: 1.35;
    min-height: 2.6em;
}

.home-bestseller .product-card-desc,
    .home-whats-new .product-card-desc,
    .home-popular-products .product-card-desc,
.home-sale-products .product-card-desc{
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.home-bestseller .shop-product-card .product-price,
.home-whats-new .shop-product-card .product-price,
.home-popular-products .shop-product-card .product-price,
.home-sale-products .shop-product-card .product-price{
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0.15rem;
    border-radius: 0;
}

.home-bestseller .shop-product-card .product-price::before,
.home-whats-new .shop-product-card .product-price::before,
.home-popular-products .shop-product-card .product-price::before,
.home-sale-products .shop-product-card .product-price::before{
    display: none;
}

.home-bestseller .shop-product-card .price,
.home-bestseller .shop-product-card .price-sale,
.home-whats-new .shop-product-card .price,
.home-whats-new .shop-product-card .price-sale,
.home-popular-products .shop-product-card .price,
.home-sale-products .shop-product-card .price,
.home-popular-products .shop-product-card .price-sale,
.home-sale-products .shop-product-card .price-sale{
    font-size: 1.05rem;
    font-weight: 700;
    color: #211;
    background: none;
    -webkit-text-fill-color: #211;
}

.home-bestseller .shop-product-card .price-original,
.home-whats-new .shop-product-card .price-original,
.home-popular-products .shop-product-card .price-original,
.home-sale-products .shop-product-card .price-original{
    font-size: 0.9rem;
    color: #8a8a8a;
    text-decoration: line-through;
}

.home-bestseller .discount-badge,
    .home-whats-new .discount-badge,
    .home-popular-products .discount-badge,
.home-sale-products .discount-badge{
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    background: #be8a4d;
    color: #fff;
    border-radius: 0.35rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.55rem;
    letter-spacing: 0.03em;
}

.home-bestseller .bestseller-badge {
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    background: #211;
    color: #fff;
    border-radius: 0.35rem;
}

/* Shop listing — same collection card treatment */
.collection-products-grid .shop-product-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0.8rem;
    overflow: visible;
}

.collection-products-grid .shop-product-card::before {
    display: none;
}

.collection-products-grid .shop-product-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.collection-products-grid .shop-product-card .product-image-wrapper {
    aspect-ratio: 4 / 5;
    background: #ffffff;
    border-bottom: none;
    border-radius: 0.8rem;
}

.collection-products-grid .shop-product-card img {
    object-fit: cover;
    object-position: center;
}

.collection-products-grid .shop-product-card:hover img {
    transform: scale(1.03);
}

.collection-products-grid .shop-product-card .product-info {
    align-items: flex-start;
    text-align: left;
    padding: 1rem 0.15rem 0.35rem;
    gap: 0.4rem;
}

.collection-products-grid .shop-product-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #211;
    line-height: 1.35;
    min-height: 2.6em;
}

.collection-products-grid .product-card-desc {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.collection-products-grid .shop-product-card .product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0.15rem;
    border-radius: 0;
}

.collection-products-grid .shop-product-card .product-price::before {
    display: none;
}

.collection-products-grid .shop-product-card .price,
.collection-products-grid .shop-product-card .price-sale {
    font-size: 1.05rem;
    font-weight: 700;
    color: #211;
    background: none;
    -webkit-text-fill-color: #211;
}

.collection-products-grid .shop-product-card .price-original {
    font-size: 0.9rem;
    color: #8a8a8a;
    text-decoration: line-through;
}

.collection-products-grid .discount-badge {
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    background: #be8a4d;
    color: #fff;
    border-radius: 0.35rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.55rem;
    letter-spacing: 0.03em;
}

.popular-products-section .product-card h3 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: var(--font-heading);
    font-weight: 700;
    word-break: break-word;
}

@media (max-width: 900px) {
    .home-hero-v2-grid,
    .home-cta-grid,
    .home-newsletter-content,
    .home-made-to-order-grid {
        grid-template-columns: 1fr;
    }

    .home-made-to-order-grid {
        gap: 1cm;
    }

    .home-made-to-order-media {
        order: 1;
    }

    .home-made-to-order-content {
        order: 2;
        text-align: center;
        align-items: center;
    }

    .home-made-to-order-btn {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-v2-visual,
    .home-collection-strip-grid,
    .home-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .home-policies-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--spacing-md);
    }

    .home-reviews-slider {
        --reviews-per-view: 2;
        --reviews-gap: 8px;
        padding: 0 1.25rem;
    }

    .home-reviews .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .home-review-detail {
        padding: 0.5rem 0.4rem 0.6rem;
    }

    .home-review-image {
        transform: scale(1.6);
    }

    .home-review-quote p {
        font-size: 0.8rem;
        line-height: 1.45;
        -webkit-line-clamp: 5;
    }

    .home-review-stars {
        font-size: 0.75rem;
        margin-bottom: 0.45rem;
    }

    .home-review-author cite {
        font-size: 0.82rem;
    }

    .home-review-location {
        font-size: 0.75rem;
    }

    .home-category-slider .home-category-arrow,
    .home-category-slider .home-category-dots {
        display: none;
    }

    .home-category-slider .home-category-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        padding-bottom: 12px;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.18) rgba(0, 0, 0, 0.06);
    }

    .home-category-slider .home-category-viewport::-webkit-scrollbar {
        height: 8px;
    }

    .home-category-slider .home-category-viewport::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.12);
        border-radius: 8px;
    }

    .home-category-slider .home-category-viewport::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 8px;
    }

    .home-category-slider .home-category-track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100vw - 48px) / 3);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        width: max-content;
        max-width: none;
        transform: none !important;
        transition: none !important;
        will-change: auto;
    }

    .home-category-slider .home-category-card {
        flex: none;
        width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        touch-action: pan-x pan-y;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    .home-category-card:hover {
        transform: none;
        box-shadow: none;
    }

    .home-category-card-image {
        aspect-ratio: 1;
        max-height: 100px;
        border-radius: var(--radius-md);
    }

    .home-category-card-body {
        padding: 0.5rem 0 0;
        text-align: center;
    }

    .home-category-card-body h3 {
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1.3;
        margin: 0;
    }

    .home-category-card-body p {
        display: none;
    }

    .home-newsletter-form {
        flex-direction: column;
    }

    .popular-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .home-grid-8 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .home-hero-grid,
    .home-trust-grid,
    .home-collections-grid,
    .home-consultation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--spacing-md);
    }

    .home-hero-stats,
    .home-hero-v2-stats {
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .products-grid--3,
    .products-grid,
    .popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--spacing-md);
    }

    .products-grid.home-grid-8,
    .popular-grid.home-grid-8,
    .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

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

    .home-hero-banners {
        padding: 0 0 0.35rem;
    }

    .home-hero-banners-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        gap: var(--spacing-sm);
    }

    .home-hero-banner--primary {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .home-hero-banners-stack {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: var(--spacing-sm);
    }

    .home-hero-banners-stack .home-hero-banner {
        aspect-ratio: 4 / 3;
        height: auto;
    }
}

@media (max-width: 600px) {
    .products-grid,
    .products-grid--3,
    .popular-grid,
    .categories-grid,
    .home-collection-strip-grid,
    .home-features-grid,
    .home-collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .products-grid.home-grid-8,
    .popular-grid.home-grid-8,
    .home-grid-8,
    .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .collection-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .home-policies-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--spacing-sm);
    }

    .home-reviews-slider {
        --reviews-per-view: 2;
        --reviews-gap: 6px;
        padding: 0 1rem;
    }

    .home-reviews-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .home-review-detail {
        padding: 0.45rem 0.35rem 0.55rem;
    }

    .home-review-image {
        transform: scale(1.7);
    }

    .home-review-quote p {
        font-size: 0.76rem;
        line-height: 1.4;
        -webkit-line-clamp: 4;
    }

    .home-review-stars {
        font-size: 0.7rem;
        margin-bottom: 0.35rem;
    }

    .home-review-author {
        padding-top: 0.5rem;
    }

    .home-review-author cite {
        font-size: 0.78rem;
    }

    .home-review-location {
        font-size: 0.72rem;
    }

    .home-category-prev {
        left: 0;
    }

    .home-category-next {
        right: 0;
    }

    .home-reviews-prev {
        left: 0;
    }

    .home-reviews-next {
        right: 0;
    }

    .product-card .product-info,
    .popular-card .product-info {
        padding: 0.6rem 0.65rem;
    }

    .home-bestseller .shop-product-card .product-info,
    .home-whats-new .shop-product-card .product-info,
    .collection-products-grid .shop-product-card .product-info {
        padding: 0.45rem 0.05rem 0.25rem;
        align-items: flex-start;
        text-align: left;
        gap: 0.25rem;
    }

    .product-card .product-info h3,
    .popular-card .product-info h3 {
        font-family: var(--font-heading);
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 0;
    }

    .home-bestseller .shop-product-card h3,
    .home-whats-new .shop-product-card h3,
    .collection-products-grid .shop-product-card h3 {
        font-size: 0.74rem;
        font-weight: 600;
        min-height: 0;
        -webkit-line-clamp: 2;
    }

    .home-bestseller .product-card-desc,
    .home-whats-new .product-card-desc,
    .home-popular-products .product-card-desc,
.home-sale-products .product-card-desc,
    .collection-products-grid .product-card-desc {
        font-size: 0.64rem;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        color: #f5e6a8;
    }

    .product-card .product-price,
    .popular-card .product-price {
        gap: 0.1rem 0.3rem;
        margin-top: 0.15rem;
    }

    .home-bestseller .shop-product-card .product-price,
    .home-whats-new .shop-product-card .product-price,
    .collection-products-grid .shop-product-card .product-price {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 0.15rem 0.35rem;
    }

    .home-bestseller .shop-product-card .product-price::before,
    .home-whats-new .shop-product-card .product-price::before,
    .collection-products-grid .shop-product-card .product-price::before {
        display: none !important;
    }

    .product-card .price,
    .product-card .price-sale,
    .popular-card .price,
    .popular-card .price-sale {
        font-size: 0.9rem;
    }

    .home-bestseller .shop-product-card .price,
    .home-bestseller .shop-product-card .price-sale,
    .home-whats-new .shop-product-card .price,
    .home-whats-new .shop-product-card .price-sale,
    .collection-products-grid .shop-product-card .price,
    .collection-products-grid .shop-product-card .price-sale {
        font-size: 0.82rem;
        color: #211 !important;
        background: none !important;
        -webkit-text-fill-color: #211 !important;
    }

    .product-card .price-original,
    .popular-card .price-original {
        font-size: 0.72rem;
        flex: 1 1 100%;
    }

    .home-bestseller .shop-product-card .price-original,
    .home-whats-new .shop-product-card .price-original,
    .collection-products-grid .shop-product-card .price-original {
        flex: 0 1 auto !important;
        width: auto !important;
        font-size: 0.68rem;
    }

    .home-policy-text,
    .home-feature p,
    .home-review-card p {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--spacing-md) 0 var(--spacing-md);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-top > * {
    min-width: 0;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: -0.5cm;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand {
    margin-top: 0;
    padding-top: 0;
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
}

.footer-contact {
    display: grid;
    gap: 0.3cm;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--gray-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.25rem 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.footer-column h4 {
    margin-top: -0.5cm;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin: 0.35rem 0;
}

.footer-column a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-newsletter h4 {
    margin-top: -0.5cm;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: var(--gray-light);
    margin-bottom: var(--spacing-sm);
}

.footer-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer-form input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.footer-form .btn {
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    background-color: transparent;
    background-image: none;
    border: 1px solid #d0d0d0;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    border-right-color: #9a9a9a;
    border-bottom: 3px solid #9a9a9a;
    box-shadow:
        0 3px 0 #9a9a9a,
        0 5px 12px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.footer-form .btn:hover {
    color: #ffffff;
    background-color: transparent;
    background-image: none;
    border-color: #d0d0d0;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    border-right-color: #8a8a8a;
    border-bottom-color: #8a8a8a;
    filter: none;
    transform: translateY(-2px);
    box-shadow:
        0 5px 0 #8a8a8a,
        0 9px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.footer-form .btn:active {
    filter: none;
    transform: translateY(1px);
    border-bottom-width: 1px;
    box-shadow:
        0 1px 0 #8a8a8a,
        0 2px 6px rgba(0, 0, 0, 0.35),
        inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.footer-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-icon-instagram {
    width: 30px;
    height: 30px;
}

.footer-icon-facebook {
    width: 45px;
    height: 45px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    text-align: left;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-brand,
    .footer-links,
    .footer-newsletter {
        width: 100%;
        min-width: 0;
        padding-top: var(--spacing-lg);
        margin-top: var(--spacing-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brand {
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--spacing-sm);
        padding-left: 0.75rem;
    }

    .footer-column {
        width: auto;
        min-width: 0;
    }

    .footer-column h4 {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 600px) {
    .footer {
        margin-top: 0.75rem;
        padding: calc(var(--spacing-sm) - 0.5cm) 0 var(--spacing-md);
    }

    .footer-brand h3 {
        margin-top: -1cm;
    }

    .footer-contact {
        gap: 0.3cm;
    }

    .footer-contact a {
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .footer-form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .footer-social {
        justify-content: flex-start;
    }
}


/* Responsive: tablets & phones */
@media (max-width: 1024px) {
    .header-top-inner {
        justify-content: stretch;
    }

    .header-top-bar {
        padding: 0.25rem 0;
    }

    .navbar {
        padding: 0.45rem 0;
    }

    .header-top-links {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.35rem;
    }

    .header-top-links a {
        display: block;
        font-size: clamp(0.68rem, 2.8vw, 0.82rem);
        white-space: nowrap;
    }

    .header-top-links a:nth-child(1) {
        text-align: left;
    }

    .header-top-links a:nth-child(2) {
        text-align: center;
    }

    .header-top-links a:nth-child(3) {
        text-align: right;
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        position: relative;
        min-height: 3.75rem;
    }

    .navbar .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }

    /* True viewport center: ignore uneven left/right control widths */
    .navbar .nav-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        min-width: 0;
        max-width: min(280px, 52vw);
        width: auto;
        height: auto;
        line-height: 0;
        text-align: center;
    }

    .navbar .nav-brand a {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        line-height: 0;
    }

    .navbar .nav-brand a:hover {
        transform: none;
    }

    .navbar .nav-brand .site-logo {
        display: block;
        height: 3.75rem;
        max-width: min(220px, 50vw);
        width: auto;
        margin: 0;
    }

    .navbar .nav-actions {
        position: relative;
        z-index: 2;
        margin-left: auto;
        gap: 0.15rem;
        flex-shrink: 0;
    }

    .nav-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .nav-icon svg {
        width: 16px;
        height: 16px;
    }

    .nav-icon-badge {
        top: -4px;
        right: -4px;
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
        min-width: 16px;
    }

    .search-panel {
        position: fixed;
        top: var(--site-header-offset, 6.5rem);
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
    }

    /*
     * Slide-out panel: backdrop-filter on <header> makes fixed descendants use the
     * header as containing block, so top + bottom: 0 collapses the panel. Use explicit height.
     */
    .nav-menu {
        position: fixed;
        top: var(--site-header-offset, 6.5rem);
        left: 0;
        right: 0;
        bottom: auto;
        height: calc(100vh - var(--site-header-offset, 6.5rem));
        height: calc(100dvh - var(--site-header-offset, 6.5rem));
        box-sizing: border-box;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-lg);
        padding-bottom: max(var(--spacing-lg), env(safe-area-inset-bottom, 0px));
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        gap: 0;
        z-index: 1100;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .menu-item {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .nav-menu .menu-link {
        padding: 0.65rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .menu-item.has-children > .menu-link::after {
        display: none;
    }

    .submenu-toggle {
        display: inline-flex;
        position: relative;
        min-width: 44px;
        min-height: 44px;
    }

    .mega-menu,
    .mega-menu--small {
        position: static;
        display: none;
        width: 100%;
        margin-top: var(--spacing-sm);
        box-shadow: none;
        border: none;
        padding: var(--spacing-md) 0;
    }

    .menu-item:hover .mega-menu,
    .menu-item.mega-open .mega-menu,
    .menu-item:focus-within .mega-menu {
        display: none;
    }

    .menu-item.open .mega-menu,
    .menu-item.open .mega-menu--small {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--spacing-md);
    }

    .search-box,
    .filter-group select,
    .filter-group input,
    .checkout-form input,
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .track-order-form input,
    .newsletter-form input,
    .home-newsletter-form input,
    .footer-form input {
        font-size: 1rem;
    }

    .products-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-coupon-row {
        flex-direction: column;
    }

    .checkout-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--spacing-md);
    }

    .checkout-item img {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .checkout-item > div {
        flex: 1 1 12rem;
        min-width: 0;
    }

    .checkout-item > strong {
        flex: 1 0 auto;
        text-align: right;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        padding: 0.2rem 0;
    }

    header {
        margin-bottom: 0;
    }

    .footer-brand h3 {
        margin-top: -1cm;
    }

    .footer {
        padding-top: calc(var(--spacing-md) - 0.5cm);
    }

    .footer-contact {
        gap: 0.3cm;
    }

    .footer-contact a {
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .navbar {
        padding: 0.35rem 0;
    }

    .navbar .nav-brand .site-logo {
        height: 3.25rem;
        max-width: min(200px, 48vw);
    }

    .home-hero-banners {
        padding: 1cm 0 1cm;
        background: #ffffff;
    }

    .home-category,
    .home-popular,
    .sale-products-section,
    .home-cta,
    .home-policies,
    .home-whats-new,
    .home-bestseller,
    .home-popular-products,
    .home-sale-products {
        background: #ffffff;
    }

    .home-hero-v2 {
        background: linear-gradient(135deg, rgba(217, 0, 0, 0.12), rgba(255, 255, 255, 0.08));
    }

    .home-made-to-order {
        background: #faf8f5;
    }

    .home-reviews {
        background: #f5f5f5;
    }

    .home-features {
        background:
            radial-gradient(ellipse 70% 80% at 10% 20%, rgba(231, 29, 54, 0.22), transparent 55%),
            radial-gradient(ellipse 60% 70% at 95% 85%, rgba(141, 179, 85, 0.2), transparent 50%),
            #111111;
    }

    .home-hero-v2,
    .home-category,
    .home-popular,
    .home-made-to-order,
    .home-features,
    .home-reviews,
    .sale-products-section,
    .home-cta {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .home-features {
        padding-top: 1cm;
        padding-bottom: 1cm;
    }

    .home-category {
        padding-top: 0.5cm;
        padding-bottom: 0;
        background: #ffffff;
    }

    .home-category .section-header,
    .home-category .section-title {
        margin-top: 0;
        padding-top: 0;
    }

    .home-reviews {
        padding-bottom: 0.5cm;
        background: #f5f5f5;
    }

    .home-reviews-slider {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .home-policies {
        padding: 0.3cm 0 0.3rem;
    }

    .home-whats-new {
        margin-top: 0;
        padding-top: 1cm;
        padding-bottom: 0;
        background: #ffffff;
    }

    .home-whats-new .products-grid,
    .home-whats-new .popular-grid,
    .home-whats-new .home-grid-8,
    .home-whats-new .shop-products-grid {
        margin-top: 0.3cm;
        margin-bottom: 0.3cm;
    }

    .home-bestseller,
    .home-popular-products,
    .home-sale-products,
    .sale-products-section {
        margin-top: 0;
        padding-top: 1cm;
        padding-bottom: 0;
        background: #ffffff;
    }

    .home-sale-products,
    .sale-products-section {
        background: #ffffff;
    }

    .home-popular-products {
        background: #ffffff;
    }

    .home-popular-products .products-grid,
    .home-popular-products .popular-grid,
    .home-popular-products .home-grid-8,
    .home-popular-products .shop-products-grid {
        margin-top: 0.5cm;
        background: #ffffff;
    }

    .home-sale-products .products-grid,
    .home-sale-products .popular-grid,
    .home-sale-products .home-grid-8,
    .home-sale-products .shop-products-grid,
    .sale-products-section .products-grid,
    .sale-products-section .popular-grid {
        margin-top: 0.5cm;
        background: #ffffff;
    }

    .section-header {
        margin-bottom: 0.3rem;
    }

    .section-title {
        margin-bottom: 0.2rem;
    }

    .home-whats-new .section-header,
    .home-bestseller .section-header,
    .home-popular-products .section-header,
    .home-sale-products .section-header,
    .sale-products-section .section-header {
        margin-bottom: 0;
    }

    .home-whats-new .section-title,
    .home-bestseller .section-title,
    .home-popular-products .section-title {
        margin-bottom: 0;
    }

    .home-sale-products .section-title,
    .sale-products-section .section-title {
        margin-bottom: 0.15rem;
    }

    .home-sale-products .section-subtitle,
    .sale-products-section .section-subtitle {
        margin: 0;
    }

    .home-category-slider {
        margin-top: 0.5cm;
        margin-bottom: 0;
        background: #ffffff;
    }

    .home-features-grid {
        gap: 0.45rem;
    }

    .home-feature {
        padding: 0.55rem 0.6rem;
    }

    .home-feature h3 {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

    .home-feature p {
        margin: 0;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .contact-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-highlight {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        justify-content: flex-start;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .products-grid--3,
    .popular-grid,
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--spacing-md);
    }

    /* What's New + Bestseller: 2-col mobile like bysuryavanshi */
    .home-whats-new .home-grid-8,
    .home-bestseller .home-grid-8,
    .home-popular-products .home-grid-8,
.home-sale-products .home-grid-8,
    .related-products .home-grid-8,
    .home-whats-new .products-grid.home-grid-8,
    .home-bestseller .products-grid.home-grid-8,
    .home-popular-products .products-grid.home-grid-8,
.home-sale-products .products-grid.home-grid-8,
    .related-products .products-grid.home-grid-8,
    .home-whats-new .popular-grid.home-grid-8,
    .home-bestseller .popular-grid.home-grid-8,
    .home-popular-products .popular-grid.home-grid-8,
.home-sale-products .popular-grid.home-grid-8,
    .related-products .popular-grid.home-grid-8,
    .shop-products-grid.home-grid-8 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem 0.65rem !important;
    }

    .collection-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .home-whats-new .section-header,
    .home-bestseller .section-header {
        margin-bottom: 0;
        text-align: left;
    }

    .home-whats-new .section-title,
    .home-bestseller .section-title {
        font-size: 1.35rem;
    }

    .home-whats-new .section-subtitle,
    .home-bestseller .section-subtitle {
        font-size: 0.85rem;
    }

    .product-card .product-info,
    .popular-card .product-info {
        padding: 0.65rem 0.75rem;
    }

    /* Mobile What's New / Bestseller / shop cards */
    .home-bestseller .shop-product-card,
    .home-whats-new .shop-product-card,
    .home-popular-products .shop-product-card,
.home-sale-products .shop-product-card,
    .home-popular-products .shop-product-card,
.home-sale-products .shop-product-card,
    .related-products .shop-product-card,
    .collection-products-grid .shop-product-card,
    .shop-products-grid .shop-product-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .home-bestseller .shop-product-card > a,
    .home-whats-new .shop-product-card > a,
    .related-products .shop-product-card > a,
    .collection-products-grid .shop-product-card > a,
    .shop-products-grid .shop-product-card > a {
        display: flex !important;
        flex-direction: column;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .home-bestseller .shop-product-card .product-image-wrapper,
    .home-whats-new .shop-product-card .product-image-wrapper,
    .related-products .shop-product-card .product-image-wrapper,
    .collection-products-grid .shop-product-card .product-image-wrapper,
    .shop-products-grid .shop-product-card .product-image-wrapper {
        aspect-ratio: 4 / 5;
        background: #fff;
        border-radius: 0.6rem;
        border-bottom: none !important;
        width: 100%;
    }

    .home-bestseller .shop-product-card .product-info,
    .home-whats-new .shop-product-card .product-info,
    .related-products .shop-product-card .product-info,
    .collection-products-grid .shop-product-card .product-info,
    .shop-products-grid .shop-product-card .product-info {
        padding: 0.55rem 0.1rem 0.35rem !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0.3rem;
    }

    .home-bestseller .shop-product-card h3,
    .home-whats-new .shop-product-card h3,
    .related-products .shop-product-card h3,
    .collection-products-grid .shop-product-card h3,
    .shop-products-grid .shop-product-card h3 {
        font-family: var(--font-heading);
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        line-height: 1.3;
        color: #211;
        min-height: 0 !important;
        margin: 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        width: 100%;
        text-align: left;
    }

    .home-bestseller .product-card-desc,
    .home-whats-new .product-card-desc,
    .home-popular-products .product-card-desc,
.home-sale-products .product-card-desc,
    .collection-products-grid .product-card-desc,
    .shop-products-grid .product-card-desc {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.7rem;
        line-height: 1.35;
        color: #f5e6a8;
        margin: 0;
        width: 100%;
        text-align: left;
    }

    .home-bestseller .shop-product-card .product-price,
    .home-whats-new .shop-product-card .product-price,
    .related-products .shop-product-card .product-price,
    .collection-products-grid .shop-product-card .product-price,
    .shop-products-grid .shop-product-card .product-price {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0.2rem 0.45rem;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0.15rem 0 0 !important;
        border-radius: 0 !important;
        width: 100%;
    }

    .home-bestseller .shop-product-card .product-price::before,
    .home-whats-new .shop-product-card .product-price::before,
    .related-products .shop-product-card .product-price::before,
    .collection-products-grid .shop-product-card .product-price::before,
    .shop-products-grid .shop-product-card .product-price::before {
        display: none !important;
        content: none !important;
    }

    .home-bestseller .shop-product-card .price,
    .home-bestseller .shop-product-card .price-sale,
    .home-whats-new .shop-product-card .price,
    .home-whats-new .shop-product-card .price-sale,
    .related-products .shop-product-card .price,
    .related-products .shop-product-card .price-sale,
    .collection-products-grid .shop-product-card .price,
    .collection-products-grid .shop-product-card .price-sale,
    .shop-products-grid .shop-product-card .price,
    .shop-products-grid .shop-product-card .price-sale {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        line-height: 1.2;
        color: #211 !important;
        background: none !important;
        -webkit-text-fill-color: #211 !important;
        letter-spacing: 0.01em;
    }

    .home-bestseller .shop-product-card .price-original,
    .home-whats-new .shop-product-card .price-original,
    .related-products .shop-product-card .price-original,
    .collection-products-grid .shop-product-card .price-original,
    .shop-products-grid .shop-product-card .price-original {
        flex: 0 1 auto !important;
        width: auto !important;
        font-size: 0.74rem !important;
        color: #8a8a8a !important;
        text-decoration: line-through;
        line-height: 1.2;
    }

    .home-bestseller .discount-badge,
    .home-whats-new .discount-badge,
    .home-popular-products .discount-badge,
.home-sale-products .discount-badge,
    .related-products .discount-badge,
    .home-bestseller .new-badge,
    .home-whats-new .new-badge,
    .home-popular-products .new-badge,
.home-sale-products .new-badge,
    .home-bestseller .bestseller-badge,
    .collection-products-grid .discount-badge,
    .related-products .discount-badge {
        top: 0.5rem;
        left: 0.5rem;
        right: auto;
        font-size: 0.62rem;
        padding: 0.28rem 0.4rem;
        border-radius: 0.3rem;
    }

    .home-whats-new .home-section-view-all,
    .home-bestseller .home-section-view-all,
    .home-popular-products .home-section-view-all,
    .home-sale-products .home-section-view-all,
    .home-section-view-all,
    .view-all {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0.3cm;
    }

    .home-bestseller .home-section-view-all {
        padding-bottom: 1cm;
        background: #ffffff;
    }

    .home-sale-products .home-section-view-all,
    .sale-products-section .home-section-view-all {
        margin-bottom: 0;
        padding-bottom: 0;
        background: #ffffff;
    }

    .home-bestseller {
        padding-bottom: 0;
        background: #ffffff;
    }

    /* Related Products: match Bestseller mobile card layout */
    .related-products {
        margin: 1.5rem 0 0 !important;
        padding: 1.25rem 0 0.5rem !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .related-products .section-header {
        margin-bottom: 0.75rem;
        text-align: center;
        padding: 0;
    }

    .related-products .section-title {
        font-size: 1.35rem;
        margin: 0;
        text-align: center;
        width: 100%;
    }

    .related-products .products-grid,
    .related-products .shop-products-grid {
        margin: 0;
    }

    .home-sale-products,
    .sale-products-section {
        padding-bottom: 1cm;
        background: #ffffff;
    }

    .view-all {
        margin: 0;
        padding-bottom: 0.3cm;
    }

    .product-card h3,
    .popular-card h3 {
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 0;
    }

    .product-card .product-price,
    .popular-card .product-price {
        gap: 0.15rem 0.35rem;
    }

    .product-card .price,
    .product-card .price-sale,
    .popular-card .price,
    .popular-card .price-sale {
        font-size: 0.95rem;
    }

    .product-card .price-original,
    .popular-card .price-original {
        font-size: 0.75rem;
        flex: 1 1 100%;
    }

    .hero {
        padding: var(--spacing-xl) 0;
    }

    .cart-item,
    .wishlist-item {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .cart-item-image,
    .wishlist-item-image {
        width: min(120px, 40vw);
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .cart-item-actions,
    .wishlist-item-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .nav-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .nav-icon svg {
        width: 15px;
        height: 15px;
    }

    .navbar .nav-brand .site-logo {
        height: 3.25rem;
        max-width: min(200px, 48vw);
        margin-inline: auto;
    }
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(217, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* Home Page Specific Styles */
.view-all {
    text-align: center;
    margin: 0 0 0.5rem;
}

.view-all .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Floating WhatsApp widget (Dimarva-style) */
.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;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.whatsapp-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float-toggle {
    position: relative;
    width: 84px;
    height: 84px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
}

.whatsapp-float-icon {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
    border-radius: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.whatsapp-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(37, 211, 102, 0.35);
    z-index: 1;
    animation: whatsapp-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.55);
        opacity: 0;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

.whatsapp-float-label {
    position: absolute;
    right: 96px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: #fff;
    color: #1e2433;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08), 0 2px 16px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.whatsapp-float.is-open .whatsapp-float-label,
.whatsapp-float.is-open .whatsapp-float-badge,
.whatsapp-float.is-open .whatsapp-float-pulse {
    display: none;
}

.whatsapp-float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 3;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-panel {
    width: min(360px, calc(100vw - 40px));
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
    animation: whatsapp-panel-in 0.25s ease;
}

.whatsapp-float-panel[hidden] {
    display: none !important;
}

@keyframes whatsapp-panel-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-float-header {
    position: relative;
    background: #2db67c;
    color: #fff;
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
}

.whatsapp-float-title {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.whatsapp-float-desc,
.whatsapp-float-note {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.whatsapp-float-note {
    margin-top: 0.65rem;
    opacity: 0.9;
    font-size: 0.8rem;
}

.whatsapp-float-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.whatsapp-float-body {
    background: #e5ddd5;
    background-image:
        radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 12px 12px;
    padding: 1rem;
    min-height: 140px;
}

.whatsapp-float-msg {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.whatsapp-float-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.whatsapp-float-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.whatsapp-float-msg p {
    margin: 0;
    background: #fff;
    color: #1e2433;
    padding: 0.75rem 0.9rem;
    border-radius: 0 12px 12px 12px;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    max-width: 85%;
}

.whatsapp-float-footer {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.whatsapp-float-footer textarea {
    flex: 1;
    resize: none;
    border: none;
    outline: none;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.55rem 0.35rem;
    max-height: 90px;
    background: transparent;
    color: #1e2433;
}

.whatsapp-float-send {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #2db67c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.whatsapp-float-send:hover {
    background: #25a56e;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float-toggle,
    .whatsapp-float-icon {
        width: 72px;
        height: 72px;
    }
}


/* Furniture hub: Modern / Kids category picker */
.products-category-hub .products-hub-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.products-hub-group {
    margin-top: var(--spacing-xl);
}

.products-hub-group:first-of-type {
    margin-top: var(--spacing-md);
}

.products-hub-group-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 0 0 var(--spacing-md);
    color: var(--dark);
}

.products-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.products-hub-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.products-hub-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 29, 54, 0.28);
}

.products-hub-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f3f3;
}

.products-hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.products-hub-card:hover .products-hub-card-image img {
    transform: scale(1.04);
}

.products-hub-card-body {
    padding: 0.9rem 1rem 1.1rem;
}

.products-hub-card-body h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--dark);
}

.products-hub-card-body p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted, #6b7280);
}

@media (max-width: 1024px) {
    .products-hub-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 720px) {
    .products-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .products-hub-card-body {
        padding: 0.7rem 0.75rem 0.85rem;
    }

    .products-hub-card-body h3 {
        font-size: 0.95rem;
    }

    .products-hub-group-title {
        font-size: 1.15rem;
    }
}
