/* ==========================================================
   1 GRAM GOLD JEWELLERY – PREMIUM CUSTOMER E-COMMERCE STYLES
   Design System: Amazon-Level Usability x Royal Gold Luxury Aesthetic
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Color Palette */
    --navy-950: #090d16;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    
    /* Warm Gold Accents */
    --gold-300: #fde68a;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    --gold-800: #92400e;
    --gold-light: #fefbeb;
    --gold-border: #fcd34d;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gold-gradient-shine: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #92400e 100%);
    
    /* Surface & Backgrounds */
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-elevated: #ffffff;
    --border-color: #e2e8f0;
    --border-subtle: #f1f5f9;
    
    /* Typography Colors */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-inverse: #ffffff;

    /* Functional Colors */
    --success: #10b981;
    --success-bg: #ecfdf5;
    --danger: #ef4444;
    --danger-bg: #fef2f2;
    --warning: #f59e0b;
    --warning-bg: #fffbeb;

    /* Layout & Elevation */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 30px rgba(217, 119, 6, 0.12);
    
    --container-max: 1320px;
    --header-height-main: 72px;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================
   MULTI-LEVEL AMAZON-STYLE LUXURY HEADER
   ========================================================== */

/* 1. Top Utility Notification Bar */
.top-utility-bar,
.header-topbar {
    width: 100%;
    background-color: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11.5px;
    padding: 6px 0;
    color: #cbd5e1;
    line-height: 1.4;
}

.top-utility-content,
.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-utility-left,
.top-utility-right,
.topbar-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gold-rate-badge,
.topbar-gold-rate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-400);
    font-weight: 600;
}

.pulse-dot,
.gold-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--gold-400);
    box-shadow: 0 0 8px var(--gold-400);
    display: inline-block;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.85); }
}

.utility-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
}

.utility-text {
    color: #94a3b8;
}

.trademark-tag,
.trademark-badge-top {
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold-300);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.utility-link,
.topbar-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.utility-link:hover,
.topbar-link:hover {
    color: var(--gold-400);
}

/* 2. Main Amazon-Style Header Row */
.main-site-header,
.site-header {
    width: 100%;
    background-color: var(--navy-900);
    color: var(--text-inverse);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.header-container,
.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 20px;
}

/* Mobile Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
}

/* Brand Identity */
.brand-identity,
.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-crest {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-gradient-shine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    flex-shrink: 0;
}

.brand-text-group,
.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-name,
.brand-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    line-height: 1.1;
}

.brand-tagline,
.brand-sub-title {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Search Bar (Amazon Style) */
.header-search-wrapper,
.header-search-form {
    flex: 1;
    max-width: 680px;
    position: relative;
}

.header-search-form {
    display: flex;
    align-items: stretch;
    height: 44px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    margin: 0;
}

.search-category-select {
    background-color: #f1f5f9;
    border: none;
    border-right: 1px solid #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-800);
    padding: 0 12px;
    outline: none;
    cursor: pointer;
    max-width: 140px;
    white-space: nowrap;
}

.search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-input,
.search-input-field {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 16px;
    font-size: 13.5px;
    color: var(--text-main);
    outline: none;
    background: transparent;
}

.search-submit-btn {
    width: 50px;
    background: var(--gold-gradient);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.search-submit-btn:hover {
    opacity: 0.92;
}

/* Live Search Suggestions Dropdown */
.search-suggestions-dropdown,
.search-autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    color: var(--text-main);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    margin-top: 4px;
    display: none;
    z-index: 150;
    max-height: 380px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.search-suggestions-dropdown.active,
.search-autocomplete-box.active {
    display: block;
}

/* Header Actions (Account, Wishlist, Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-action-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--gold-300);
}

.header-action-link {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    text-decoration: none;
}

.action-subtext {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.1;
}

.action-maintext {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
}

.icon-badge-container,
.action-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-badge,
.action-count-badge {
    position: absolute;
    top: -7px;
    right: -9px;
    background-color: var(--gold-500);
    color: var(--navy-950);
    font-weight: 800;
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Account Dropdown Menu */
.account-dropdown-wrapper {
    position: relative;
}

.account-dropdown-wrapper .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: #ffffff;
    color: var(--text-main);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 16px;
    display: none;
    z-index: 1000;
    margin-top: 8px;
}

.account-dropdown-wrapper:hover .dropdown-menu,
.account-dropdown-wrapper:focus-within .dropdown-menu {
    display: block;
}

.dropdown-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.dropdown-header strong {
    display: block;
    font-size: 14px;
    color: var(--text-main);
}

.dropdown-header small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

.dropdown-cta {
    margin-bottom: 12px;
    text-align: center;
}

.dropdown-help-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.dropdown-help-text a {
    color: var(--gold-700);
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 8px 0;
}

.dropdown-item {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
    background-color: var(--gold-light);
    color: var(--gold-800);
}

.dropdown-item.text-danger:hover {
    background-color: var(--danger-bg);
    color: var(--danger);
}

/* 3. Sub-Navbar (Department Categories & Collections) */
.sub-navbar,
.header-departments-bar {
    background-color: var(--navy-800);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.sub-nav-container,
.departments-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 20px;
}

.all-departments-btn,
.all-dept-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.all-departments-btn:hover,
.all-dept-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.sub-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.sub-nav-links::-webkit-scrollbar {
    display: none;
}

.sub-nav-links li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.sub-nav-links a,
.nav-category-link {
    display: block;
    padding: 7px 12px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.sub-nav-links a:hover,
.sub-nav-links a.active,
.nav-category-link:hover,
.nav-category-link.active {
    color: var(--gold-300);
    background: rgba(255, 255, 255, 0.08);
}

.sub-nav-links a.nav-highlight {
    color: var(--gold-400);
    font-weight: 700;
}

.sub-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gold-special-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-400);
    font-weight: 700;
    font-size: 12.5px;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.3);
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.gold-special-link:hover {
    background: rgba(245, 158, 11, 0.24);
}

.gold-sparkle {
    font-size: 13px;
}

/* Responsive Header Rules */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .header-search-wrapper {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .action-text-hide-sm {
        display: none;
    }
    .sub-nav-right {
        display: none;
    }
}

@media (max-width: 640px) {
    .top-utility-right {
        display: none;
    }
    .brand-tagline {
        display: none;
    }
    .search-category-select {
        display: none;
    }
}

/* Off-Canvas Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    color: var(--text-main);
    z-index: 210;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    background: var(--navy-900);
    color: #ffffff;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.drawer-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    padding: 12px 20px 6px;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-link:hover {
    background-color: var(--gold-light);
    color: var(--gold-800);
}

/* ==========================================================
   HOMEPAGE COMPONENTS
   ========================================================= */

/* Hero Banner */
.hero-showcase {
    position: relative;
    background: radial-gradient(circle at top right, #1e293b 0%, #090d16 100%);
    color: #ffffff;
    overflow: hidden;
    padding: 48px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge-legal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold-300);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.hero-title .gold-accent {
    background: var(--gold-gradient-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image-wrap:hover img {
    transform: scale(1.03);
}

.hero-image-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 12px;
}

/* Category Cards Grid */
.section-block {
    padding: 44px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.category-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}

.cat-card-media {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.cat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .cat-card-media img {
    transform: scale(1.05);
}

.cat-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.cat-card-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.cat-subtier-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cat-subtier-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    background: var(--gold-light);
    color: var(--gold-800);
    border: 1px solid var(--gold-border);
    border-radius: 9999px;
}

/* Flash Deals Banner */
.deals-strip {
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.deals-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.deals-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.deal-timer-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold-300);
    margin-top: 6px;
}

/* ==========================================================
   PRODUCT CARDS GRID (AMAZON STYLE)
   ========================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}

/* Card Media & Badges */
.card-media-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-media-box img {
    transform: scale(1.06);
}

.card-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.card-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.card-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    z-index: 10;
}

.card-wishlist-btn:hover {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.1);
}

.card-wishlist-btn.active {
    color: #ef4444;
    background: #fff;
}

/* Card Body */
.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-gold-type {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gold-800);
    background: var(--gold-light);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 6px;
    align-self: flex-start;
}

.card-product-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.card-rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.rating-stars {
    color: #f59e0b;
    letter-spacing: -1px;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 12px;
}

.card-selling-price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.card-mrp-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.card-savings-pill {
    font-size: 10px;
    color: var(--success);
    font-weight: 700;
}

/* Card Action Button */
.card-cart-btn {
    width: 100%;
    padding: 9px 12px;
    background-color: var(--navy-900);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.card-cart-btn:hover {
    background: var(--gold-gradient);
    color: #ffffff;
}

.card-cart-btn:active {
    transform: scale(0.98);
}

/* ==========================================================
   PRODUCT LISTING PAGE WITH FACETED FILTERS
   ========================================================== */
.listing-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
    padding: 24px 0 48px;
}

.filter-sidebar {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-option-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 6px;
}

.filter-option-label:hover {
    color: var(--text-main);
}

.filter-option-label input[type="checkbox"],
.filter-option-label input[type="radio"] {
    accent-color: var(--gold-600);
}

.listing-top-bar {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================
   PRODUCT DETAILS PAGE
   ========================================================== */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.gallery-container {
    display: flex;
    gap: 16px;
}

.gallery-thumbs-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70px;
    flex-shrink: 0;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    background: #f8fafc;
    transition: border-color 0.2s ease;
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--gold-600);
    box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2);
}

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

.gallery-viewport {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.gallery-viewport img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Details Info Column */
.detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--text-main);
}

.detail-sku-badge {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.detail-sku-badge code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.detail-price-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.detail-selling-price {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
}

/* Cost Breakdown for Jewellery */
.jewellery-cost-breakdown {
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 20px;
}

.breakdown-header {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breakdown-table {
    width: 100%;
    font-size: 12.5px;
    border-collapse: collapse;
}

.breakdown-table td {
    padding: 4px 0;
    color: var(--navy-800);
}

.breakdown-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.breakdown-table tr.total-row {
    border-top: 1px dashed var(--gold-600);
    padding-top: 6px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--gold-800);
}

/* CTAs */
.detail-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-add-cart-large {
    flex: 1;
    min-width: 160px;
    padding: 14px 20px;
    background: var(--navy-900);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-add-cart-large:hover {
    background: var(--navy-800);
}

.btn-buy-now {
    flex: 1;
    min-width: 160px;
    padding: 14px 20px;
    background: var(--gold-gradient);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-buy-now:hover {
    opacity: 0.95;
}

/* ==========================================================
   SHOPPING CART PAGE
   ========================================================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
    padding: 24px 0 48px;
}

.cart-items-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.cart-item-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    object-fit: cover;
}

.cart-qty-spinner {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #ffffff;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #f8fafc;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

.qty-btn:hover {
    background: #e2e8f0;
}

.qty-value {
    width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.cart-summary-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

/* ==========================================================
   TRUST & BADGES SECTION
   ========================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 24px 0;
}

.trust-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-light);
    color: var(--gold-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-title {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-main);
}

.trust-subtitle {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ==========================================================
   AMAZON-STYLE 4-COLUMN FOOTER
   ========================================================== */
.site-footer {
    background-color: var(--navy-950);
    color: #cbd5e1;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 9px;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--gold-400);
}

.footer-legal-notice {
    background: rgba(15, 23, 42, 0.8);
    padding: 24px 0;
    text-align: center;
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.6;
}

/* ==========================================================
   TOAST NOTIFICATIONS
   ========================================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-msg {
    background: var(--navy-900);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    animation: toastSlideUp 0.3s ease;
}

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

/* ==========================================================
   MOBILE BOTTOM NAVIGATION & RESPONSIVE BREAKPOINTS
   ========================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 90;
    padding: 6px 0;
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 4px;
}

.mobile-nav-btn.active, .mobile-nav-btn:hover {
    color: var(--gold-700);
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
    .listing-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        display: none;
    }
    .filter-sidebar.mobile-active {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-topbar {
        display: none;
    }
    .header-main-content {
        flex-wrap: wrap;
        gap: 12px;
    }
    .header-search-form {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .mobile-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}

/* ==========================================================
   CHECKOUT, PAYMENT & ORDER TRACKING STYLES (STEP 4)
   ========================================================== */
.checkout-container {
    max-width: 1200px;
    margin: 28px auto 60px;
    padding: 0 16px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

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

.checkout-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s;
}

.checkout-step-card.active {
    border-color: var(--gold-500);
}

.checkout-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.checkout-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.saved-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.address-option-label {
    display: block;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 16px;
    transition: all 0.2s ease;
    background: #fafafa;
    position: relative;
}

.address-option-label:hover {
    border-color: var(--gold-400);
    background: #ffffff;
}

.address-option-label.selected,
.address-option-input:checked + .address-card-inner {
    border-color: var(--gold-600);
    background: #fffdfa;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.12);
}

.address-option-input {
    position: absolute;
    top: 16px;
    right: 16px;
    accent-color: var(--gold-600);
}

.addr-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 4px;
}

.addr-type-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    background: var(--gold-light);
    color: var(--gold-800);
    border-radius: 4px;
    margin-left: 6px;
}

.addr-phone {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.addr-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.45;
}

.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: #ffffff;
    transition: all 0.2s;
}

.payment-method-item:hover {
    border-color: var(--gold-400);
}

.payment-method-item.selected,
.payment-method-item:has(input:checked) {
    border-color: var(--gold-600);
    background: #fffdf8;
}

.payment-method-item input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--gold-600);
}

.payment-method-desc {
    flex: 1;
}

.payment-method-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-subtitle {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Coupon block */
.coupon-box {
    background: #f8fafc;
    border: 1px dashed var(--gold-border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.coupon-input-group input {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.coupon-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.coupon-chip-btn {
    font-size: 11px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid var(--gold-300);
    color: var(--gold-800);
    padding: 4px 10px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s;
}

.coupon-chip-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-600);
}

/* Order Confirmation Screen */
.order-confirmation-wrap {
    max-width: 860px;
    margin: 40px auto 70px;
    padding: 0 16px;
}

.confirmation-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.confirmation-hero {
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    color: #ffffff;
    padding: 36px 24px;
    text-align: center;
    border-bottom: 3px solid var(--gold-400);
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.confirmation-body {
    padding: 32px;
}

.confirmation-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .confirmation-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Tracking Timeline */
.tracking-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.tracking-timeline {
    position: relative;
    padding: 20px 0 10px 40px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 17px;
    width: 3px;
    background: #e2e8f0;
}

.timeline-step {
    position: relative;
    margin-bottom: 28px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #cbd5e1;
}

.timeline-step.completed .timeline-dot {
    background: var(--gold-600);
    box-shadow: 0 0 0 2px var(--gold-500);
}

.timeline-step.active .timeline-dot {
    background: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.timeline-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.timeline-step.completed .timeline-title {
    color: var(--gold-800);
}

.timeline-time {
    font-size: 12px;
    color: var(--text-muted);
}

.timeline-notes {
    font-size: 13px;
    color: #475569;
    margin-top: 4px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

/* ==========================================================
   COMPREHENSIVE DESIGN SYSTEM FIXES: AUTH, FOOTER, CART,
   WISHLIST, ACCOUNT, POLICY, CATALOG & PRODUCT PAGES
   Brand: 1 GRAM GOLD JEWELLERY - GOLD IMITATE QUALITY JEWELLERY
   ========================================================== */

/* --- 1. GLOBAL LAYOUT WRAPPERS & BREADCRUMBS --- */
.site-main-content {
    min-height: calc(100vh - 450px);
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .site-main-content {
        padding-bottom: 80px; /* Prevent overlap with mobile bottom bar */
    }
}

.breadcrumbs-bar {
    background-color: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 13px;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs-list li + li::before {
    content: "/";
    color: #cbd5e1;
    font-size: 12px;
}

.breadcrumbs-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumbs-list a:hover {
    color: var(--gold-700);
}

.breadcrumbs-list span {
    color: var(--text-main);
    font-weight: 600;
}

/* --- 2. GLOBAL BUTTONS & UTILITIES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12.5px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-gold,
.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    border-color: #b45309;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
}

.btn-gold:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-600);
    color: var(--gold-700) !important;
}

.btn-outline-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-700);
    color: var(--gold-800) !important;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff !important;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--gold-600);
    color: var(--gold-700) !important;
}

.btn-outline-primary:hover {
    background: var(--gold-600);
    color: #ffffff !important;
}

.btn-outline-secondary {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155 !important;
}

.btn-outline-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a !important;
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid #fca5a5;
    color: #dc2626 !important;
}

.btn-outline-danger:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.btn-disabled,
.btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed !important;
    pointer-events: none;
    box-shadow: none !important;
    transform: none !important;
}

/* Global Form Controls */
.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.label-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.label-flex-row .form-label {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-main);
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.form-control-sm {
    padding: 6px 10px;
    font-size: 13px;
}

.form-select-sm {
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    outline: none;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

/* Alerts */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.alert-info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.badge-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.text-success { color: #16a34a !important; }
.text-gold { color: var(--gold-700) !important; }
.font-semibold { font-weight: 600 !important; }

/* Empty States */
.empty-state-box,
.cart-empty-state,
.wishlist-empty-card,
.catalog-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
    margin: 24px 0;
}

.empty-state-icon,
.wishlist-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #94a3b8;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.empty-state-text {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 20px;
}

.empty-state-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- 3. AUTHENTICATION PAGES (LOGIN & REGISTER) --- */
.auth-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 380px);
    padding: 48px 16px 64px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.auth-box-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 450px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.auth-box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient-shine);
}

.auth-box-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-crest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    border: 2px solid #ffffff;
}

.auth-box-header h2 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.auth-box-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.45;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-forgot-link {
    font-size: 12.5px;
    color: var(--gold-700);
    font-weight: 500;
    text-decoration: none;
}

.auth-forgot-link:hover {
    color: var(--gold-800);
    text-decoration: underline;
}

.auth-terms-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 18px;
    text-align: center;
}

.auth-terms-note a {
    color: var(--gold-700);
    text-decoration: underline;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 26px 0 20px;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-register-cta {
    display: block;
}

/* --- 4. FOOTER & TRUST BADGES SYSTEM --- */
.back-to-top {
    display: block;
    width: 100%;
    background-color: #1e293b;
    color: #cbd5e1;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.back-to-top:hover {
    background-color: #334155;
    color: #ffffff;
}

.main-site-footer {
    background-color: #090d16;
    color: #94a3b8;
    font-size: 13.5px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-top-trust {
    background-color: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

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

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-icon {
    font-size: 26px;
    line-height: 1;
    color: var(--gold-400);
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.35;
}

.footer-main-nav {
    padding: 48px 0 36px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
}

@media (max-width: 992px) {
    .footer-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col .footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-crest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--gold-gradient);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-brand-sub {
    font-size: 10px;
    color: var(--gold-400);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-about-text {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 16px;
}

.footer-trademark-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 12px;
}

.footer-trademark-box strong {
    color: var(--gold-300);
    display: block;
    margin-bottom: 3px;
}

.footer-trademark-box p {
    color: #cbd5e1;
    font-size: 11.5px;
    line-height: 1.4;
    margin: 0;
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold-500);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s, transform 0.15s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-400);
    transform: translateX(3px);
}

.footer-contact-block {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #cbd5e1;
}

.contact-icon {
    color: var(--gold-400);
    font-size: 15px;
}

.footer-bottom-bar {
    background-color: #06090f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    font-size: 12.5px;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.copyright-text strong {
    color: #ffffff;
}

.payment-methods-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* --- 5. STICKY MOBILE BOTTOM BAR --- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0f172a;
    border-top: 1px solid rgba(245, 158, 11, 0.25);
    z-index: 9999;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    flex: 1;
    height: 100%;
    transition: color 0.15s;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold-400);
}

.relative-nav-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    line-height: 17px;
    border-radius: 9999px;
    text-align: center;
    padding: 0 4px;
    border: 1px solid #0f172a;
}

/* --- 6. SHOPPING CART PAGE --- */
.cart-page-container {
    padding: 24px 0 60px;
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 28px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .cart-layout-grid {
        grid-template-columns: 1fr;
    }
}

.cart-card-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
}

.cart-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.cart-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
}

.cart-price-col-header {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
}

.cart-item-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.cart-item-img {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    background: #f8fafc;
}

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

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

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 4px;
    line-height: 1.35;
}

.cart-item-title a:hover {
    color: var(--gold-700);
}

.cart-item-cat {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-item-stock {
    font-size: 12px;
    margin-bottom: 12px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-qty-spinner {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
}

.btn-cart-qty {
    background: #f8fafc;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart-qty:hover {
    background: #e2e8f0;
}

.cart-qty-input {
    width: 42px;
    height: 32px;
    border: none;
    border-left: 1px solid #cbd5e1;
    border-right: 1px solid #cbd5e1;
    text-align: center;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-main);
    outline: none;
}

.btn-link-action {
    background: none;
    border: none;
    padding: 0;
    color: #dc2626;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.btn-link-action:hover {
    color: #991b1b;
}

.cart-item-price {
    text-align: right;
    min-width: 90px;
}

.cart-item-price .price-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-950);
}

.cart-item-price .mrp-strike {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
}

.cart-summary-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.cart-free-shipping-card {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #065f46;
}

.cart-coupon-box {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

/* --- 7. MY ACCOUNT DASHBOARD --- */
.account-page-container {
    padding: 24px 0 60px;
}

.account-layout-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .account-layout-grid {
        grid-template-columns: 1fr;
    }
}

.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-profile-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.profile-avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
    border: 3px solid #ffffff;
}

.profile-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 4px;
}

.profile-email,
.profile-phone {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.profile-since {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-subtle);
}

.profile-actions {
    margin-top: 16px;
}

.account-quick-links {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

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

.quick-link-item:hover {
    background: #f8fafc;
    color: var(--gold-700);
}

.ql-icon {
    font-size: 16px;
    width: 20px;
    color: var(--gold-600);
}

.account-main-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.account-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.account-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
}

.orders-count {
    font-size: 13px;
    color: var(--text-muted);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
}

.order-card-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
}

.order-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-id {
    font-weight: 700;
    color: var(--navy-900);
}

.order-date {
    color: var(--text-muted);
}

.badge-status {
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-status.completed,
.badge-status.delivered {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.badge-status.pending,
.badge-status.processing {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.order-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-product-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.order-product-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    object-fit: cover;
    flex-shrink: 0;
}

.order-product-details {
    flex: 1;
}

.order-product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.order-product-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.order-product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
}

.order-card-footer {
    background: #fafafa;
    border-top: 1px solid var(--border-subtle);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.order-total-box {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy-950);
}

.order-actions-box {
    display: flex;
    gap: 8px;
}

/* --- 8. WISHLIST PAGE --- */
.wishlist-page-container {
    padding: 24px 0 60px;
}

.wishlist-header-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 12px;
}

.wishlist-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 4px;
}

.wishlist-subtext {
    font-size: 13.5px;
    color: var(--text-muted);
}

.wishlist-count-badge {
    background: var(--gold-light);
    border: 1px solid var(--gold-300);
    color: var(--gold-800);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 9999px;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.wishlist-item-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wishlist-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}

.wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.15s;
}

.wishlist-remove-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

.wishlist-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8fafc;
}

.wishlist-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-item-card:hover .wishlist-img-wrap img {
    transform: scale(1.05);
}

.wishlist-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wishlist-card-cat {
    font-size: 11.5px;
    color: var(--gold-700);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.wishlist-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.wishlist-card-price .price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-950);
}

.wishlist-card-price .price-mrp {
    font-size: 12.5px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.wishlist-stock-status {
    font-size: 12px;
    margin-bottom: 14px;
}

.wishlist-card-actions {
    margin-top: auto;
}

/* --- 9. STORE POLICY & INFO PAGES --- */
.policy-page-container {
    padding: 24px 0 60px;
}

.policy-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .policy-layout-grid {
        grid-template-columns: 1fr;
    }
}

.policy-nav-sidebar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.policy-nav-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.policy-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-nav-list a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}

.policy-nav-list a:hover {
    background: #f1f5f9;
    color: var(--gold-700);
}

.policy-nav-list a.active {
    background: var(--gold-light);
    color: var(--gold-800);
    font-weight: 700;
    border-left: 3px solid var(--gold-600);
}

.policy-body-article {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
    .policy-body-article {
        padding: 24px 20px;
    }
}

.policy-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.policy-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-800);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 10px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.policy-header h1 {
    font-family: 'Cinzel', 'Outfit', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 8px;
}

.policy-prose {
    font-size: 14.5px;
    line-height: 1.7;
    color: #334155;
}

.policy-prose h2,
.policy-prose h3,
.policy-prose h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--navy-950);
    margin: 28px 0 12px;
    font-weight: 700;
}

.policy-prose p {
    margin-bottom: 16px;
}

.policy-prose ul,
.policy-prose ol {
    margin: 0 0 20px 24px;
}

.policy-prose li {
    margin-bottom: 8px;
}

.lead-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-800);
}

.callout-box {
    background: #fefbeb;
    border: 1px solid #fcd34d;
    border-left: 4px solid var(--gold-500);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
}

.callout-box h4 {
    color: var(--gold-900);
    font-size: 15px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 6px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13.5px;
}

.specs-table th,
.specs-table td {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.specs-table th {
    background: #f8fafc;
    font-weight: 600;
    color: var(--navy-900);
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.contact-details-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* --- 10. REUSABLE PRODUCT CARD COMPONENT --- */
.product-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 4;
}

.card-badge {
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.badge-discount {
    background: #dc2626;
    color: #ffffff;
}

.badge-bestseller {
    background: var(--gold-gradient);
    color: #ffffff;
}

.badge-new {
    background: #2563eb;
    color: #ffffff;
}

.badge-gold {
    background: #78350f;
    color: #fde68a;
    border: 1px solid #f59e0b;
}

.product-card-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 8px;
}

.stars-gold {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-num {
    font-weight: 700;
    color: var(--navy-900);
}

.rating-count {
    color: var(--text-muted);
}

.product-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.product-price-current {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-950);
}

.product-price-mrp {
    font-size: 12.5px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-price-save {
    font-size: 11px;
    color: #16a34a;
    font-weight: 700;
}

.product-tax-note {
    font-size: 10.5px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.product-card-stock {
    font-size: 11.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stock-status.in-stock { color: #16a34a; font-weight: 600; }
.stock-status.out-of-stock { color: #dc2626; font-weight: 600; }
.sku-text { color: #94a3b8; font-size: 11px; }

.product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
}

.btn-cart-action {
    flex: 1;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: 1px solid #b45309;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.btn-cart-action:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
}

.btn-card-quickview {
    padding: 8px 10px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    color: #475569;
    cursor: pointer;
}

/* --- 11. PRODUCT DETAILS PAGE COMPREHENSIVE FIXES --- */
.product-detail-container {
    padding: 24px 0 60px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 36px;
}

@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 20px;
    }
}

.product-gallery-sticky {
    position: sticky;
    top: 90px;
}

.gallery-main-view {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
}

.main-zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.7);
    color: #ffffff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.gallery-thumbnails-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.thumb-btn {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    padding: 0;
    background: #f8fafc;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s;
}

.thumb-btn.active,
.thumb-btn:hover {
    border-color: var(--gold-600);
    box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.25);
}

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

.product-meta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    margin-bottom: 8px;
}

.product-brand-tag {
    color: var(--gold-700);
    font-weight: 700;
    text-transform: uppercase;
}

.meta-separator {
    color: #cbd5e1;
}

.product-sku-tag {
    color: var(--text-muted);
}

.product-main-heading {
    font-family: 'Cinzel', 'Outfit', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-rating-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.rating-val { font-weight: 700; color: var(--navy-900); }
.rating-link a { color: #2563eb; text-decoration: underline; }
.verified-badge { color: #16a34a; font-size: 12px; font-weight: 600; }

.product-pricing-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 20px;
}

.price-deal-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.discount-pill {
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.deal-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #dc2626;
}

.price-figures-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency-symbol {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-950);
}

.price-large {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-950);
    line-height: 1;
}

.mrp-row {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.mrp-text {
    text-decoration: line-through;
}

.savings-text {
    color: #16a34a;
    font-weight: 600;
    margin-left: 6px;
}

.inclusive-taxes-note {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 4px;
}

.jewellery-cost-breakdown-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.breakdown-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.breakdown-gold-icon {
    color: var(--gold-600);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}

.breakdown-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
    padding-top: 8px;
    border-top: 1px dashed #cbd5e1;
    margin-top: 8px;
}

.pincode-checker-box {
    margin-bottom: 20px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.pincode-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 6px;
    display: block;
}

.pincode-input-group {
    display: flex;
    gap: 8px;
}

.pincode-input {
    max-width: 180px;
}

.pincode-feedback {
    font-size: 12px;
    margin-top: 6px;
}

.quantity-selector-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.qty-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-900);
}

.quantity-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.stepper-btn {
    background: #f8fafc;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid #cbd5e1;
    border-right: 1px solid #cbd5e1;
    text-align: center;
    font-weight: 700;
}

.cta-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .cta-buttons-grid {
        grid-template-columns: 1fr;
    }
}

.btn-cart-large {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid #b45309;
    cursor: pointer;
}

.btn-buy-now-large {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid #9a3412;
    cursor: pointer;
}

.detail-trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-main);
}

/* --- 12. CATALOG / PRODUCTS LISTING PAGE --- */
.catalog-container {
    padding: 24px 0 60px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .catalog-sidebar {
        display: none; /* Can be toggled via mobile-filter-btn */
    }
}

.catalog-sidebar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.filter-group-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy-950);
    margin: 18px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group-title:first-child {
    margin-top: 0;
}

.filter-links-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-links-list a {
    display: block;
    font-size: 13px;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
}

.filter-links-list a:hover,
.filter-links-list a.active {
    background: var(--gold-light);
    color: var(--gold-800);
    font-weight: 600;
}

.price-inputs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.price-separator {
    color: #94a3b8;
}

.quick-price-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.catalog-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
}

.catalog-count-text {
    font-size: 13px;
    color: var(--text-muted);
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.pagination-wrapper {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-number,
.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

.pagination-number.active,
.pagination-number:hover {
    background: var(--gold-500);
    color: #ffffff;
    border-color: var(--gold-600);
}

/* --- 13. HOMEPAGE HERO CAROUSEL & SECTIONS --- */
.hero-carousel-section {
    position: relative;
    background: #090d16;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 480px;
}

.hero-slide.active {
    display: block;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.6) 60%, rgba(9, 13, 22, 0.2) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    min-height: 480px;
    padding: 40px 20px;
}

.hero-content-box {
    max-width: 620px;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold-300);
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
}

.hero-title {
    font-family: 'Cinzel', 'Outfit', serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
}

.hero-subtitle {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.category-cards-overlap {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}

.category-card-header {
    padding: 16px 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-950);
}

.category-card-badge {
    font-size: 11px;
    color: var(--gold-800);
    background: var(--gold-light);
    padding: 3px 8px;
    border-radius: 9999px;
    font-weight: 700;
}

.category-card-img-wrap {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8fafc;
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card:hover .category-card-img {
    transform: scale(1.05);
}

.category-sub-pills {
    padding: 12px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sub-pill {
    font-size: 11.5px;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.sub-pill:hover {
    background: var(--gold-light);
    color: var(--gold-800);
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold-700);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px;
}

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

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

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

@media (max-width: 992px) {
    .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
    .grid-3-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .grid-4-cols, .grid-3-cols, .grid-2-cols { grid-template-columns: 1fr; }
}

.bg-luxury-tint {
    background-color: #faf8f5;
    padding: 48px 0;
}

.bg-warm-light {
    background-color: #f8fafc;
    padding: 48px 0;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.promo-banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.promo-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.promo-card-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 320px;
}

.promo-tag {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold-300);
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.promo-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.promo-subtitle {
    font-size: 12.5px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

/* Why Choose Us & Shopping Confidence */
.why-choose-us-section {
    padding: 56px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-us-lead {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    font-size: 22px;
    color: var(--gold-600);
    flex-shrink: 0;
    line-height: 1;
}

.gold-purity-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #090d16 100%);
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.showcase-crest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px;
    border: 2px solid #ffffff;
}

.showcase-motto {
    font-size: 12.5px;
    color: var(--gold-300);
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-400);
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
}

.confidence-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .confidence-banner {
        grid-template-columns: 1fr;
    }
}

.confidence-col {
    display: flex;
    align-items: center;
    gap: 14px;
}

.confidence-icon {
    font-size: 28px;
    color: var(--gold-600);
    flex-shrink: 0;
}

.confidence-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.confidence-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    pointer-events: none;
}

.toast-message {
    background: #0f172a;
    color: #ffffff;
    border-left: 4px solid var(--gold-500);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 13.5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.3s ease;
}

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================
   PART 2: CART, CHECKOUT, ACCOUNT, PRODUCT, CATALOG & HEADER
   COMPREHENSIVE POLISH & OVERLAP PREVENTION
   ========================================================== */

/* --- 1. COMMON BUTTONS & BADGES --- */
.btn-secondary {
    background: #e2e8f0;
    color: #1e293b !important;
    border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
    background: #cbd5e1;
    color: #0f172a !important;
}

.badge-primary {
    background: var(--gold-light);
    color: var(--gold-800);
    border: 1px solid var(--gold-300);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

/* --- 2. HEADER ICONS & DRAWER --- */
.icon-truck::before { content: "\1F69A "; }
.icon-phone::before { content: "\260E "; }

.wishlist-action {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12.5px;
}

.drawer-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #0f172a;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.drawer-greeting {
    font-size: 14px;
    font-weight: 600;
}

.drawer-sublink {
    font-size: 12px;
    color: var(--gold-300);
}

.drawer-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
}

.drawer-links {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.drawer-links a:hover {
    background: #f8fafc;
    color: var(--gold-700);
}

.drawer-icon {
    font-size: 18px;
    color: var(--gold-600);
}

/* --- 3. CART & CHECKOUT SHARED SUMMARY BOXES --- */
.cart-items-column,
.checkout-steps-column {
    flex: 1;
}

.cart-summary-column,
.checkout-summary-column {
    width: 380px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .cart-summary-column,
    .checkout-summary-column {
        width: 100%;
        margin-top: 24px;
    }
}

.summary-card-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.summary-subtotal-line {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.summary-free-shipping-note {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 12.5px;
    color: #065f46;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tick-icon {
    font-weight: bold;
    color: #16a34a;
}

.summary-row,
.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.savings-row {
    color: #16a34a;
    font-weight: 600;
}

.summary-label {
    color: #475569;
}

.summary-val {
    font-weight: 600;
    color: var(--navy-900);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

.summary-grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.grand-label {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
}

.grand-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-950);
}

.summary-cta-wrap {
    margin-bottom: 18px;
}

.summary-security-list {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 16px 0 0 0;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: #64748b;
}

.icon-lock::before { content: "\1F512 "; color: var(--gold-600); }
.icon-gem::before { content: "\1F48E "; color: var(--gold-600); }
.icon-shield::before { content: "\1F6E1 "; color: var(--gold-600); }

/* Cart Specific Item Elements */
.cart-item-img-link {
    display: block;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #f8fafc;
}

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

.cart-item-sku {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.cart-stock {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.action-divider {
    color: #cbd5e1;
}

.cart-item-price-col {
    text-align: right;
    min-width: 100px;
}

.cart-item-selling-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-950);
}

.cart-item-mrp-price {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

.cart-footer-subtotal {
    text-align: right;
    font-size: 15px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.subtotal-amount {
    font-weight: 700;
    color: var(--navy-950);
    font-size: 17px;
}

.shipping-threshold-banner {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #92400e;
}

.shipping-qualified-banner {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #065f46;
}

.cart-auth-prompt {
    font-size: 13px;
    color: #475569;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.cart-help-box {
    margin-top: 24px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12.5px;
    color: #64748b;
}

/* --- 4. CHECKOUT STEP SPECIFICS --- */
.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}

/* --- 5. ACCOUNT DASHBOARD ORDERS --- */
.order-info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.block-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.block-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-900);
}

.order-header-id {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-number-tag {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
}

.order-status-badge {
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-items-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-product-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.order-item-thumb {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    object-fit: cover;
    flex-shrink: 0;
}

.order-item-desc {
    flex: 1;
}

.order-item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-900);
}

.order-item-qty {
    font-size: 12px;
    color: #64748b;
}

.order-item-subtotal {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-950);
}

.order-item-actions {
    margin-top: 4px;
}

.shipping-address-summary {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 12.5px;
    color: #475569;
    margin-top: 12px;
}

.order-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.orders-empty-state {
    text-align: center;
    padding: 48px 20px;
    color: #64748b;
}

/* --- 6. PRODUCT DETAILS TABS & BREAKDOWN --- */
.product-gallery-column {
    flex: 1;
}

.product-info-column {
    flex: 1.15;
}

.row-label {
    color: #475569;
}

.row-value {
    color: var(--navy-900);
}

.total-val {
    color: var(--gold-800);
    font-size: 15px;
}

.product-short-highlights {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #334155;
}

.product-stock-container {
    margin-bottom: 16px;
}

.stock-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
}

.status-dot.red {
    background: #dc2626;
}

.product-order-actions {
    margin-top: 20px;
}

.out-of-stock-cta {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.notify-restock-text {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 12.5px;
    color: #334155;
}

.product-details-tabs-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.tab-pills-filter {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.tab-pill {
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.tab-pill.active,
.tab-pill:hover {
    background: var(--gold-gradient);
    color: #ffffff;
}

.tab-panes-wrapper {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.specs-table-container {
    overflow-x: auto;
}

.editorial-description-box {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
}

.care-instructions-list {
    margin: 14px 0 0 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
}

/* --- 7. CATALOG SIDEBAR & FILTERING --- */
.sidebar-header-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 14px;
}

.sidebar-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.filter-options-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    cursor: pointer;
}

.filter-clear-item {
    font-size: 12px;
    color: var(--gold-700);
    text-decoration: underline;
    cursor: pointer;
}

.filter-reset-box {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.catalog-title-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.catalog-controls-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-filter-btn {
        display: inline-flex;
    }
}

.catalog-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 13px;
    color: #64748b;
}

.sort-select {
    cursor: pointer;
}

.active-filter-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.active-chips-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    border: 1px solid var(--gold-300);
    color: var(--gold-800);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    text-decoration: none;
}

.filter-chip:hover {
    background: #fde68a;
}

.clear-all-chips {
    font-size: 12px;
    color: #dc2626;
    text-decoration: underline;
}

/* --- 8. HOMEPAGE SPECIFICS --- */
.category-card-footer {
    padding: 10px 16px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.category-card-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--gold-700);
    text-decoration: none;
}

.category-card-link:hover {
    color: var(--gold-800);
}

.deals-strip-section {
    padding: 44px 0;
    background: #ffffff;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
}

.deal-countdown-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

.timer-digits {
    font-family: monospace;
    font-size: 13px;
    font-weight: 800;
}

.section-view-all {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-700);
    text-decoration: none;
}

.section-view-all:hover {
    color: var(--gold-800);
    text-decoration: underline;
}

.section-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.section-actions {
    display: flex;
    gap: 8px;
}

.promo-banners-section {
    padding: 20px 0;
}

.dual-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 768px) {
    .dual-collection-grid {
        grid-template-columns: 1fr;
    }
}

.collection-column {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.collection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.collection-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-950);
}

.collection-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-700);
}

.why-us-content {
    display: flex;
    flex-direction: column;
}

.why-us-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.why-us-card-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.showcase-stamp {
    display: inline-block;
    border: 2px dashed rgba(245, 158, 11, 0.4);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 11px;
    color: var(--gold-300);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 14px;
}

.shopping-confidence-section {
    padding: 20px 0;
}

.confidence-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .confidence-divider {
        display: none;
    }
}


/* Stepper +/- and Empty View Utilities */
.stepper-btn.minus,
.stepper-btn.plus {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
}

.cart-empty-view {
    text-align: center;
    padding: 60px 24px;
}

.cart-empty-icon {
    font-size: 54px;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.banner-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}