/* ========================================
   NOBLEWEAR — Main Stylesheet
   Dark Luxury Theme | Navy + Gold
   ======================================== */

/* === CSS Variables === */
:root {
    --navy-deep: #0A1628;
    --navy-dark: #0D1B2A;
    --navy-mid: #162235;
    --navy-light: #1E3050;
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-pale: #F5E9C0;
    --gold-dark: #9E7D2E;
    --white: #FFFFFF;
    --off-white: #F9F7F3;
    --text-light: #E8E4DC;
    --text-muted: #9A9080;
    --surface-1: #111827;
    --surface-2: #1A2535;
    --surface-3: #243040;
    --border: rgba(201, 168, 76, 0.2);
    --border-dark: rgba(201, 168, 76, 0.1);
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--navy-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === Container === */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: var(--navy-deep);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    position: relative;
    z-index: 100;
}
.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ann-close {
    background: none;
    border: none;
    color: var(--navy-deep);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}
.ann-close:hover { opacity: 1; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
.nav-brand { flex-shrink: 0; }
.nav-logo { height: 52px; width: auto; object-fit: contain; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-width: 520px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-deep), var(--shadow-gold);
    z-index: 200;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 0px);
}
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.03em;
}
.dropdown-item:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--border);
    color: var(--gold);
}
.dropdown-icon { font-size: 18px; }
.dropdown-footer {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--border);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.dropdown-footer:hover { color: var(--gold-light); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}
.nav-icon-btn:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--gold);
    color: var(--navy-deep);
    width: 18px; height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    transform-origin: left;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(-2px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(2px); }

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    display: none;
    z-index: 999;
}
.search-overlay.open { display: block; }
.search-form { display: flex; gap: 12px; align-items: center; }
.search-input {
    flex: 1;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--white);
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.search-btn:hover { background: var(--gold-light); }
.search-close {
    color: var(--text-muted);
    font-size: 24px;
    padding: 8px;
    transition: var(--transition);
}
.search-close:hover { color: var(--white); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/banners/hero-main.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,22,40,0.97) 40%, rgba(10,22,40,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 16px;
}
.hero-title span { color: var(--gold); display: block; font-style: italic; }
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 300;
    letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.btn:hover::before { transform: scaleX(1); }
.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 44px; font-size: 15px; }
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--surface-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    group: true;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: var(--shadow-deep), var(--shadow-gold);
}
.product-image-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--surface-3);
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.07); }
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.badge-new { background: var(--gold); color: var(--navy-deep); }
.badge-sale { background: #E53E3E; color: white; }
.badge-bestseller { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid var(--border); }
.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0; right: 0;
    padding: 12px;
    transition: var(--transition);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.product-card:hover .product-actions { bottom: 0; }
.btn-add-cart {
    flex: 1;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 11px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-add-cart:hover { background: var(--gold-light); }
.btn-wishlist {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}
.btn-wishlist:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); color: var(--gold); }
.product-info { padding: 16px; }
.product-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.product-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-name a:hover { color: var(--gold); }
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--text-muted); }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
}
.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}
.category-card:hover { border-color: var(--border); transform: translateY(-4px); }
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
}
.category-card:hover img { transform: scale(1.08); filter: brightness(0.55); }
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.category-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.category-count { font-size: 13px; color: var(--gold); font-weight: 500; }
.category-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    background: var(--gold);
    color: var(--navy-deep);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}
.category-card:hover .category-arrow { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============================================
   FEATURES / USP STRIP
   ============================================ */
.usp-strip {
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.usp-icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--gold);
    transition: var(--transition);
}
.usp-item:hover .usp-icon { background: rgba(201,168,76,0.2); transform: scale(1.1); }
.usp-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}
.usp-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--navy-mid); border-top: 1px solid var(--border-dark); }
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--surface-1);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-4px); }
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 16px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--white); }
.testimonial-purchase { font-size: 12px; color: var(--text-muted); }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    text-align: center;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 32px auto 0;
}
.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--white);
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.newsletter-input::placeholder { color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand { }
.footer-logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer-tagline {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-deep); }
.footer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-link:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-left { font-size: 13px; color: var(--text-muted); }
.footer-bottom-left strong { color: var(--gold); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 12px; color: var(--text-muted); transition: var(--transition); }
.footer-bottom-link:hover { color: var(--white); }
.payment-methods { display: flex; gap: 10px; align-items: center; }
.payment-method {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.page-hero {
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    border-bottom: 1px solid var(--border);
    padding: 60px 0 40px;
    text-align: center;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 40px 0;
}
.filters-sidebar { }
.filter-group { margin-bottom: 28px; }
.filter-title {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 4px 0;
}
.filter-option:hover { color: var(--white); }
.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}
.filter-option.active { color: var(--gold); }
.price-range-input { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.price-input {
    flex: 1;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
}
.price-input:focus { border-color: var(--gold); }

.products-main { }
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
}
.products-count { font-size: 14px; color: var(--text-muted); }
.products-count span { color: var(--white); font-weight: 600; }
.sort-select {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 0;
}
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--surface-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: var(--transition);
}
.cart-item:hover { border-color: var(--border); }
.cart-item-image {
    width: 100px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}
.cart-item-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-meta span { color: var(--text-light); margin-right: 12px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
    width: 32px; height: 32px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.qty-display {
    width: 40px;
    text-align: center;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 6px;
    font-weight: 600;
}
.cart-item-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    align-self: flex-start;
}
.btn-remove { color: #E53E3E; font-size: 13px; margin-top: 8px; cursor: pointer; background: none; border: none; }
.btn-remove:hover { color: #FC8181; }

/* Order Summary */
.order-summary {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.order-summary-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-muted);
}
.summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}
.summary-row.total .amount { color: var(--gold); font-size: 22px; }
.free-shipping { color: #68D391; font-size: 13px; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    padding: 40px 0;
}
.checkout-section {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}
.checkout-section-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.checkout-step {
    width: 32px; height: 32px;
    background: var(--gold);
    color: var(--navy-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-light); letter-spacing: 0.05em; }
.form-label span { color: var(--gold); }
.form-input, .form-select, .form-textarea {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--white);
    padding: 13px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.03); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select option { background: var(--surface-1); }
.form-textarea { resize: vertical; min-height: 80px; }

/* Payment Methods */
.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--surface-1);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}
.payment-option:hover { border-color: var(--border); }
.payment-option.selected { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.payment-option input[type="radio"] { accent-color: var(--gold); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.payment-label-main { font-weight: 600; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.payment-label-sub { font-size: 13px; color: var(--text-muted); }
.payment-coming-soon {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-left: 8px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
}
.product-gallery { }
.product-main-image {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-dark);
    background: var(--surface-2);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}
.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 20px 0;
}
.price-large { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--gold); }
.size-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 8px; }
.size-btn {
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.size-btn:hover, .size-btn.selected { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.product-actions-detail { display: flex; gap: 12px; margin: 28px 0; }
.btn-add-cart-lg {
    flex: 1;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-add-cart-lg:hover { background: var(--gold-light); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.product-tabs { margin-top: 40px; }
.tabs-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    margin-bottom: -1px;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    padding: 40px 20px;
}
.auth-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-deep);
}
.auth-logo { height: 60px; margin: 0 auto 32px; display: block; }
.auth-title { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--white); text-align: center; margin-bottom: 8px; }
.auth-subtitle { font-size: 15px; color: var(--text-muted); text-align: center; margin-bottom: 32px; }
.auth-tabs { display: flex; gap: 0; background: var(--surface-1); border-radius: var(--radius-md); padding: 4px; margin-bottom: 28px; }
.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.auth-tab.active { background: var(--gold); color: var(--navy-deep); }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.input-group { position: relative; }
.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}
.form-input.has-icon { padding-left: 44px; }
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 8px 0;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-link { color: var(--gold); font-weight: 600; }
.auth-link:hover { color: var(--gold-light); }

/* ============================================
   ORDER CONFIRMATION
   ============================================ */
.order-success-card {
    max-width: 640px;
    margin: 60px auto;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
}
.success-icon {
    width: 80px; height: 80px;
    background: rgba(104, 211, 145, 0.15);
    border: 2px solid #68D391;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}
.order-number {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ============================================
   ADMIN
   ============================================ */
.admin-sidebar {
    width: 260px;
    background: var(--surface-1);
    border-right: 1px solid var(--border);
    min-height: 100vh;
    padding: 24px 0;
    position: fixed;
    top: 0; left: 0;
}
.admin-layout {
    display: flex;
    min-height: 100vh;
}
.admin-main {
    flex: 1;
    margin-left: 260px;
    background: var(--navy-deep);
    padding: 32px;
}
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(201,168,76,0.1); color: var(--gold); }
.stat-card {
    background: var(--surface-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}
.stat-card:hover { border-color: var(--border); }
.stat-value { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   TOASTS / NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.toast {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    box-shadow: var(--shadow-deep);
    animation: slideInRight 0.3s ease forwards;
}
.toast.success { border-left: 3px solid #68D391; }
.toast.error { border-left: 3px solid #E53E3E; }
.toast-icon { font-size: 20px; }
.toast-message { font-size: 14px; color: var(--text-light); flex: 1; }
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
}
.page-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}
.page-btn:hover, .page-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 60px 0;
}
.legal-content h1 { font-family: var(--font-display); font-size: 48px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.legal-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--gold); margin: 40px 0 16px; }
.legal-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 24px; color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-date { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--navy-deep);
        z-index: 998;
        padding: 100px 40px 40px;
        overflow-y: auto;
        gap: 0;
    }
    .nav-link { padding: 16px 0; border-bottom: 1px solid var(--border-dark); font-size: 18px; }
    .dropdown-menu { position: static; width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto; margin-top: 0; box-shadow: none; background: var(--surface-1); border: none; display: none; }
    .has-dropdown.open .dropdown-menu { display: block; }
    .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
    .hamburger { display: flex; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: 1fr; }
    .hero-title { font-size: 48px; }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 36px; }
    .hero-actions { flex-direction: column; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .auth-card { padding: 28px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
