/* ============================================================
   NANOTREND - Common Styles (shared across all pages)
   ============================================================ */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.lux-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Override Bootstrap text-muted for dark theme visibility */
.text-muted { color: var(--text-muted) !important; }
.text-danger { color: var(--danger) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }

body.locked { overflow: hidden; }

::selection { background: var(--gold); color: #0d0d0f; }

/* Autofill dark theme override */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus,
select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus,
textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-dark-3) inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background-color: var(--bg-dark-3) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-soft) !important;
    transition: background-color 5000s ease-in-out 0s;
}
.form-control:disabled, .form-control[readonly], .form-select:disabled {
    background: var(--bg-dark-2) !important;
    color: var(--text-muted) !important;
    border-color: var(--border-soft) !important;
    opacity: 0.8;
}

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--bg-dark-2); }
::-webkit-scrollbar-thumb { background: #2c2c33; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

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

h1, h2, h3, h4, h5, h6, .font-display { font-family: var(--font-display); letter-spacing: 0.02em; }

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

/* ---------- Buttons ---------- */
.btn-gold {
    background: var(--gold-gradient);
    color: #141414;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn-gold:hover { color: #141414; transform: translateY(-2px); box-shadow: var(--shadow-gold); filter: brightness(1.05); }
.btn-gold:active { transform: translateY(0); }
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}
.btn-gold:hover::after { transform: translateX(120%); }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.78rem 1.8rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-outline-gold:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold-light); box-shadow: var(--shadow-gold); }

.btn-dark-lux {
    background: var(--bg-dark-3);
    color: var(--text-primary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: border-color var(--transition), background var(--transition);
}
.btn-dark-lux:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 175, 55, 0.06); }

/* ---------- Section scaffolding ---------- */
.section { padding: 5.5rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 3.2rem; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
    position: relative;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 34px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
    opacity: 0.6;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
.section-sub { color: var(--text-muted); max-width: 620px; margin: 0.9rem auto 0; font-weight: 300; }

/* ---------- Announcement bar ---------- */
.announce-bar {
    background: var(--gold-gradient);
    color: #141414;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    padding: 0.35rem 0;
    z-index: 1032;
    position: relative;
    margin: 0;
}
.announce-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.announce-actions a { color: #141414; margin-left: 1.2rem; opacity: 0.85; }
.announce-actions a:hover { opacity: 1; color: #141414; }

/* ---------- Header / Navbar ---------- */
.lux-header {
    position: sticky;
    top: 0;
    z-index: 1031;
    background: rgba(13, 13, 15, 0.82);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border-soft);
    transition: box-shadow var(--transition);
}
.lux-header.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border-bottom-color: rgba(212, 175, 55, 0.25); }

.navbar { padding: 0.85rem 0; }

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25), transparent 70%);
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    color: var(--text-primary);
    margin-left: 0.65rem;
}
.brand-name:hover { color: var(--gold-light); }

/* ---------- Desktop nav ---------- */
.desktop-nav { list-style: none; gap: 0.1rem; padding: 0; margin: 0 auto; }
.desktop-nav .nav-link {
    color: var(--text-secondary);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.55rem 0.9rem;
    position: relative;
}
.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active { color: var(--gold-light); }
.desktop-nav .nav-link:hover::after, .desktop-nav .nav-link.active::after { transform: scaleX(1); }
.desktop-nav .dropdown-toggle::after { font-size: 0.7rem; margin-left: 0.3rem; vertical-align: 1px; }

/* Shop mega menu */
.nav-drop { position: relative; }
.nav-drop .nav-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 12px);
    min-width: 420px;
    background: var(--bg-dark-3);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 1200;
}
.nav-drop::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: transparent;
}
.nav-drop:hover .nav-mega, .nav-drop:focus-within .nav-mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-mega-head {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 0.6rem; }
.nav-mega-link {
    display: block;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 300;
    padding: 0.45rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition), padding-left var(--transition);
}
.nav-mega-link:hover { color: var(--gold-light); background: rgba(212, 175, 55, 0.07); padding-left: 0.8rem; }

.nav-tools { gap: 0.3rem; margin-left: 0.6rem; }
.nav-icon {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.15rem;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color var(--transition), background var(--transition), transform var(--transition);
    position: relative;
}
.nav-icon:hover { color: var(--gold); background: rgba(212, 175, 55, 0.1); transform: translateY(-1px); }

.nav-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: #141414;
    font-size: 0.66rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Mobile drawer ---------- */
.navbar-toggler { border: none; outline: none; box-shadow: none !important; padding: 0; }
.toggler-bar { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: transform var(--transition), opacity var(--transition); }
.navbar-toggler.open .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler.open .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler.open .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(360px, 88vw);
    background: var(--bg-dark-2);
    border-left: 1px solid var(--border-soft);
    z-index: 1045;
    transform: translateX(104%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-dark);
}
.mobile-menu-head .navbar-brand { margin: 0; }
.mobile-menu-head .navbar-brand .brand-mark { width: 34px; height: 34px; font-size: 1.1rem; }
.mobile-menu-head .navbar-brand .brand-name { font-size: 1.1rem; letter-spacing: 0.24em; }
.mobile-menu-close {
    background: none;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    transition: all var(--transition);
}
.mobile-menu-close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

.mobile-menu-body { flex: 1; overflow-y: auto; padding: 1rem 1.2rem 1.4rem; }
.mobile-links { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.mobile-links a {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-soft);
    transition: color var(--transition), padding-left var(--transition);
}
.mobile-links a:hover, .mobile-links a.active { color: var(--gold-light); padding-left: 0.6rem; }

.mobile-acc { border-bottom: 1px solid var(--border-soft); margin-bottom: 1.2rem; }
.mobile-acc-head {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}
.mobile-acc-head i { transition: transform var(--transition); }
.mobile-acc-head[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-acc-body { display: none; padding: 0.2rem 0 0.8rem; }
.mobile-acc.open .mobile-acc-body { display: block; }
.mobile-acc-body a {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 300;
    padding: 0.55rem 0 0.55rem 0.8rem;
    border-left: 1px solid rgba(212, 175, 55, 0.35);
    margin-left: 0.3rem;
    transition: color var(--transition);
}
.mobile-acc-body a:hover { color: var(--gold-light); }

.mobile-menu-foot {
    padding: 1.2rem;
    border-top: 1px solid var(--border-soft);
    background: var(--bg-dark);
}
.mob-user { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.mob-user .u-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #141414;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lux-dropdown { background: var(--bg-dark-3); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); padding: 0.5rem 0; }
.lux-dropdown .dropdown-item { color: var(--text-secondary); font-size: 0.9rem; padding: 0.55rem 1.2rem; }
.lux-dropdown .dropdown-item:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold-light); }
.lux-drop-header { color: var(--gold); font-size: 0.95rem; padding: 0.5rem 1.2rem; }
.lux-dropdown .dropdown-divider { border-color: var(--border-soft); }

/* ---------- Search overlay ---------- */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    transition: color var(--transition), transform var(--transition);
}
.search-close:hover { color: var(--gold); transform: rotate(90deg); }
.search-box { width: min(680px, 90vw); }
.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gold);
    color: var(--text-primary);
    font-size: 1.6rem;
    font-family: var(--font-display);
    padding: 0.6rem 0.2rem;
    outline: none;
    letter-spacing: 0.03em;
}
.search-input::placeholder { color: var(--text-muted); }
.search-submit { display: none; }
.search-results { margin-top: 1.4rem; max-height: 50vh; overflow-y: auto; }
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0.4rem;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-primary);
    transition: padding-left var(--transition);
}
.search-result-item:hover { padding-left: 1rem; color: var(--gold-light); }
.search-result-item img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); }
.search-empty { color: var(--text-muted); text-align: center; padding: 1.5rem 0; }

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { position: relative; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.preloader-ring {
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1.1s linear infinite;
}
.preloader-logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ---------- Page transition ---------- */
.page-transition { animation: pageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes pageIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Product card ---------- */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    height: 100%;
    position: relative;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.4); box-shadow: var(--shadow-soft); }
.product-media { position: relative; overflow: hidden; aspect-ratio: 1 / 1.12; background: #111114; }
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-media img { transform: scale(1.07); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: var(--gold-gradient);
    color: #141414;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.28rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.product-badge.tag-new { background: #3a3a42; color: var(--gold-light); }
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 3;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: rgba(13, 13, 15, 0.85);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.product-action-btn:hover { color: var(--gold); border-color: var(--gold); transform: scale(1.08); }
.product-action-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(212, 175, 55, 0.15); }

.product-info { padding: 1.1rem 1.1rem 1.25rem; }
.product-cat { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0.35rem 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}
.product-title a { color: var(--text-primary); }
.product-title a:hover { color: var(--gold-light); }
.product-price-row { display: flex; align-items: baseline; gap: 0.6rem; }
.product-price { font-weight: 600; color: var(--gold-light); font-size: 1.05rem; }
.product-mrp { color: var(--text-muted); text-decoration: line-through; font-size: 0.85rem; font-weight: 300; }
.product-discount { color: var(--success); font-size: 0.78rem; font-weight: 500; }
.rating-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; }
.rating-stars .empty { color: #3d3d45; }
.rating-count { color: var(--text-muted); font-size: 0.75rem; margin-left: 0.3rem; }

/* ---------- Skeleton ---------- */
.skeleton { background: linear-gradient(90deg, #18181c 25%, #222228 50%, #18181c 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Forms ---------- */
.form-control, .form-select {
    background: var(--bg-dark-3);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.78rem 1rem;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
    background: var(--bg-dark-3);
    border-color: var(--gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.12);
}
.form-control::placeholder { color: var(--text-muted); }
.form-select option { background: var(--bg-dark-3); }
.form-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-secondary); font-weight: 500; }
.form-text { color: var(--text-muted); }
.invalid-feedback { color: var(--danger); }

/* ---------- Alerts ---------- */
.alert { border-radius: var(--radius-sm); border: 1px solid transparent; font-size: 0.92rem; }
.alert-success { background: rgba(79, 191, 122, 0.12); border-color: rgba(79, 191, 122, 0.35); color: #8fe0b0; }
.alert-danger { background: rgba(226, 92, 92, 0.12); border-color: rgba(226, 92, 92, 0.35); color: #f0a3a3; }
.alert-warning { background: rgba(232, 185, 60, 0.12); border-color: rgba(232, 185, 60, 0.35); color: #ecd07a; }
.alert-info { background: rgba(90, 169, 214, 0.12); border-color: rgba(90, 169, 214, 0.35); color: #9fcbe4; }

/* ---------- Breadcrumb ---------- */
.lux-breadcrumb { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.lux-breadcrumb a { color: var(--text-muted); }
.lux-breadcrumb a:hover { color: var(--gold); }
.lux-breadcrumb .sep { margin: 0 0.55rem; opacity: 0.5; }

/* ---------- Cart drawer ---------- */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 92vw);
    background: var(--bg-dark-2);
    border-left: 1px solid var(--border);
    z-index: 1151;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--border-soft);
}
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.cart-drawer-footer { padding: 1.2rem 1.4rem; border-top: 1px solid var(--border-soft); }
.drawer-item { display: flex; gap: 0.9rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border-soft); }
.drawer-item img { width: 64px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); }
.drawer-qty { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border-soft); border-radius: 20px; padding: 0.1rem 0.55rem; }
.drawer-qty button { background: none; border: none; color: var(--gold); font-weight: 700; }

/* ---------- Toasts ---------- */
.toast-lux {
    background: var(--bg-dark-3);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    animation: toastIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast-lux i { color: var(--gold); font-size: 1.1rem; }
.toast-lux.err i { color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.lux-footer { background: #0a0a0c; border-top: 1px solid var(--border-soft); margin-top: 4rem; }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: 1.2rem; }
.footer-brand .brand-name { font-size: 1.3rem; }
.footer-tag { color: var(--text-muted); font-weight: 300; font-size: 0.95rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.footer-heading { font-size: 0.95rem; color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; font-weight: 300; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-news-text { color: var(--text-muted); font-weight: 300; font-size: 0.92rem; }
.newsletter-form .input-group { background: var(--bg-dark-3); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden; }
.newsletter-form .form-control { background: transparent; border: none; }
.newsletter-form .form-control:focus { background: transparent; box-shadow: none; }
.newsletter-form .btn { border-radius: 0; padding: 0.7rem 1.4rem; font-size: 0.75rem; }
.newsletter-msg { font-size: 0.85rem; }
.payment-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pay-badge {
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    text-transform: uppercase;
}
.footer-bottom { border-top: 1px solid var(--border-soft); padding: 1.4rem 0 1.6rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- Floating helpers ---------- */
.back-to-top {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(13, 13, 15, 0.85);
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all var(--transition);
    z-index: 1040;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--gold-gradient); color: #141414; }

.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    padding: 5rem 0 3.5rem;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse 60% 90% at 50% -20%, rgba(212, 175, 55, 0.14), transparent 60%),
        var(--bg-dark);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0.8rem auto 0; }

/* ---------- Reveal animations (GSAP fallback) ---------- */
.reveal { opacity: 0; }
.reveal.in { opacity: 1; }

/* ---------- Misc ---------- */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.bg-gold { background: var(--gold-gradient); color: #141414; }
.divider-gold {
    width: 70px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 1.2rem auto;
    position: relative;
}
.divider-gold::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    background: var(--bg-dark);
}

.card-lux { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); }
.accordion-lux .accordion-item { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-sm) !important; margin-bottom: 0.8rem; overflow: hidden; }
.accordion-lux .accordion-button { background: var(--bg-card); color: var(--text-primary); box-shadow: none; font-family: var(--font-body); }
.accordion-lux .accordion-button:not(.collapsed) { color: var(--gold-light); background: var(--bg-dark-3); }
.accordion-lux .accordion-button:focus { box-shadow: none; border-color: var(--border); }
.accordion-lux .accordion-button::after { filter: invert(0.75) sepia(0.7) saturate(2) hue-rotate(5deg); }
.accordion-lux .accordion-body { color: var(--text-secondary); }

.table-lux { --bs-table-bg: transparent; --bs-table-color: var(--text-secondary); --bs-table-border-color: var(--border-soft); font-size: 0.92rem; }
.table-lux thead th { color: var(--gold); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; border-bottom-color: var(--border); }

.status-pill { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; }
.status-pill.processing { background: rgba(232, 185, 60, 0.15); color: var(--warning); }
.status-pill.shipped { background: rgba(90, 169, 214, 0.15); color: var(--info); }
.status-pill.delivered { background: rgba(79, 191, 122, 0.15); color: var(--success); }
.status-pill.cancelled { background: rgba(226, 92, 92, 0.15); color: var(--danger); }
.status-pill.refunded { background: rgba(160, 120, 200, 0.15); color: #b59ae0; }

/* Pagination */
.pagination-lux .page-link { background: var(--bg-dark-3); border: 1px solid var(--border-soft); color: var(--text-secondary); margin: 0 0.2rem; border-radius: var(--radius-sm) !important; }
.pagination-lux .page-link:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold); border-color: var(--gold); }
.pagination-lux .page-item.active .page-link { background: var(--gold-gradient); border-color: var(--gold); color: #141414; font-weight: 600; }
.pagination-lux .page-item.disabled .page-link { background: transparent; color: var(--text-muted); }

/* ---------- CMS content (policies) ---------- */
.cms-content { color: var(--text-secondary); line-height: 1.9; font-weight: 300; }
.cms-content h2, .cms-content h3 { color: var(--text-primary); font-weight: 600; margin-top: 1.8rem; }
.cms-content h2 { font-size: 1.5rem; }
.cms-content h3 { font-size: 1.2rem; }
.cms-content p { margin-bottom: 1rem; }
.cms-content ul, .cms-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.cms-content li { margin-bottom: 0.4rem; }
.cms-content a { color: var(--gold-light); }
.cms-content strong { color: var(--text-primary); font-weight: 500; }
.cms-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 0.6rem 1.2rem;
    margin: 1.2rem 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
