:root {
    --bg-primary: #07111d;
    --bg-secondary: #0c1b2d;
    --bg-card: #101f33;
    --bg-card-hover: #152a42;
    --gold: #d7b06c;
    --gold-light: #e8cc94;
    --gold-dark: #b8944f;
    --text-primary: #ffffff;
    --text-secondary: #a8b4c4;
    --text-muted: #6b7a8d;
    --border: rgba(215, 176, 108, 0.15);
    --success: #4ade80;
    --danger: #f87171;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
    --nav-height: 64px;
    --bottom-nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--gold-light); }

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0;
}

.text-gold { color: var(--gold) !important; }
.text-script {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
}

/* Buttons */
.btn-aplus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-aplus-gold {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}
.btn-aplus-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

.btn-aplus-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--gold);
}
.btn-aplus-outline:hover {
    background: rgba(215, 176, 108, 0.1);
    color: var(--gold);
}

.btn-aplus-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
}

.btn-aplus-block { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 17, 29, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.header-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.header-logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.25rem;
    position: relative;
    transition: color 0.2s;
}
.header-icon:hover { color: var(--gold-light); }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop nav */
.desktop-nav {
    display: none;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.desktop-nav a {
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--gold); }

.lang-switch {
    display: flex;
    gap: 0.25rem;
}
.lang-switch a {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    color: var(--text-muted);
    border: 1px solid transparent;
    border-radius: 4px;
}
.lang-switch a.active {
    color: var(--gold);
    border-color: var(--border);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 29, 0.97);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu nav {
    margin-top: 3rem;
}
.mobile-menu nav a {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

/* Bottom nav (mobile) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    height: var(--bottom-nav-height);
    display: flex;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
    text-decoration: none;
}
.bottom-nav a i { font-size: 1.2rem; }
.bottom-nav a.active,
.bottom-nav a:hover { color: var(--gold); }

/* Main content */
.main-content {
    min-height: calc(100vh - var(--nav-height));
    padding-bottom: calc(var(--bottom-nav-height) + 1rem);
}

/* Hero */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,17,29,0.3) 0%, rgba(7,17,29,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Features bar */
.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 1.25rem 0.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.feature-item span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Section */
.section {
    padding: 3rem 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Category tabs */
.category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 1rem 1.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
    flex-shrink: 0;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
}
.category-tab.active,
.category-tab:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

/* Catalog filters */
.catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.catalog-filters {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid rgba(215, 176, 108, 0.12);
}

.catalog-filters-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.filter-group {
    margin-bottom: 1.25rem;
}

.filter-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    margin: 0.2rem 0.25rem 0.2rem 0;
    border-radius: 50px;
    font-size: 0.78rem;
    border: 1px solid rgba(215, 176, 108, 0.25);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.filter-chip:hover,
.filter-chip.active {
    background: rgba(215, 176, 108, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.filter-chip .color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

@media (min-width: 992px) {
    .catalog-layout {
        grid-template-columns: 220px 1fr;
        align-items: start;
    }
    .catalog-filters {
        position: sticky;
        top: 5rem;
    }
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-fav {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(7, 17, 29, 0.7);
    border: none;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    z-index: 2;
}
.product-card-fav.active,
.product-card-fav:hover {
    color: var(--gold);
}

.product-card-body {
    padding: 1rem;
}

.product-card-name {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.product-card-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
}

.product-card-price-old {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Category cards (large) */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/7;
    cursor: pointer;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,17,29,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.category-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Banner collection */
.collection-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 2rem 0;
    min-height: 250px;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
}
.collection-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}
.collection-banner-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}
.collection-banner h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.collection-banner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Product detail */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
}

.product-gallery-wrap {
    margin-bottom: 2rem;
}

.product-gallery {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(215, 176, 108, 0.12);
    cursor: zoom-in;
}
.product-gallery img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}
.product-gallery img.gallery-fade {
    opacity: 0.35;
}

.gallery-zoom-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(215, 176, 108, 0.35);
    background: rgba(7, 17, 29, 0.72);
    color: var(--gold);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.gallery-zoom-btn:hover {
    background: rgba(7, 17, 29, 0.9);
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}
.gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: var(--bg-card);
    cursor: pointer;
    opacity: 0.65;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--gold);
    opacity: 1;
    transform: translateY(-2px);
}

/* Lightbox */
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(4, 10, 18, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.product-lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-stage {
    max-width: min(92vw, 900px);
    max-height: 88vh;
}
.lightbox-stage img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.8;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(215, 176, 108, 0.35);
    background: rgba(7, 17, 29, 0.75);
    color: var(--gold);
    cursor: pointer;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    padding: 0;
}
.gallery-dot.active { background: var(--gold); }

.product-info h1 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.selector-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.color-swatches {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    padding: 0;
}
.color-swatch.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--gold);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.size-option {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.size-option.active,
.size-option:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.size-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.product-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.product-description p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Cart */
.cart-page { max-width: 900px; margin: 0 auto; padding: 2rem 1.25rem; }

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.cart-item-image {
    width: 90px;
    height: 110px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.qty-control button {
    background: var(--bg-secondary);
    border: none;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
}
.qty-control span {
    width: 36px;
    text-align: center;
    font-size: 0.85rem;
}

.cart-summary {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.cart-summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}
.cart-summary-row.total span:last-child { color: var(--gold); }

/* Forms */
.form-aplus .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}
.form-aplus .form-control,
.form-aplus .form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}
.form-aplus .form-control:focus,
.form-aplus .form-select:focus {
    background: var(--bg-card);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(215, 176, 108, 0.15);
    color: var(--text-primary);
}
.form-aplus .form-control::placeholder { color: var(--text-muted); }

.auth-page {
    max-width: 440px;
    margin: 0 auto;
    padding: 3rem 1.25rem;
}
.auth-page h1 {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Account */
.account-header {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--bg-secondary);
    margin-bottom: 1.5rem;
}
.account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--gold);
}
.account-menu {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.account-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.account-menu-item:hover { color: var(--gold); }
.account-menu-item i { color: var(--text-muted); }

/* Orders */
.order-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.order-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-secondary);
    flex-shrink: 0;
}
.order-info { flex: 1; }
.order-number {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}
.order-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.order-status {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}
.status-pending { background: rgba(215,176,108,0.15); color: var(--gold); }
.status-confirmed { background: rgba(96,165,250,0.15); color: #60a5fa; }
.status-shipped { background: rgba(74,222,128,0.15); color: var(--success); }
.status-delivered { background: rgba(74,222,128,0.25); color: var(--success); }
.status-cancelled { background: rgba(248,113,113,0.15); color: var(--danger); }

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 1.25rem 1.5rem;
    margin-bottom: var(--bottom-nav-height);
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 2.5rem;
}
.footer-feature {
    text-align: center;
}
.footer-feature i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}
.footer-feature span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.footer-logo {
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.footer-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Alerts */
.alert-aplus {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.alert-success { background: rgba(74,222,128,0.1); color: var(--success); border: 1px solid rgba(74,222,128,0.2); }
.alert-danger { background: rgba(248,113,113,0.1); color: var(--danger); border: 1px solid rgba(248,113,113,0.2); }
.alert-info { background: rgba(96,165,250,0.1); color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }

/* Breadcrumb */
.breadcrumb-aplus {
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 1400px;
    margin: 0 auto;
}
.breadcrumb-aplus a { color: var(--text-secondary); }
.breadcrumb-aplus span { color: var(--gold); }

/* Subcategory pills */
.subcategory-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1.25rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}
.subcategory-pill {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
}
.subcategory-pill.active,
.subcategory-pill:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 29, 0.97);
    z-index: 2000;
    display: none;
    padding: 2rem 1.25rem;
}
.search-overlay.open { display: block; }
.search-overlay input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 1rem;
    outline: none;
}
.search-overlay input:focus { border-color: var(--gold); }
.search-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Desktop responsive */
@media (min-width: 768px) {
    .bottom-nav { display: none; }
    .main-content { padding-bottom: 0; }
    .site-footer { margin-bottom: 0; }

    .desktop-nav { display: flex; }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .features-bar {
        grid-template-columns: repeat(6, 1fr);
    }

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

    .product-detail {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .hero { min-height: 85vh; }

    .header-menu-toggle { display: none; }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .section { padding: 4rem 2rem; }
}

/* A+ Plus loyalty */
.plus-page { max-width: 640px; margin: 0 auto; text-align: center; }
.plus-hero { padding: 2rem 0; }
.plus-circle {
    width: 180px; height: 180px; margin: 0 auto 1.5rem; border-radius: 50%;
    background: conic-gradient(var(--gold) calc(var(--progress) * 1%), var(--bg-card) 0);
    display: flex; align-items: center; justify-content: center; padding: 6px;
}
.plus-circle-inner {
    width: 100%; height: 100%; border-radius: 50%; background: var(--bg-secondary);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.plus-points { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.plus-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }
.plus-level { font-size: 1.3rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.25rem; }
.plus-subtitle { color: var(--text-muted); font-size: 0.85rem; }
.plus-benefits { text-align: left; background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem; }
.plus-benefits-list { list-style: none; padding: 0; margin: 0; }
.plus-benefits-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-secondary); }
.plus-benefits-list li i { color: var(--gold); margin-right: 0.75rem; }
.plus-next { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; margin-bottom: 0; }
.plus-history { text-align: left; }
.plus-history-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.plus-history-desc { display: block; font-size: 0.9rem; }
.plus-history-date { font-size: 0.75rem; color: var(--text-muted); }
.plus-history-points { color: var(--gold); font-weight: 600; }

/* Reviews */
.product-reviews-summary { display: flex; align-items: center; gap: 0.5rem; }
.review-stars, .review-stars-sm { color: var(--gold); }
.review-score { font-weight: 700; color: var(--gold); }
.review-count { font-size: 0.8rem; color: var(--text-muted); }
.review-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 1.25rem;
    margin-bottom: 1rem; border: 1px solid var(--border);
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.review-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card a { text-decoration: none; color: inherit; }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-secondary); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-date { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.blog-card h2 { font-size: 1rem; margin: 0.5rem 0; letter-spacing: 0.05em; }
.blog-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.blog-article { max-width: 760px; margin: 0 auto; }
.blog-article-title { font-size: clamp(1.4rem, 4vw, 2rem); letter-spacing: 0.05em; margin-top: 0.5rem; }
.blog-article-image img { width: 100%; border-radius: var(--radius); }
.blog-article-content { color: var(--text-secondary); line-height: 1.8; }
.blog-article-content p { margin-bottom: 1rem; }

/* Payment options */
.payment-options { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
    display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    cursor: pointer; transition: border-color 0.2s;
}
.payment-option:has(input:checked) { border-color: var(--gold); }
.payment-option input { accent-color: var(--gold); }
.payment-option span { font-size: 0.9rem; color: var(--text-primary); }
.payment-option i { color: var(--gold); margin-right: 0.25rem; }

/* Newsletter footer */
.newsletter-form {
    display: flex; gap: 0.5rem; max-width: 360px; margin: 1rem auto 0; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
    flex: 1; min-width: 180px; background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-primary); padding: 0.6rem 1rem; border-radius: 50px; font-size: 0.85rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

.newsletter-consent,
.consent-check {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: left;
    width: 100%;
    line-height: 1.5;
}
.newsletter-consent a,
.consent-check a { color: var(--gold); }
.consent-check label { cursor: pointer; display: flex; gap: 0.5rem; align-items: flex-start; }
.consent-check input { margin-top: 0.2rem; flex-shrink: 0; }

/* Legal pages */
.legal-page { max-width: 780px; margin: 0 auto; }
.legal-content {
    background: var(--bg-card);
    border: 1px solid rgba(215, 176, 108, 0.12);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.legal-content h2 {
    font-size: 1rem;
    color: var(--gold);
    margin: 1.75rem 0 0.75rem;
    letter-spacing: 0.04em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content a { color: var(--gold); }
.legal-content ul, .legal-content ol { padding-left: 1.25rem; }

/* Cookie banner RGPD */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}
.cookie-consent-inner {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(12, 27, 45, 0.97);
    border: 1px solid rgba(215, 176, 108, 0.25);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}
.cookie-consent-inner p {
    flex: 1;
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
    min-width: 220px;
}
.cookie-consent-inner a { color: var(--gold); }
.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-consent-inner { flex-direction: column; align-items: stretch; }
    .cookie-consent-actions { justify-content: stretch; }
    .cookie-consent-actions .btn-aplus { flex: 1; }
}

/* Stock status + alert */
.product-stock-status {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}
.product-stock-status.stock-ok { color: var(--success); }
.product-stock-status.stock-low { color: #fbbf24; }
.product-stock-status.stock-out { color: var(--danger); }

.stock-alert-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(215, 176, 108, 0.25);
    background: rgba(12, 27, 45, 0.6);
}

/* Social share */
.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(215, 176, 108, 0.3);
    background: var(--bg-card);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.share-btn:hover {
    background: rgba(215, 176, 108, 0.12);
    border-color: var(--gold);
    transform: translateY(-2px);
}
