/* TheFragranceLK - Premium Perfume E-Commerce Styles */

:root {
    --gold: #C8A951;
    --gold-light: #D4BC72;
    --gold-dark: #A88B3D;
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-400: #AAAAAA;
    --gray-300: #CCCCCC;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --cream: #FAFAF7;
    --danger: #DC3545;
    --success: #28A745;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0.75rem auto 1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 169, 81, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--black);
    color: var(--gray-300);
    font-size: 0.8rem;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold); }

/* ===== Header ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-900);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Header Action Buttons */
.header-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-900);
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-toggle:hover {
    color: var(--gold);
    background: rgba(200,169,81,0.08);
}

.header-cart-btn {
    position: relative;
    padding: 8px;
    color: var(--gray-900);
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart-btn:hover {
    color: var(--gold);
    background: rgba(200,169,81,0.08);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--white);
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.1s ease;
}

.cart-badge.pop {
    animation: cartBadgePop 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes cartBadgePop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.6); }
    70%  { transform: scale(0.88); }
    100% { transform: scale(1); }
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

/* ===== Search Drawer ===== */
.search-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-drawer.open {
    opacity: 1;
    visibility: visible;
}

.search-drawer-form {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 32px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateY(-20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-drawer.open .search-drawer-form {
    transform: translateY(0) scale(1);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 16px;
    transition: var(--transition);
}

.search-input-wrap:focus-within {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,169,81,0.1);
}

.search-input-wrap svg {
    stroke: var(--gray-500);
    flex-shrink: 0;
}

.search-input-wrap:focus-within svg {
    stroke: var(--gold);
}

.search-input-wrap input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.95rem;
    color: var(--gray-900);
    outline: none;
    font-family: var(--font-body);
}

.search-input-wrap input::placeholder {
    color: var(--gray-400);
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-radius: 50%;
}

.search-close-btn:hover {
    color: var(--gray-900);
    background: rgba(0,0,0,0.05);
}

.search-suggestions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.search-suggestion-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.search-suggestion-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.search-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--gray-700);
    transition: var(--transition);
    font-weight: 500;
}

.search-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,169,81,0.06);
}

/* ===== Mobile Sidebar ===== */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(2px);
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 310px;
    max-width: 85vw;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.mobile-sidebar-close:hover {
    background: var(--gray-100);
    color: var(--black);
}

.mobile-sidebar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 20px;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.mobile-sidebar-search:focus-within {
    background: var(--white);
    border-color: var(--gold);
}

.mobile-sidebar-search svg {
    stroke: var(--gray-400);
    flex-shrink: 0;
}

.mobile-sidebar-search input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.88rem;
    outline: none;
    color: var(--gray-900);
    font-family: var(--font-body);
}

.mobile-sidebar-search input::placeholder {
    color: var(--gray-400);
}

.mobile-sidebar-nav {
    padding: 8px 12px;
}

.mobile-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(200,169,81,0.08);
    color: var(--gold);
}

.mobile-sidebar-nav a svg {
    flex-shrink: 0;
}

.mobile-sidebar-nav a.active svg {
    stroke: var(--gold);
}

.mobile-sidebar-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 8px 20px;
}

.mobile-sidebar-categories {
    padding: 8px 20px 16px;
}

.mobile-sidebar-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 10px;
    padding: 0 4px;
}

.mobile-sidebar-categories a {
    display: block;
    padding: 10px 12px;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-sidebar-categories a:hover {
    background: var(--gray-100);
    color: var(--gold);
}

.mobile-sidebar-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.mobile-sidebar-contact:hover {
    color: var(--gold);
}

.mobile-sidebar-contact svg {
    flex-shrink: 0;
}

/* ===== Toast Notification ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--font-body);
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-width: 360px;
}

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

.toast-notification.success {
    background: var(--black);
    color: var(--white);
    border-left: 4px solid var(--gold);
}

.toast-notification.error {
    background: #dc2626;
    color: var(--white);
}

/* ===== Home Hero — Full Background ===== */
.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
}

/* Background image layer */
.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

/* Responsive hero banner visibility */
.hero-mobile-only { display: none; }
.hero-desktop-only { display: block; }

@media (max-width: 768px) {
    .hero-mobile-only { display: block; }
    .hero-desktop-only { display: none; }
}

/* Dark overlay — sits on top of the image */
.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 15, 0.45) 0%,
            rgba(10, 10, 15, 0.35) 40%,
            rgba(10, 10, 15, 0.50) 70%,
            rgba(10, 10, 15, 0.78) 100%
        );
}

/* Gold vignette — subtle warm glow at edges */
.home-hero-gold-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 50% 55%, rgba(200,169,81,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(200,169,81,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 20%, rgba(200,169,81,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Particle canvas */
#hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Content container */
.home-hero-inner {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 0 60px;
}

.home-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
    justify-content: center;
}

#hero-rotating-text {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#hero-rotating-text.fading {
    opacity: 0;
    transform: translateY(-6px);
}

.tag-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.home-hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.gold-text {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

/* Subtle gold shimmer underline */
.gold-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.5;
}

.home-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
}

.home-hero-actions .btn {
    white-space: nowrap;
}

.home-hero-actions .btn-gold svg {
    transition: transform 0.3s ease;
}

.home-hero-actions .btn-gold:hover svg {
    transform: translateX(4px);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,169,81,0.08);
}

.home-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
}

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

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated,
.animated {
    opacity: 1;
    transform: translate(0);
}

/* ===== Product Cards ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}

.product-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
    border-color: #ddd;
}

/* --- Image Area --- */
.product-card-image {
    position: relative;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    overflow: hidden;
}

.product-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Add to Cart Slide-up Bar --- */
.product-card-atc-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    padding: 12px 16px;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease;
}

.product-card:hover .product-card-atc-icon {
    transform: translateY(0);
}

.product-card-atc-icon:hover {
    background: var(--gold-dark);
}

.product-card-atc-icon:active {
    background: var(--gold-dark);
    transform: translateY(0) scale(0.99);
}

.product-card-atc-icon svg {
    flex-shrink: 0;
    stroke: var(--white);
}

/* --- Badges --- */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 4px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.badge-sale {
    background: #E53E3E;
    color: var(--white);
}

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

.badge-featured {
    background: var(--black);
    color: var(--white);
}

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

.product-card-brand {
    display: block;
    font-size: 0.62rem;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-card-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-card-name a {
    transition: color 0.2s ease;
    color: inherit;
}

.product-card-name a:hover {
    color: var(--gold);
}

.product-card-size {
    display: block;
    font-size: 0.72rem;
    color: #aaa;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

/* --- Pricing --- */
.product-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.price-current.sale {
    color: #E53E3E;
}

.price-original {
    font-size: 0.78rem;
    color: #bbb;
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.72rem;
    color: var(--danger);
    font-weight: 600;
}

/* --- Koko Installment --- */
.product-card-koko {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f2f2f2;
}

.koko-text {
    font-size: 0.68rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.3;
    white-space: nowrap;
}

.koko-logo {
    height: 16px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* --- Legacy (hidden) --- */
.product-card-overlay { display: none; }
.quick-action-btn { display: none; }
.product-card-atc-btn { display: none; }
.product-card-wishlist { display: none; }

/* Hidden in grid, shown in list */
.product-card-desc,
.product-card-list-actions {
    display: none;
}

/* ===== List View ===== */
.product-grid.list-view {
    grid-template-columns: 1fr;
    gap: 16px;
}

.product-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-radius: 12px;
}

.product-grid.list-view .product-card-image {
    aspect-ratio: unset;
    height: 100%;
    min-height: 200px;
    align-self: stretch;
    border-radius: 12px 0 0 12px;
}

.product-grid.list-view .product-card-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-grid.list-view .product-card-name {
    font-size: 1.15rem;
    -webkit-line-clamp: 1;
    margin-bottom: 6px;
}

.product-grid.list-view .product-card-desc {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 8px 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-grid.list-view .product-card-list-actions {
    display: none;
}

.product-grid.list-view .product-card-overlay {
    display: none;
}

.product-grid.list-view .product-card-atc-btn {
    display: none;
}

.product-grid.list-view .product-card:hover .product-card-atc-icon {
    transform: translateY(0);
}

/* ===== Section Spacing ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--black); color: var(--white); }

/* ===== Trust Bar ===== */
/* ===== Home Section Layout ===== */
.home-section {
    padding: 80px 0;
}

.home-section-alt {
    background: var(--cream);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title-lg {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-top: 8px;
    max-width: 440px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    white-space: nowrap;
    padding-bottom: 4px;
}

.section-link:hover {
    color: var(--gold-dark);
}

.section-link svg {
    transition: transform 0.3s ease;
}

.section-link:hover svg {
    transform: translateX(4px);
}

/* Uppercase section title variant */
.section-title-uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
}

/* ===== Product Tabs Nav (ExclusiveLines style) ===== */
.product-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.product-tab-btn {
    background: none;
    border: none;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.product-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-tab-btn:hover {
    color: var(--black);
}

.product-tab-btn.active {
    color: var(--black);
}

.product-tab-btn.active::after {
    transform: scaleX(1);
}

/* Desktop: flex column with ordered sections, hide mobile-only UI */
.home-main-sections {
    display: flex;
    flex-direction: column;
}

/* Desktop section order: Best Sellers → Categories → Featured → Sale → Offers */
.home-main-sections #tab-popular                { order: 1; }
.home-main-sections .home-categories-section    { order: 2; }
.home-main-sections #tab-featured               { order: 3; }
.home-main-sections #tab-onsale                 { order: 4; }
.home-main-sections .home-offers-inner-section  { order: 5; }
.home-main-sections .home-products-mobile-header { order: 99; }
.home-main-sections .home-products-mobile-footer { order: 100; }

.home-products-mobile-header {
    display: none;
}

.home-products-mobile-footer {
    display: none;
}

.panel-mobile-header {
    display: none;
}

.home-main-sections .product-tab-panel {
    display: block;
}

.panel-desktop-header {
    margin-bottom: 32px;
}

.panel-desktop-header .section-header {
    margin-bottom: 0;
}

/* View All button centered */
.section-view-all {
    text-align: center;
    margin-top: 48px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--black);
    color: var(--black);
    background: transparent;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline-dark:hover svg {
    stroke: var(--white);
}

/* Promo section spacing */
.home-promo-section {
    padding: 40px 0 60px;
}

.home-product-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== Home Categories ===== */
.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

/* First two cards (For Him, For Her) each span both rows */
.home-category-card:nth-child(1),
.home-category-card:nth-child(2) {
    grid-row: span 2;
}

.home-category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-category-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.home-category-card:nth-child(2) { transition-delay: 0.1s; }
.home-category-card:nth-child(3) { transition-delay: 0.2s; }
.home-category-card:nth-child(4) { transition-delay: 0.3s; }

.home-category-bg {
    position: absolute;
    inset: 0;
}

.home-category-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-category-card:hover .home-category-bg img {
    transform: scale(1.06);
}

.home-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.82) 100%
    );
    transition: background 0.4s ease;
}

.home-category-card:hover .home-category-overlay {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.85) 100%
    );
}

.home-category-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.home-category-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.home-category-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.home-category-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    max-width: 280px;
    line-height: 1.6;
}

.home-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.home-category-card:hover .home-category-link {
    gap: 10px;
}

/* ===== Gender Split ===== */
.gender-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gender-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gender-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.gender-card:nth-child(2) { transition-delay: 0.15s; }

.gender-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.gender-card:hover .gender-card-bg {
    transform: scale(1.05);
}

.gender-card--men .gender-card-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
}

.gender-card--women .gender-card-bg {
    background: linear-gradient(135deg, #2d2d3d 0%, #4a3f5e 100%);
}

.gender-card-content {
    position: relative;
    z-index: 2;
    padding: 48px;
}

.gender-card-tag {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.gender-card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.gender-card-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    max-width: 260px;
    line-height: 1.6;
}

.gender-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.gender-card:hover .gender-card-link {
    gap: 10px;
}

/* ===== Home Brands ===== */
.home-brands-section {
    padding: 80px 0;
    background: var(--cream);
}

.home-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.home-brand-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.home-brand-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.home-brand-item:nth-child(2) { transition-delay: 0.05s; }
.home-brand-item:nth-child(3) { transition-delay: 0.1s; }
.home-brand-item:nth-child(4) { transition-delay: 0.15s; }
.home-brand-item:nth-child(5) { transition-delay: 0.2s; }
.home-brand-item:nth-child(6) { transition-delay: 0.25s; }
.home-brand-item:nth-child(7) { transition-delay: 0.3s; }
.home-brand-item:nth-child(8) { transition-delay: 0.35s; }

.home-brand-item:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(200,169,81,0.12);
    transform: translateY(-2px);
}

/* ===== Home Promo Grid ===== */
.home-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-promo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.home-promo-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.home-promo-card:nth-child(2) { transition-delay: 0.1s; }
.home-promo-card:nth-child(3) { transition-delay: 0.2s; }

.home-promo-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.home-promo-bg {
    position: absolute;
    inset: 0;
}

.home-promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-promo-card:hover .home-promo-bg img {
    transform: scale(1.06);
}

.home-promo-pattern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d3d 100%);
}

.home-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.75) 100%);
}

.home-promo-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    color: var(--white);
}

.home-promo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 4px;
}

.home-promo-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.home-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.home-promo-card:hover .home-promo-btn {
    gap: 8px;
}

/* ===== Home Offers Section ===== */
.home-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.home-offers-grid--count-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}
.home-offers-grid--count-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}
.home-offers-grid--count-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.home-offer-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.home-offer-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.home-offer-link { display: block; }
.home-offer-info {
    padding: 16px 20px;
}
.home-offer-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.home-offer-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}
.offer-in-store-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ===== Offer Popup ===== */
@keyframes offerPopupIn {
    0%   { opacity: 0; transform: translateY(-80px) scale(0.85); }
    55%  { opacity: 1; transform: translateY(10px)  scale(1.03); }
    75%  { opacity: 1; transform: translateY(-4px)  scale(0.98); }
    100% { opacity: 1; transform: translateY(0)     scale(1); }
}
@keyframes offerShimmer {
    0%   { transform: translateX(-200%) skewX(-15deg); }
    100% { transform: translateX(400%)  skewX(-15deg); }
}
@keyframes offerGlowPulse {
    0%, 100% {
        box-shadow: 0 32px 80px rgba(0,0,0,0.45),
                    0 0 0 2px rgba(212,175,55,0.4);
    }
    50% {
        box-shadow: 0 32px 80px rgba(0,0,0,0.45),
                    0 0 0 6px rgba(212,175,55,0.9),
                    0 0 28px 4px rgba(212,175,55,0.35);
    }
}
@keyframes offerClosePop {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1);  opacity: 1; }
}

.offer-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.offer-popup-overlay.offer-popup-visible {
    opacity: 1;
    pointer-events: auto;
}
.offer-popup {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow:
        0 32px 80px rgba(0,0,0,0.45),
        0 0 0 2px rgba(212,175,55,0.4);
    opacity: 0;
    transform: translateY(-80px) scale(0.85);
}
.offer-popup-visible .offer-popup {
    animation: offerPopupIn 0.65s cubic-bezier(0.34, 1.28, 0.64, 1) 0.1s forwards,
               offerGlowPulse 1s ease-in-out 0.8s 4;
}
/* shimmer streak — uses transform so overflow:hidden clips it cleanly */
.offer-popup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%
    );
    transform: translateX(-200%) skewX(-15deg);
    pointer-events: none;
    z-index: 3;
}
.offer-popup-visible .offer-popup::after {
    animation: offerShimmer 0.8s ease-out 0.7s 1 forwards;
}
.offer-popup img {
    width: 100%;
    display: block;
}
.offer-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: 2px solid rgba(212,175,55,0.7);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    line-height: 1;
    transform: scale(0);
    opacity: 0;
    transition: background 0.2s, border-color 0.2s;
}
.offer-popup-visible .offer-popup-close {
    animation: offerClosePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}
.offer-popup-close:hover {
    background: rgba(0,0,0,0.9);
    border-color: rgba(212,175,55,1);
}
.offer-popup-img-link { display: block; }

/* Glowing particles in the backdrop */
@keyframes offerParticleFloat {
    0%   { opacity: 0;   transform: translate(0, 0)              scale(0.4); }
    18%  { opacity: 1; }
    82%  { opacity: 0.8; }
    100% { opacity: 0;   transform: translate(var(--drift, 0px), -65px) scale(1.2); }
}
.offer-particle {
    position: absolute;
    left: var(--x, 50%);
    top:  var(--y, 50%);
    width:  var(--size, 5px);
    height: var(--size, 5px);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%,
        rgba(255,248,160,1)   0%,
        rgba(212,175,55,0.85) 48%,
        transparent           100%
    );
    box-shadow:
        0 0  4px 1px rgba(212,175,55,0.95),
        0 0 10px 3px rgba(212,175,55,0.45),
        0 0 22px 6px rgba(212,175,55,0.18);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: offerParticleFloat var(--dur, 4s) ease-in var(--delay, 0s) infinite;
}

/* ===== Home CTA ===== */
.home-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0e0e14 0%, #1a1a2e 100%);
}

.home-cta-bg {
    position: absolute;
    inset: 0;
}

.home-cta-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(200,169,81,0.06) 0%, transparent 70%);
}

.home-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-cta-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.home-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.home-cta-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.home-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 60px 0 0;
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    color: var(--gray-500);
}

.footer h4 {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--gray-500);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom .logo img {
    height: 30px;
    filter: brightness(0) invert(1);
}

/* ===== Shop Page ===== */
.shop-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2D2D3D 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
}
.shop-breadcrumb::-webkit-scrollbar { display: none; }

.shop-breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.shop-breadcrumb span { white-space: nowrap; flex-shrink: 0; }

.shop-breadcrumb a:hover { color: var(--gold); }
.shop-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.shop-hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    max-width: 480px;
}

.shop-section {
    padding: 0 0 80px;
    background: var(--white);
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.active-filters-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-right: 4px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--cream);
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--gray-700);
    transition: var(--transition);
    text-decoration: none;
}

.filter-tag:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: #fff5f5;
}

.filter-tag svg { opacity: 0.5; }
.filter-tag:hover svg { opacity: 1; }

.filter-clear-all {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    margin-left: 4px;
}

.filter-clear-all:hover { color: var(--gold-dark); text-decoration: underline; }

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 32px 0;
    position: relative;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.shop-sidebar::-webkit-scrollbar { width: 4px; }
.shop-sidebar::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

.sidebar-inner {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-header h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
}

.sidebar-header h3 i { color: var(--gold); font-size: 0.85rem; }

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
}

.sidebar-close:hover { color: var(--black); background: var(--gray-100); }

/* Filter Groups */
.filter-group {
    border-bottom: 1px solid var(--gray-100);
}

.filter-group:last-of-type { border-bottom: none; }

.filter-group-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--black);
    transition: var(--transition);
}

.filter-group-header:hover { color: var(--gold); }

.filter-group-header .chevron {
    transition: transform 0.3s ease;
}

.filter-group-header[aria-expanded="false"] .chevron {
    transform: rotate(-90deg);
}

.filter-group-body {
    padding: 0 20px 16px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

.filter-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.filter-option input:checked ~ .filter-check {
    border-color: var(--gold);
    background: var(--gold);
}

.filter-option input:checked ~ .filter-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.filter-label {
    font-size: 0.88rem;
    color: var(--gray-700);
    flex: 1;
    transition: var(--transition);
}

.filter-count {
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 1px 8px;
    border-radius: 100px;
}

/* Price range */
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    overflow: hidden;
    flex: 1;
    transition: var(--transition);
}

.price-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}

.price-currency {
    padding: 0 8px;
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
    background: var(--gray-100);
    height: 36px;
    display: flex;
    align-items: center;
}

.price-input-wrap input {
    border: none;
    outline: none;
    padding: 8px;
    width: 100%;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.price-separator {
    color: var(--gray-300);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.price-quick-picks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.price-quick {
    padding: 6px 8px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    font-size: 0.75rem;
    color: var(--gray-700);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-family: var(--font-body);
}

.price-quick:hover,
.price-quick.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,169,81,0.05);
}

/* Sale Toggle */
.sale-toggle-group {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.sale-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.sale-toggle input { display: none; }

.toggle-track {
    width: 40px;
    height: 22px;
    background: var(--gray-300);
    border-radius: 11px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.sale-toggle input:checked ~ .toggle-track {
    background: var(--gold);
}

.sale-toggle input:checked ~ .toggle-track .toggle-thumb {
    left: 20px;
}

.toggle-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Filter Actions Button */
.filter-actions {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-apply-btn {
    width: 100%;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.82rem;
}

.filter-clear-btn {
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.8rem;
    text-align: center;
}

/* Sidebar Overlay (mobile) */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Shop content area */
.shop-content {
    min-width: 0;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    gap: 16px;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-filter-mobile {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    position: relative;
}

.btn-filter-mobile:hover { border-color: var(--gold); color: var(--gold); }

.filter-badge {
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.results-count {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.results-count strong { color: var(--gray-700); font-weight: 600; }

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* View Toggle */
.view-toggle {
    display: flex;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    padding: 7px 10px;
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn + .view-btn { border-left: 1px solid var(--gray-300); }

.view-btn.active,
.view-btn:hover {
    color: var(--gold);
    background: rgba(200,169,81,0.06);
}

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

.sort-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    white-space: nowrap;
    font-weight: 500;
}

.sort-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    cursor: pointer;
    background: var(--white);
    color: var(--gray-700);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: var(--transition);
}

.sort-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}

/* Search Notice */
.search-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.search-notice i { color: var(--gold); }

.search-clear {
    margin-left: auto;
    color: var(--gray-500);
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
}

.search-clear:hover { color: var(--danger); background: rgba(220,53,69,0.08); }

/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.pagination-info {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* Empty State */
.shop-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 440px;
    margin: 0 auto;
}

.shop-empty-icon {
    margin-bottom: 24px;
}

.shop-empty h3 {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.shop-empty p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

/* ===== Product Detail ===== */
.product-detail {
    padding: 40px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.product-main-image {
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

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

.product-main-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-thumbs {
    display: flex;
    gap: 8px;
}

.product-thumbs .thumb {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.product-thumbs .thumb.active,
.product-thumbs .thumb:hover {
    border-color: var(--gold);
}

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

.product-info .product-brand {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.product-info .product-brand:hover {
    color: var(--gold-light);
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.product-info .product-sku {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.product-price-detail {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.product-price-detail .price-current {
    font-size: 1.8rem;
    font-weight: 700;
}

.product-price-detail .price-original {
    font-size: 1.1rem;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.meta-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: baseline;
    gap: 0 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-900);
    line-height: 1.5;
}
.meta-item:last-child { border-bottom: none; }
.meta-item span {
    color: var(--gray-500);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    flex-shrink: 0;
}

.product-short-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 28px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-selector button:hover { background: var(--gray-100); }
.quantity-selector input {
    width: 50px;
    height: 40px;
    border: 1px solid var(--gray-300);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.product-actions .btn { flex: 1; }

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.in-stock .stock-dot { background: var(--success); }
.out-of-stock .stock-dot { background: var(--danger); }

.product-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-500);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ===== Shared Page Hero (Offers, Contact, Cart) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2D2D3D 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.page-hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    max-width: 480px;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.78rem;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero-breadcrumb a:hover {
    color: var(--gold);
}

.page-hero-breadcrumb span {
    color: rgba(255,255,255,0.25);
    margin: 0 8px;
}

.page-hero-breadcrumb .current {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.page-content {
    padding: 48px 0 80px;
    background: var(--white);
}

/* ===== Trust Badges ===== */
.trust-badges {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-badge-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ===== Product Detail Section ===== */
.product-detail-section {
    padding: 24px 0 60px;
    background: var(--white);
}

.product-koko-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.product-koko-line span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.product-koko-line img {
    height: 22px;
    width: auto;
}

.badge-inline {
    position: static;
    font-size: 0.75rem;
}

/* Product Payment Options */
.product-payment-options {
    margin-top: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 16px;
}

.product-payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.product-payment-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.product-payment-banner {
    height: 36px;
    width: auto;
    border-radius: 4px;
}

.product-payment-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 6px 10px;
}

.product-payment-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.product-payment-badge span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
}

.product-payment-koko-img {
    height: 28px;
    width: auto;
}

.product-payment-badge .product-payment-koko-img + span {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* ===== Product Related Section ===== */
.product-related-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

/* ===== Offers Page ===== */
.offers-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 28px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 32px;
}

.offers-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(200, 169, 81, 0.08);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
}

.offers-badge svg { stroke: var(--gold); }

/* ===== Cart Page (Clean / ExclusiveLines style) ===== */
.cart-breadcrumb-bar {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
}

.cart-page {
    padding: 24px 0 60px;
    background: var(--white);
}

.cart-page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    color: var(--gray-900);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* Table header row (desktop only) */
.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
}

/* Each cart row */
.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: background-color 0.15s;
    position: relative;
}

.cart-row:hover {
    background-color: var(--gray-50);
    border-radius: 8px;
}

.cart-product-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-product-img {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--gray-50);
    flex-shrink: 0;
    border: 1px solid var(--gray-100);
}

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

.cart-product-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.4;
}

.cart-product-size {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.cart-product-unit-price {
    display: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 6px;
}

/* Mobile label (hidden on desktop) */
.cart-price-label {
    display: none;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.cart-col-price {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.cart-col-total {
    text-align: right;
}

/* On desktop, dissolve the mobile wrapper so qty+total sit in their own grid columns */
.cart-bottom-row {
    display: contents;
}

.cart-row-total {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    display: block;
}

.cart-remove-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray-400);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
    padding: 0;
}

.cart-remove-link:hover { color: var(--danger); }

.cart-remove-form { 
    position: absolute;
    top: 8px;
    right: 0;
    display: inline;
}

/* Quantity controls (shared) */
.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: var(--gray-50);
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.qty-btn:hover { background: var(--gray-200); }

.qty-input {
    width: 42px;
    height: 34px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    outline: none;
    font-family: var(--font-body);
    -moz-appearance: textfield;
}

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

.cart-continue {
    margin-top: 24px;
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: var(--transition);
}

.cart-continue-link:hover { color: var(--gold); }

/* Cart Summary Sidebar */
.cart-summary {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cart-summary-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-summary-lines { margin-bottom: 20px; }

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.free-shipping {
    color: #28a745;
    font-weight: 500;
}

.cart-free-shipping-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    background: rgba(200, 169, 81, 0.06);
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--gray-600);
}

.cart-free-shipping-note svg { stroke: var(--gold); flex-shrink: 0; }
.cart-shipping-text { white-space: nowrap; }

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0;
    margin-bottom: 20px;
    border-top: 2px solid var(--gray-200);
}

.cart-summary-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
}

.cart-total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Shared checkout button */
.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-checkout:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.cart-trust-items {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

.cart-trust-item svg { stroke: var(--gold); flex-shrink: 0; }

/* Empty cart */
.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-icon { margin-bottom: 24px; }

.cart-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cart-empty p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact Page ===== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-inner {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 40px 32px 32px;
    color: var(--white);
}

.contact-info-header {
    margin-bottom: 32px;
}

.contact-info-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-info-header p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info-inner .contact-info-cards { margin-bottom: 32px; }

.contact-info-inner .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-inner .contact-card:last-child { border-bottom: none; }

.contact-info-inner .contact-card-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,169,81,0.12);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-inner .contact-card-icon svg { stroke: var(--gold); }

.contact-info-inner .contact-card-text h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-info-inner .contact-card-text p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.contact-info-inner .contact-card-text a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}

.contact-info-inner .contact-card-text a:hover { color: var(--gold); }

.contact-info-inner .contact-social h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.4);
}

.contact-info-inner .contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-info-inner .social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-info-inner .social-circle:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Map Placeholder */
/* ===== Contact Map Section ===== */
.contact-map-section {
    padding: 60px 0 0;
    background: var(--white);
}

.contact-map-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-map-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-map-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-map-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.contact-map-wrap {
    position: relative;
    width: auto;
    height: 420px;
    background: var(--gray-100);
    margin: 0 24px 40px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-map-overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 40px 0 20px;
}

.contact-map-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-map-bar-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-map-bar-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 36px;
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form-intro {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.contact-submit-btn svg { stroke: currentColor; }

/* ===== Shared Form Styles ===== */
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--gray-700);
}

.form-group label .required { color: #C1121F; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gray-900);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.form-control.is-invalid { border-color: #C1121F; }

.error-text {
    display: block;
    font-size: 0.78rem;
    color: #C1121F;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

textarea.form-control { resize: vertical; min-height: 100px; }

/* ===== Checkout (Clean / ExclusiveLines style) ===== */
.checkout-page {
    padding: 24px 0 60px;
    background: var(--white);
}

.co-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.co-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.co-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}

.co-section:first-child { padding-top: 0; }

.co-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.co-section-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.co-form-row {
    margin-bottom: 16px;
}

.co-form-row.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.co-form-row:last-child { margin-bottom: 0; }

.co-field { display: flex; flex-direction: column; }
.co-field.full { width: 100%; }

.co-field label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    color: var(--gray-600);
}

.co-field label .required { color: #C1121F; }

.co-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

.co-input:focus {
    outline: none;
    border-color: var(--gray-900);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.co-input.is-invalid { border-color: #C1121F; }

.co-error {
    display: block;
    font-size: 0.75rem;
    color: #C1121F;
    margin-top: 4px;
}

textarea.co-input { resize: vertical; min-height: 64px; }

/* Shipping method box */
.co-shipping-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px 20px;
}

.co-shipping-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.co-shipping-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
}

.co-shipping-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
}

.co-shipping-price.free-shipping { color: #28a745; }

.co-shipping-note {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 8px;
    margin-bottom: 0;
}

/* Payment options (radio card style) */
.co-payment-options {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.co-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.co-payment-option:last-child { border-bottom: none; }

.co-payment-option:hover { background: var(--gray-50); }

.co-payment-option.active {
    background: rgba(200, 169, 81, 0.04);
}

.co-payment-option input[type="radio"] { display: none; }

.co-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}

.co-payment-option.active .co-radio {
    border-color: var(--gray-900);
}

.co-payment-option.active .co-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-900);
}

.co-payment-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.co-payment-badges {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.co-payment-badges img { height: 16px; opacity: 0.85; }

/* Bank info panel */
.co-bank-info { margin-top: 16px; }

.co-bank-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 20px;
}

.co-bank-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.co-bank-card > p {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.co-bank-details {
    background: var(--white);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 14px;
}

.co-bank-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.82rem;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}

.co-bank-row:last-child { border-bottom: none; }

.co-bank-row strong { color: var(--gray-900); }

.co-bank-notice {
    font-size: 0.8rem;
    color: var(--gray-600);
    background: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
    margin: 0;
    line-height: 1.5;
}

/* Order summary sidebar */
.co-sidebar {
    position: sticky;
    top: 100px;
}

.co-summary {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
}

.co-summary-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.co-summary-items {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.co-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.co-item:last-child { margin-bottom: 0; }

.co-item-img-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.co-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.co-item-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gray-700);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.co-item-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.4;
    display: block;
}

.co-item-variant {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.co-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--gray-900);
}

.co-summary-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.co-summary-row.co-summary-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--gray-200);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.co-trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.co-trust-line svg { stroke: var(--gray-400); flex-shrink: 0; }

/* ===== Breadcrumbs (legacy) ===== */
.breadcrumbs {
    font-size: 0.8rem;
    padding: 16px 0;
    color: var(--gray-500);
}

.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; }

/* ===== Pagination ===== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 4px;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.85rem;
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.pagination .disabled span {
    color: var(--gray-300);
    cursor: not-allowed;
}

/* ===== Alerts (fixed bottom-right toast) ===== */
.alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-width: 400px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    margin: 0;
}

.alert.alert-show {
    transform: translateX(0);
    opacity: 1;
}

.alert-success {
    background: var(--black);
    color: var(--white);
    border-left: 4px solid #2D6A4F;
}

.alert-error {
    background: var(--black);
    color: var(--white);
    border-left: 4px solid #dc2626;
}

.alert-warning {
    background: var(--black);
    color: var(--white);
    border-left: 4px solid var(--gold);
}

/* ===== Lazy Load Placeholder ===== */
.lazy-placeholder {
    background: var(--gray-100);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== Order Confirmation Page ===== */
.oc-page {
    background: var(--cream);
    padding: 52px 0 80px;
    min-height: 70vh;
}
.oc-wrap {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero */
.oc-hero {
    text-align: center;
    padding: 44px 24px 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}
@keyframes oc-pop {
    0%   { transform: scale(0.4); opacity: 0; }
    65%  { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); }
}
.oc-check-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34A853, #2D6A4F);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 24px rgba(45,106,79,0.32);
    animation: oc-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.oc-confirmed-tag {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2D6A4F;
    background: rgba(45,106,79,0.1);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 12px;
}
.oc-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 8px;
}
.oc-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 360px;
    margin: 0 auto 22px;
    line-height: 1.6;
}
.oc-order-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 10px 20px;
    white-space: nowrap;
}
.oc-order-badge-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-500);
    font-weight: 600;
}
.oc-order-badge-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

/* Progress tracker */
.oc-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.oc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}
.oc-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    background: var(--white);
    flex-shrink: 0;
}
.oc-step--done .oc-step-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(200,169,81,0.3);
}
.oc-step--active .oc-step-dot {
    background: var(--white);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,169,81,0.12);
}
.oc-step span {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray-400);
    white-space: nowrap;
}
.oc-step--done span,
.oc-step--active span {
    color: var(--gray-700);
}
.oc-step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin-bottom: 28px;
    min-width: 20px;
}
.oc-step-line--done {
    background: var(--gold);
}

/* Cards */
.oc-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.oc-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-100);
}
.oc-card-head h3 {
    font-size: 0.98rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}
.oc-card-head h3 svg {
    color: var(--gold);
    flex-shrink: 0;
}
.oc-count-pill {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(200,169,81,0.12);
    color: var(--gold-dark);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.3px;
}

/* Detail grid */
.oc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}
.oc-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.oc-detail-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-400);
}
.oc-detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}
.oc-status-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}
.oc-address-block {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.oc-address-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Items list */
.oc-items-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}
.oc-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-100);
    gap: 12px;
}
.oc-item-row:last-child {
    border-bottom: none;
}
.oc-item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.oc-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.4;
}
.oc-item-sku {
    font-size: 0.72rem;
    color: var(--gray-400);
    letter-spacing: 0.3px;
}
.oc-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.oc-item-qty {
    font-size: 0.8rem;
    color: var(--gray-400);
}
.oc-item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 80px;
    text-align: right;
}

/* Totals */
.oc-totals {
    border-top: 1px solid var(--gray-200);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.oc-totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.87rem;
    color: var(--gray-700);
}
.oc-totals-discount span:last-child {
    color: var(--danger);
    font-weight: 600;
}
.oc-totals-grand {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid var(--gray-200);
}

/* Bank card */
.oc-bank-card {
    background: #FFFCF0;
    border-color: rgba(200,169,81,0.28);
}
.oc-bank-intro {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 14px;
}
.oc-bank-table {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    margin-bottom: 14px;
}
.oc-bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.84rem;
    gap: 12px;
}
.oc-bank-row:last-child {
    border-bottom: none;
}
.oc-bank-label {
    color: var(--gray-500);
    flex-shrink: 0;
}
.oc-bank-val {
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
}
.oc-bank-acct {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 1px;
}
.oc-bank-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(200,169,81,0.08);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.83rem;
    color: var(--gray-700);
    line-height: 1.55;
}
.oc-bank-note svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.oc-link {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.oc-link:hover { color: var(--gold); }

/* COD card */
.oc-cod-card {
    background: #F0FAF2;
    border-color: rgba(40,167,69,0.25);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
}
.oc-cod-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(40,167,69,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D6A4F;
    flex-shrink: 0;
}
.oc-cod-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.oc-cod-text strong {
    font-size: 0.9rem;
    color: #2D6A4F;
    font-weight: 700;
}
.oc-cod-text p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin: 0;
}

/* Email notice */
.oc-email-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--gray-500);
    text-align: center;
    white-space: nowrap;
}
.oc-email-notice svg {
    color: var(--gray-400);
    flex-shrink: 0;
}
.oc-email-notice strong {
    color: var(--gray-700);
}
.oc-email-notice-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Actions */
.oc-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 4px;
    padding-bottom: 8px;
}

/* ===== Policy Pages ===== */
.policy-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.policy-updated {
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.policy-section {
    margin-bottom: 36px;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.policy-section p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.policy-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.policy-list li strong {
    color: var(--gray-900);
}

.policy-link {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-link:hover {
    color: var(--gold);
}

.policy-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.policy-table th {
    background: var(--gray-100);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-200);
}

.policy-table td {
    padding: 12px 16px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.policy-table tbody tr:last-child td {
    border-bottom: none;
}

.policy-highlight {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: #FFF8E1;
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    margin: 16px 0;
}

.policy-highlight svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-dark);
}

.policy-highlight p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--gray-700);
    margin: 0;
}

.policy-note {
    font-size: 0.85rem !important;
    color: var(--gray-500) !important;
    font-style: italic;
    margin-top: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .home-product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .shop-layout { grid-template-columns: 240px 1fr; gap: 28px; }
    .product-detail-grid { gap: 40px; }
    .home-hero { min-height: 80vh; }
    .home-hero-title { font-size: 3.2rem; }
    .home-categories-grid { grid-template-rows: repeat(2, 260px); }
    .home-category-content { padding: 36px; }
    .home-category-content h3 { font-size: 1.7rem; }
    .home-promo-grid { gap: 16px; }
    .home-offers-grid { grid-template-columns: repeat(3, 1fr); }
    .home-offers-grid--count-1 { grid-template-columns: 1fr; }
    .home-offers-grid--count-2 { grid-template-columns: repeat(2, 1fr); }
    .home-cta-content h2 { font-size: 2.2rem; }
    .product-grid.list-view .product-card { grid-template-columns: 180px 1fr; }
    .cart-layout { grid-template-columns: 1fr 340px; gap: 32px; }
    .contact-page-grid { gap: 40px; }
}

/* ===== Top Bar Rotation ===== */
.top-bar-rotate {
    transition: opacity 0.4s ease;
}

/* ===== Search Results Dropdown ===== */
.search-results {
    max-height: 360px;
    overflow-y: auto;
    padding: 8px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--gray-900);
    transition: background 0.15s;
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--gray-100);
    flex-shrink: 0;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.search-result-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.search-no-results {
    padding: 24px 20px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-500);
}

/* ===== T&C Toggle ===== */
.cart-tc-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
    user-select: none;
}

.cart-tc-toggle input[type="checkbox"] {
    display: none;
}

.cart-tc-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
    margin-top: 1px;
}

.cart-tc-toggle input:checked + .cart-tc-check {
    background: var(--gold);
    border-color: var(--gold);
}

.cart-tc-toggle input:checked + .cart-tc-check::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart-tc-toggle a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cart-tc-toggle a:hover {
    color: var(--gold-dark);
}

.btn-checkout-disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    /* Search drawer mobile */
    .search-suggestions { display: flex; flex-direction: column; align-items: flex-start; }
    .search-input-wrap { padding: 10px 14px; }

    /* Toast & alert mobile */
    .toast-notification { left: 16px; right: 16px; bottom: 16px; max-width: none; }
    .alert { right: 16px; bottom: 16px; left: 16px; max-width: none; }

    /* Search popup mobile */
    .search-drawer { padding-top: 5vh; }
    .search-drawer-form { margin: 0 16px; padding: 20px; border-radius: 12px; }

    /* Home hero mobile */
    .home-hero { min-height: 75vh; }
    .home-hero-inner { padding: 56px 0 40px; text-align: center; }
    .home-hero-tag { font-size: 0.68rem; letter-spacing: 2px; margin-bottom: 14px; }
    .home-hero-title { font-size: 2.3rem; line-height: 1.1; letter-spacing: -0.3px; }
    .home-hero-desc { font-size: 0.95rem; margin-bottom: 28px; max-width: 90vw; margin-left: auto; margin-right: auto; }
    .home-hero-actions { gap: 12px; margin-bottom: 0; flex-direction: column; align-items: center; }
    .home-hero-stats { display: none; }
    .home-hero-bg-img { object-fit: cover; object-position: center center; }

    /* Home sections mobile */
    .home-section { padding: 40px 0; }
    .home-section-alt { padding: 40px 0; }
    .section-header { flex-direction: row; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .section-header-center { flex-direction: column; align-items: center; }
    .section-header-left { flex: 1; min-width: 0; }
    .section-tag { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 5px; }
    .section-title-lg { font-size: 1.5rem; line-height: 1.2; }
    .section-link { font-size: 0.72rem; flex-shrink: 0; padding-left: 12px; }
    .home-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Home products: mobile tabbed layout + section reordering */
    .home-products-mobile-header { display: block; }
    .home-products-mobile-footer { display: block; padding: 0 0 20px; }
    .panel-mobile-header { display: block; }
    .home-main-sections .product-tab-panel { display: none; }
    .home-main-sections .product-tab-panel.active { display: block; }
    .panel-desktop-header { display: none; }
    .home-main-sections .product-tab-panel .home-section,
    .home-main-sections .product-tab-panel.home-section { padding-top: 0; }
    /* Mobile section order: Our Collection → tab panels → View All → Categories → Offers */
    .home-main-sections .home-products-mobile-header { order: 1; }
    .home-main-sections #tab-popular                { order: 2; }
    .home-main-sections #tab-onsale                 { order: 2; }
    .home-main-sections #tab-featured               { order: 2; }
    .home-main-sections .home-products-mobile-footer { order: 3; }
    .home-main-sections .home-categories-section    { order: 4; }
    .home-main-sections .home-offers-inner-section  { order: 5; }

    /* Categories mobile */
    .home-categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 220px); gap: 16px; }
    .home-category-card:nth-child(1),
    .home-category-card:nth-child(2) { grid-row: span 1; }
    .home-category-content { padding: 28px; }
    .home-category-content h3 { font-size: 1.5rem; }
    .home-category-content p { font-size: 0.82rem; margin-bottom: 14px; }

    /* Brands mobile */
    .home-brands-section { padding: 50px 0; }
    .home-brands-grid { gap: 8px; }
    .home-brand-item { padding: 8px 16px; font-size: 0.8rem; }

    /* Promos mobile */
    .home-promo-grid { grid-template-columns: 1fr; }
    .home-promo-card { min-height: 220px; }

    /* Offers mobile */
    .home-offers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .home-offers-grid--count-1 { grid-template-columns: 1fr; max-width: 320px; }
    .home-offers-grid--count-2, .home-offers-grid--count-3 { max-width: none; }
    .offer-popup { max-width: 90vw; }

    /* CTA mobile */
    .home-cta { padding: 60px 0; }
    .home-cta-content h2 { font-size: 1.8rem; }
    .home-cta-actions { flex-direction: column; align-items: center; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Shop page mobile */
    .shop-hero { padding: 32px 0 28px; }
    .shop-hero-title { font-size: 1.6rem; }
    .shop-hero-sub { font-size: 0.85rem; }

    .shop-layout { grid-template-columns: 1fr; gap: 0; }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        max-height: 100vh;
        z-index: 999;
        background: var(--white);
        transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 8px 0 30px rgba(0,0,0,0.15);
        border-radius: 0;
        overflow-y: auto;
    }

    .shop-sidebar.active { left: 0; }

    .sidebar-inner { border: none; border-radius: 0; }

    .sidebar-close { display: flex; }

    .btn-filter-mobile { display: flex; }

    .sort-label { display: none; }

    .view-toggle { display: none; }

    .shop-toolbar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .shop-toolbar-left { order: 2; width: 100%; }
    .shop-toolbar-right { order: 1; width: 100%; justify-content: space-between; }

    .active-filters { padding: 12px 0; }

    .results-count { font-size: 0.8rem; }

    .shop-pagination { flex-direction: column; gap: 12px; text-align: center; }

    /* List view collapses to single column on mobile */
    .product-grid.list-view .product-card { grid-template-columns: 1fr; }
    .product-grid.list-view .product-card-image { aspect-ratio: 3/4; border-radius: 8px 8px 0 0; }

    .co-grid { grid-template-columns: 1fr; }
    .co-section { padding: 20px 0; }
    .co-sidebar { position: static; }
    .co-summary { padding: 20px; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand p { text-align: center; }
    .footer h4 { text-align: center; }
    .footer ul { list-style: none; padding: 0; }
    .footer ul a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.6rem; }

    /* Product card mobile: ATC as icon button on image */
    .product-card-atc-icon {
        transform: none;
        position: absolute;
        bottom: 8px;
        right: 8px;
        left: auto;
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    }
    .product-card-atc-icon .atc-label { display: none; }
    .product-card-atc-icon svg { width: 17px; height: 17px; margin: 0; flex-shrink: 0; }
    .badge-new { display: none; }

    /* Cart page mobile */
    .cart-page { padding: 20px 0 48px; }
    .cart-page-title { font-size: 1.6rem; margin-bottom: 20px; }
    .cart-layout { grid-template-columns: 1fr; gap: 24px; }
    .cart-table-header { display: none; }
    .cart-items-list { display: flex; flex-direction: column; gap: 12px; margin: 0 2px; }
    .cart-row { display: grid; grid-template-columns: 1fr 1fr; row-gap: 14px; column-gap: 0; padding: 16px 14px; border: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); border-radius: 14px; box-shadow: 0 1px 6px rgba(0,0,0,0.05); background: var(--white); position: relative; }
    .cart-row:hover { background: var(--white); border-radius: 14px; }
    .cart-col-product { grid-column: 1 / -1; padding-bottom: 14px; padding-right: 40px; border-bottom: 1px solid var(--gray-100); }
    .cart-col-price { display: none; }
    .cart-price-label { display: none; }
    .cart-bottom-row { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; }
    .cart-col-qty { display: flex; align-items: center; }
    .cart-col-total { display: flex; flex-direction: column; align-items: flex-end; gap: 0; }
    .cart-remove-form { position: absolute; top: 10px; right: 12px; }
    .cart-product-info { gap: 14px; align-items: flex-start; }
    .cart-product-img { width: 76px; height: 76px; }
    .cart-product-unit-price { display: block; }
    .cart-product-name { font-size: 0.85rem; }
    .cart-row-total { font-size: 0.9rem; white-space: nowrap; }
    .cart-remove-link { margin-top: 0; font-size: 0.7rem; }
    .cart-summary { position: static; }

    /* Order confirmation mobile */
    .oc-page { padding: 32px 0 60px; }
    .oc-hero { padding: 36px 20px 28px; }
    .oc-title { font-size: 1.7rem; }
    .oc-progress { padding: 16px 12px; gap: 0; }
    .oc-step { min-width: 56px; }
    .oc-step span { font-size: 0.62rem; }
    .oc-step-dot { width: 30px; height: 30px; }
    .oc-card { padding: 20px 18px; }
    .oc-actions .btn { flex: 1; text-align: center; }
    .oc-email-notice { white-space: normal; }

    /* Page hero mobile */
    .page-hero { padding: 32px 0 28px; }
    .page-hero-title { font-size: 1.6rem; }
    .page-hero-sub { font-size: 0.85rem; }
    .page-content { padding: 32px 0 60px; }

    /* Offers mobile */
    .offers-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Contact mobile */
    .contact-form-card { padding: 24px; }
    .contact-info-header h2 { font-size: 1.3rem; }
    .contact-info-inner { padding: 32px 24px 24px; border-radius: 16px; }
    .contact-map-section { padding: 40px 0 0; }
    .contact-map-wrap { height: 300px; margin: 0 16px 32px; }
    .contact-map-title { font-size: 1.4rem; }
    .contact-map-bar-inner { flex-direction: column; text-align: center; }

    .form-row { grid-template-columns: 1fr; }
    .product-meta { display: flex; flex-direction: column; }

    /* Checkout mobile */
    .co-grid { grid-template-columns: 1fr; gap: 24px; }
    .co-sidebar { position: static; }
    .co-form-row.two { grid-template-columns: 1fr; }
    .co-payment-option { padding: 12px 14px; gap: 10px; }
    .co-summary { padding: 20px; }

    /* Header mobile */
    .logo img { height: 36px; }
    .header .container { padding-top: 10px; padding-bottom: 10px; }
    .header-actions { gap: 12px; }

    /* Product detail mobile */
    .product-detail-section { padding: 16px 0 40px; }
    .product-detail { padding: 24px 0 48px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-gallery { position: static; }
    .product-main-image { border-radius: 10px; }
    .product-thumbs .thumb { width: 56px; height: 56px; }
    .product-info h1 { font-size: 1.4rem; }
    .product-price-detail .price-current { font-size: 1.4rem; white-space: nowrap; }
    .product-price-detail .price-original { white-space: nowrap; }
    .product-meta { gap: 0; }
    .meta-item { font-size: 0.875rem; grid-template-columns: 120px 1fr; }
    .meta-item span { font-size: 0.7rem; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; }
    .quantity-selector { width: 100%; justify-content: center; }
    .trust-badges { justify-content: center; flex-wrap: wrap; }
    .product-payment-items { gap: 10px; }
    .product-payment-banner { height: 30px; }
    .product-payment-badge { padding: 5px 8px; }
    .product-payment-koko-img { height: 22px; }
    .product-tabs { margin-top: 32px; }
    .tab-btn { padding: 10px 14px; font-size: 0.75rem; letter-spacing: 0.5px; }
    .product-related-section { margin-top: 40px; padding-top: 24px; }

    /* Payment options mobile */
    .co-bank-card { padding: 16px; }

    /* Policy pages mobile */
    .policy-wrap { padding: 0; }
    .policy-section { margin-bottom: 28px; }
    .policy-section h2 { font-size: 1.15rem; }
    .policy-section p { font-size: 0.88rem; }
    .policy-list li { font-size: 0.88rem; }
    .policy-table th, .policy-table td { padding: 10px 12px; font-size: 0.84rem; }
    .policy-highlight { padding: 14px 16px; gap: 10px; }
    .policy-highlight p { font-size: 0.84rem; }

    /* Tabs mobile */
    .product-tabs-nav { gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: center; padding-bottom: 2px; }
    .product-tab-btn { font-size: 0.72rem; padding: 10px 14px; white-space: nowrap; letter-spacing: 1px; }
    .section-title-uppercase { font-size: 1.35rem; letter-spacing: 1.5px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .home-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card { border-radius: 10px; }
    .product-card-image { aspect-ratio: 1/1; }
    .product-card-image-link { padding: 0; }
    .product-card-body { padding: 10px 12px 12px; }
    .product-card-brand { font-size: 0.55rem; letter-spacing: 1.2px; margin-bottom: 3px; }
    .product-card-name { font-size: 0.78rem; margin-bottom: 2px; }
    .product-card-size { font-size: 0.65rem; margin-bottom: 6px; }
    .product-card-pricing { margin-bottom: 6px; gap: 6px; }
    .price-current { font-size: 0.85rem; }
    .price-original { font-size: 0.68rem; }
    .product-card-atc-icon { width: 33px; height: 33px; bottom: 6px; right: 6px; }
    .product-card-atc-icon svg { width: 14px; height: 14px; }
    .product-card-koko { padding-top: 8px; gap: 3px; }
    .koko-text { font-size: 0.58rem; }
    .koko-logo { height: 12px; }
    .product-badges { top: 8px; left: 8px; }
    .badge { font-size: 0.55rem; padding: 3px 7px; border-radius: 3px; }
    .top-bar { display: none; }

    /* Home hero 480 */
    .home-hero { min-height: 65vh; }
    .home-hero-inner { padding: 44px 0 28px; }
    .home-hero-tag { font-size: 0.6rem; letter-spacing: 1.5px; margin-bottom: 10px; }
    .home-hero-title { font-size: 1.75rem; line-height: 1.1; letter-spacing: -0.2px; }
    .home-hero-desc { font-size: 0.85rem; margin-bottom: 22px; max-width: 90vw; margin-left: auto; margin-right: auto; }
    .home-hero-stats { display: none; }
    .home-hero-actions .btn { padding: 11px 22px; font-size: 0.8rem; width: 200px; text-align: center; justify-content: center; }
    .home-hero-actions { margin-bottom: 0; gap: 10px; flex-direction: column; align-items: center; }

    /* Sections 480 */
    .home-section, .home-section-alt { padding: 32px 0; }
    .section-tag { font-size: 0.6rem; letter-spacing: 1.8px; }
    .section-title-lg { font-size: 1.35rem; line-height: 1.2; }
    .section-link { font-size: 0.68rem; }

    /* Categories 480 */
    .home-categories-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 240px); gap: 14px; }
    .home-category-card:nth-child(1),
    .home-category-card:nth-child(2) { grid-row: span 1; }
    .home-category-content { padding: 24px; }
    .home-category-content h3 { font-size: 1.3rem; }
    .home-category-content p { font-size: 0.82rem; }

    /* Brands 480 */
    .home-brands-section { padding: 40px 0; }
    .home-brand-item { padding: 7px 14px; font-size: 0.75rem; }

    /* Promo 480 */
    .home-promo-card { min-height: 180px; border-radius: 12px; }
    .home-promo-content { padding: 20px; }
    .home-promo-content h3 { font-size: 1.15rem; }

    /* CTA 480 */
    .home-cta { padding: 48px 0; }
    .home-cta-content h2 { font-size: 1.5rem; }
    .home-cta-content p { font-size: 0.85rem; }

    .shop-hero-title { font-size: 1.35rem; }
    .shop-hero-sub { font-size: 0.8rem; }
    .filter-tag { padding: 4px 8px; font-size: 0.72rem; }
    .btn-filter-mobile { padding: 7px 10px; font-size: 0.78rem; }
    .sort-select { padding: 7px 28px 7px 10px; font-size: 0.8rem; }
    .badge { font-size: 0.6rem; padding: 3px 7px; }

    /* Order confirmation 480 */
    .oc-page { padding: 24px 0 48px; }
    .oc-wrap { gap: 14px; }
    .oc-hero { padding: 28px 16px 24px; border-radius: 14px; }
    .oc-check-ring { width: 64px; height: 64px; }
    .oc-title { font-size: 1.5rem; }
    .oc-subtitle { font-size: 0.84rem; }
    .oc-order-badge { padding: 8px 14px; gap: 8px; flex-direction: column; align-items: center; }
    .oc-order-badge-label, .oc-order-badge-value { white-space: nowrap; }
    .oc-progress { padding: 14px 8px; }
    .oc-step { min-width: 44px; }
    .oc-step-dot { width: 26px; height: 26px; }
    .oc-step-dot svg { width: 9px; height: 9px; }
    .oc-step span { font-size: 0.58rem; letter-spacing: 0.3px; }
    .oc-step-line { min-width: 8px; }
    .oc-card { padding: 16px 14px; border-radius: 12px; }
    .oc-detail-grid { gap: 12px 14px; }
    .oc-bank-row { padding: 9px 12px; font-size: 0.8rem; }
    .oc-bank-acct { font-size: 0.88rem; }
    .oc-actions { flex-direction: column; gap: 10px; }
    .oc-actions .btn { width: 100%; text-align: center; }
    .oc-email-notice { white-space: normal; }

    /* Page hero 480 */
    .page-hero { padding: 24px 0 20px; }
    .page-hero-title { font-size: 1.35rem; }
    .page-hero-sub { font-size: 0.8rem; }
    .page-content { padding: 24px 0 48px; }

    /* Cart 480 */
    .cart-product-img { width: 64px; height: 64px; }
    .cart-col-price { padding-left: 76px; }
    .cart-col-qty, .cart-col-total { padding-left: 0; }
    .cart-summary { padding: 16px; }

    /* Product detail 480 */
    .product-detail-section { padding: 12px 0 32px; }
    .product-info h1 { font-size: 1.2rem; }
    .product-price-detail .price-current { font-size: 1.25rem; white-space: nowrap; }
    .product-price-detail .price-original { white-space: nowrap; }
    .meta-item span { font-size: 0.68rem; grid-template-columns: 110px 1fr; }
    .product-koko-line span { font-size: 0.78rem; }
    .product-koko-line img { height: 18px; }
    .product-payment-items { gap: 8px; }
    .product-payment-banner { height: 26px; }
    .product-payment-badge { padding: 4px 7px; gap: 4px; }
    .product-payment-badge span { font-size: 0.7rem; }
    .product-payment-badge i { font-size: 0.95rem; }
    .product-payment-koko-img { height: 18px; }
    .product-thumbs .thumb { width: 48px; height: 48px; }
    .product-short-desc { font-size: 0.88rem; margin-bottom: 20px; }

    /* Contact 480 */
    .contact-form-card { padding: 20px; border-radius: 12px; }
    .contact-card-icon { width: 40px; height: 40px; }
    .contact-card-icon svg { width: 18px; height: 18px; }
    .contact-info-inner { padding: 28px 20px 20px; border-radius: 14px; }
    .contact-map-section { padding: 32px 0 0; }
    .contact-map-wrap { height: 250px; margin: 0 12px 24px; }
    .contact-map-title { font-size: 1.2rem; }
    .contact-map-overlay-bar { padding: 30px 0 16px; }

    /* Tabs 480 */
    .product-tabs-nav { gap: 6px; }
    .product-tab-btn { font-size: 0.65rem; padding: 8px 12px; letter-spacing: 0.8px; }
    .section-title-uppercase { font-size: 1.15rem; letter-spacing: 1px; }
}

/* ===== FAQ Section ===== */
.home-faq-section {
    background: var(--cream);
    padding: 60px 0 70px;
}

.home-faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-light);
    box-shadow: 0 2px 12px rgba(200,169,81,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-900);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-question svg {
    flex-shrink: 0;
    stroke: var(--gray-400);
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .home-faq-section { padding: 40px 0 50px; }
    .faq-question { padding: 14px 16px; font-size: 0.88rem; }
    .faq-answer { padding: 0 16px; }
    .faq-item.open .faq-answer { padding: 0 16px 14px; }
}

