/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:          #C9A84C;
    --gold-light:    #E8C97A;
    --gold-dark:     #9A7A30;
    --gold-glow:     rgba(201, 168, 76, 0.25);
    --bg-black:      #0a0a0a;
    --bg-card:       rgba(20, 16, 10, 0.96);
    --bg-input:      rgba(30, 24, 12, 0.8);
    --text-primary:  #F5E6C8;
    --text-secondary: #c4b08a;
    --text-muted:     #9a8a6a;
    --border:        rgba(201, 168, 76, 0.25);
    --border-hover:  rgba(201, 168, 76, 0.6);
    --radius:        12px;
    --radius-lg:     18px;
    --shadow:        0 8px 40px rgba(0,0,0,0.6);
    --shadow-gold:   0 0 30px rgba(201,168,76,0.15);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-primary);
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(201,168,76,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(201,168,76,0.04) 0%, transparent 50%);
    animation: bodyFadeIn 0.4s ease forwards;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


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

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

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text-primary);
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }

.brand-title {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ── LAYOUT ───────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── GOLD DIVIDER ─────────────────────────────────────── */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem 0;
    opacity: 0.5;
}

/* ── CARD ─────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow), var(--shadow-gold);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow), 0 0 40px rgba(201,168,76,0.2);
}

/* ── PRODUCT CARD ─────────────────────────────────────── */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.2);
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #111;
}

.product-card__body {
    padding: 1rem;
}

.product-card__name {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.product-card__price {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-card__price .compare-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.4rem;
    font-weight: 400;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a1200;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 25px rgba(201,168,76,0.5);
    transform: translateY(-1px);
    color: #1a1200;
}

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

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    color: var(--gold-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
}

.btn-full { width: 100%; }

.btn-add-cart {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a1200;
    font-weight: 600;
    width: 100%;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(201,168,76,0.25);
}

.btn-add-cart:hover {
    box-shadow: 0 6px 25px rgba(201,168,76,0.45);
    transform: translateY(-1px);
    color: #1a1200;
}

/* ── FORMS ────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input:hover:not(:focus) {
    border-color: rgba(201,168,76,0.4);
}

.form-error {
    font-size: 0.8rem;
    color: #e07070;
    margin-top: 0.3rem;
    display: block;
}

/* ── ALERTS ───────────────────────────────────────────── */
.alert {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1.2rem;
    border: 1px solid transparent;
}

.alert-error {
    background: rgba(180,50,50,0.12);
    border-color: rgba(220,80,80,0.3);
    color: #f08080;
}

.alert-success {
    background: rgba(50,180,80,0.1);
    border-color: rgba(80,200,100,0.3);
    color: #80d890;
}

.alert-info {
    background: rgba(201,168,76,0.08);
    border-color: var(--border);
    color: var(--gold-light);
}

/* ── HEADER / NAV ─────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem;
}

.nav-brand { text-decoration: none; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-light);
    background: rgba(201,168,76,0.06);
}

.nav-cart-btn, .btn-ghost {
    position: relative;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    color: var(--gold);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-cart-btn:hover, .btn-ghost:hover {
    background: rgba(201,168,76,0.14);
    border-color: var(--gold);
    color: var(--gold-light);
}

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

/* ── SEARCH BAR ───────────────────────────────────────── */

/* Wrapper handles width + dropdown positioning */
.search-wrap {
    position: relative;
    flex: 1;
    max-width: 520px;
    min-width: 0;
}

/* Bar itself — full width of wrapper */
.search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(30,24,12,0.7);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 0.8rem 0.4rem 1.2rem;
    gap: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    min-width: 0;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-icon { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; }

/* ── Dropdown container ── */
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card, #1a1a1a);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    z-index: 9999;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}
.search-dropdown.sd-open { display: block; }

/* Scrollbar */
.search-dropdown::-webkit-scrollbar       { width: 4px; }
.search-dropdown::-webkit-scrollbar-track { background: transparent; }
.search-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ── Each result row ── */
.sd-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    text-decoration: none;
    color: var(--text, #e0e0e0);
    transition: background 0.15s;
    border-bottom: 1px solid var(--border, #2a2a2a);
}
.sd-item:last-of-type { border-bottom: none; }
.sd-item:hover,
.sd-item--active { background: var(--bg-hover, #222); }

/* Product image */
.sd-img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: block;
}
.sd-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hover);
    color: var(--text-muted);
    font-size: 1rem;
}

/* Text */
.sd-info    { min-width: 0; flex: 1; }
.sd-name {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sd-name mark {
    background: rgba(201,168,76,0.3);
    color: var(--gold, #c9a84c);
    border-radius: 3px;
    padding: 0 2px;
}
.sd-meta    { display: flex; align-items: center; gap: 0.4rem; margin-top: 2px; }
.sd-price   { font-size: 0.8rem; font-weight: 700; color: var(--gold, #c9a84c); }
.sd-compare { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }

/* No results */
.sd-empty {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* See all footer */
.sd-view-all {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold, #c9a84c);
    text-decoration: none;
    background: rgba(201,168,76,0.06);
    border-top: 1px solid var(--border);
    transition: background 0.15s;
}
.sd-view-all:hover { background: rgba(201,168,76,0.14); }

/* ── Mobile ── */
@media (max-width: 768px) {
    .search-wrap { max-width: 100%; }
    .search-dropdown { border-radius: 10px; }
    .sd-img { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .sd-name {
        white-space: normal;       /* allow wrap on very small screens */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sd-img { width: 42px; height: 42px; }
}

@media (max-width: 600px) {
    .search-wrap  { max-width: 100%; }
    .search-bar   { border-radius: 50px; }

    .search-dropdown {
        position: fixed;
        top: 70px;
        left: 12px;
        right: 12px;
        width: auto;
        border-radius: 14px;
        border: 1px solid var(--border);
        max-height: calc(100vh - 90px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    }

    .sd-img  { width: 42px; height: 42px; }
    .sd-name { white-space: normal; }
}

/* ── CATEGORY PILLS ───────────────────────────────────── */
.category-pills {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar { display: none; }

.pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    min-width: 80px;
}

.pill:hover, .pill.active {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
}

.pill-icon { font-size: 1.3rem; }

/* ── GRID SYSTEM ──────────────────────────────────────── */
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

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

/* ── SECTION HEADERS ──────────────────────────────────── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.see-all {
    font-size: 0.82rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ── CART BAR (STICKY BOTTOM) ─────────────────────────── */
.cart-bar {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 480px;
    background: linear-gradient(135deg, #2a1f00, #1a1200);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
    z-index: 90;
    text-decoration: none;
    transition: box-shadow 0.2s;
}

.cart-bar:hover {
    box-shadow: 0 8px 40px rgba(201,168,76,0.5);
}

.cart-bar__left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--gold-light);
    font-weight: 600;
}

.cart-bar__arrow { color: var(--gold); font-size: 1.1rem; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-align: left;
}

/* ── AUTH PAGES ───────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.05) 0%, transparent 55%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow), var(--shadow-gold);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo .brand-title { font-size: 1.6rem; }

.auth-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.auth-sub {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.auth-footer-text {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* ── UTILITIES ────────────────────────────────────────── */
.text-gold     { color: var(--gold); }
.text-muted    { color: var(--text-secondary); }
.text-center   { text-align: center; }
.text-right    { text-align: right; }
.mt-1          { margin-top: 0.5rem; }
.mt-2          { margin-top: 1rem; }
.mt-3          { margin-top: 1.5rem; }
.mb-1          { margin-bottom: 0.5rem; }
.mb-2          { margin-bottom: 1rem; }
.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1         { gap: 0.5rem; }
.gap-2         { gap: 1rem; }
.w-full        { width: 100%; }
.hidden        { display: none; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
    .brand-title { font-size: 1.6rem; }
    .grid-products { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .auth-card { padding: 2rem 1.25rem; }
}

/* ── HEADER ADDITIONS ─────────────────────────────────── */
.nav-account          { position: relative; }
.nav-account .btn     { display: flex; align-items: center; gap: 0.4rem; }

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #141008;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 170px;
    padding: 0.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    z-index: 200;
}

.dropdown-menu a {
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(201,168,76,0.08);
    color: var(--gold-light);
}

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

.dropdown-menu .link-danger { color: #e07070; }
.dropdown-menu .link-danger:hover { background: rgba(220,80,80,0.08); color: #f08080; }

/* ── FOOTER GRID ──────────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-grid > div {
    text-align: left;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-section-title {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: inherit;
}

.footer-brand-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.8rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1.2rem;
}
.footer-social-link {
    width: 34px; height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: .9rem;
    transition: border-color .2s, color .2s;
    text-decoration: none;
}
.footer-social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-grid ul,
.footer-contact-list {
    padding-left: 0;
}

.footer-grid li {
    text-align: left;
}


/* ── AUTH PAGE ────────────────────────────────────────── */
.auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-header-text { font-size: 0.85rem; }

.auth-brand-subtitle {
    margin-top: 0.3rem;
}

.auth-form-footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.password-wrapper { position: relative; }

.password-toggle {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0;
}

.password-toggle:hover { color: var(--gold); }

.password-input { padding-right: 2.8rem; }

.remember-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.remember-row input[type="checkbox"] {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.remember-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.forgot-link {
    float: right;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gold);
    font-family: inherit;
}

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

.btn-login { padding: 0.85rem; font-size: 0.95rem; }

.auth-signup-link { color: var(--gold); font-weight: 600; }
.auth-signup-link:hover { color: var(--gold-light); }

.nav-search-btn { padding: 0.35rem 0.85rem; font-size: 0.8rem; }

/* ── MOBILE ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .search-bar         { max-width: 180px; }
    .nav-search-btn     { display: none; }
    .footer-grid        { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom      { flex-direction: column; text-align: center; }
}

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

/* ── CART FLASH NOTIFICATION ──────────────────────────── */
.cart-flash {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #2a1f00, #1a1200);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.cart-flash--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── QUANTITY INPUT ───────────────────────────────────── */
.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: var(--bg-input);
    border: none;
    color: var(--gold);
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: rgba(201,168,76,0.12); }

.qty-input {
    width: 48px;
    text-align: center;
    background: var(--bg-input);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.95rem;
    height: 36px;
    outline: none;
    -moz-appearance: textfield;
}

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

/* ══════════════════════════════════════════════
   AUTH PAGE — Glassmorphism + Gold Theme
   Translated from 21st.dev React components
   ══════════════════════════════════════════════ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* ── Animated background glows ── */
.auth-bg-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 55vh;
    border-radius: 0 0 50% 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.18) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.auth-bg-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 50vh;
    border-radius: 50% 50% 0 0;
    background: radial-gradient(ellipse, rgba(201,168,76,0.10) 0%, transparent 70%);
    animation: glowPulse 6s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.auth-bg-spot-left {
    position: absolute;
    top: 25%;
    left: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201,168,76,0.04);
    filter: blur(60px);
    animation: glowPulse 5s ease-in-out infinite alternate;
    pointer-events: none;
}

.auth-bg-spot-right {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201,168,76,0.04);
    filter: blur(60px);
    animation: glowPulse 7s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

/* Noise texture overlay */
.auth-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

@keyframes glowPulse {
    0%   { opacity: 0.6; transform: translateX(-50%) scale(0.97); }
    100% { opacity: 1;   transform: translateX(-50%) scale(1.03); }
}

/* ── 3D Tilt Wrapper ── */
.auth-tilt-wrapper {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 10;
    perspective: 1500px;
    animation: fadeSlideUp 0.7s ease-out both;
}

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

.auth-tilt-inner {
    transition: transform 0.12s ease-out;
    transform-style: preserve-3d;
}

/* ── Glass Card ── */
.auth-glass-card {
    position: relative;
    background: rgba(10, 8, 2, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.18);
    box-shadow:
        0 8px 40px rgba(0,0,0,0.7),
        0 0 0 0.5px rgba(201,168,76,0.1) inset;
    overflow: hidden;
    padding: 2.2rem 2rem;
}

/* ── Travelling light beam border ── */
.auth-beam-border {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Top beam */
.beam-top {
    position: absolute;
    top: 0;
    left: -55%;
    height: 2px;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.9), transparent);
    filter: blur(1px);
    animation: beamTop 3s ease-in-out infinite;
    animation-delay: 0s;
}

/* Right beam */
.beam-right {
    position: absolute;
    right: 0;
    top: -55%;
    width: 2px;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(201,168,76,0.9), transparent);
    filter: blur(1px);
    animation: beamRight 3s ease-in-out infinite;
    animation-delay: 0.75s;
}

/* Bottom beam */
.beam-bottom {
    position: absolute;
    bottom: 0;
    right: -55%;
    height: 2px;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.9), transparent);
    filter: blur(1px);
    animation: beamBottom 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Left beam */
.beam-left {
    position: absolute;
    left: 0;
    bottom: -55%;
    width: 2px;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(201,168,76,0.9), transparent);
    filter: blur(1px);
    animation: beamLeft 3s ease-in-out infinite;
    animation-delay: 2.25s;
}

@keyframes beamTop {
    0%   { left: -55%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

@keyframes beamRight {
    0%   { top: -55%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

@keyframes beamBottom {
    0%   { right: -55%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { right: 110%; opacity: 0; }
}

@keyframes beamLeft {
    0%   { bottom: -55%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { bottom: 110%; opacity: 0; }
}

/* Corner glow dots */
.beam-corner {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,168,76,0.7);
    filter: blur(2px);
    animation: cornerPulse 2s ease-in-out infinite alternate;
}
.beam-corner-tl { top: 0;  left: 0;  width: 5px; height: 5px; animation-delay: 0s; }
.beam-corner-tr { top: 0;  right: 0; width: 7px; height: 7px; animation-delay: 0.5s; }
.beam-corner-br { bottom: 0; right: 0; width: 7px; height: 7px; animation-delay: 1s; }
.beam-corner-bl { bottom: 0; left: 0;  width: 5px; height: 5px; animation-delay: 1.5s; }

@keyframes cornerPulse {
    from { opacity: 0.3; }
    to   { opacity: 0.8; }
}

/* Inner grid pattern */
.auth-card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(135deg, rgba(201,168,76,1) 0.5px, transparent 0.5px),
        linear-gradient(45deg, rgba(201,168,76,1) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Card content above pattern */
.auth-card-content { position: relative; z-index: 2; }

/* ── Logo circle ── */
.auth-logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    animation: logoPop 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
    animation-delay: 0.1s;
}

@keyframes logoPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Tab switcher ── */
.auth-tabs {
    display: flex;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.6rem;
    border: 1px solid rgba(201,168,76,0.12);
}

.auth-tab {
    flex: 1;
    padding: 0.55rem;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.auth-tab.active {
    background: rgba(201,168,76,0.12);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.25);
}

.auth-tab:hover:not(.active) { color: var(--text-secondary); }

/* ── Tab content ── */
.auth-panel { display: none; }
.auth-panel.active {
    display: block;
    animation: panelIn 0.3s ease-out both;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Input with icon ── */
.auth-input-wrap {
    position: relative;
    margin-bottom: 1rem;
}

.auth-input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.2s;
}

.auth-input-wrap:focus-within .auth-input-icon { color: var(--gold); }

.auth-input {
    width: 100%;
    background: rgba(30, 24, 10, 0.6);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 11px;
    padding: 0.75rem 0.9rem 0.75rem 2.6rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.auth-input::placeholder { color: rgba(201,168,76,0.25); }

.auth-input:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(40, 32, 12, 0.7);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.auth-input-wrap .password-toggle {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.2s;
}

.auth-input-wrap .password-toggle:hover { color: var(--gold); }

.auth-input-has-eye { padding-right: 2.8rem; }

/* ── Field error ── */
.field-error {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #e07070;
    margin-top: 0.3rem;
    margin-bottom: 0.2rem;
}

/* ── Password strength ── */
.pw-strength-bar-wrap {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
}

.pw-strength-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.07);
    transition: background 0.3s;
}

.pw-strength-seg.fill-weak   { background: #e05555; }
.pw-strength-seg.fill-fair   { background: #e09040; }
.pw-strength-seg.fill-good   { background: #c9a84c; }
.pw-strength-seg.fill-strong { background: #7ec87e; }

.pw-strength-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ── Remember/Forgot row ── */
.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.3rem;
    font-size: 0.8rem;
}

.auth-check-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.auth-check-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* ── Submit button ── */
.btn-auth-submit {
    width: 100%;
    position: relative;
    background: #fff;
    color: #1a1200;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.85rem;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.btn-auth-submit:hover  { opacity: 0.92; transform: translateY(-1px); }
.btn-auth-submit:active { transform: scale(0.98); }
.btn-auth-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* shimmer on submit */
.btn-auth-submit::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: btnShimmer 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes btnShimmer {
    0%   { left: -100%; }
    60%  { left: 150%; }
    100% { left: 150%; }
}

/* spinner inside button */
.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(30,20,0,0.4);
    border-top-color: #1a1200;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn-auth-submit.loading .btn-text    { display: none; }
.btn-auth-submit.loading .btn-spinner { display: block; }

/* ── Divider OR ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.2rem 0;
    font-size: 0.75rem;
    color: rgba(201,168,76,0.3);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201,168,76,0.1);
}

/* ── Terms checkbox ── */
.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.terms-row input[type="checkbox"] {
    accent-color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.terms-row a { color: var(--gold); }
.terms-row a:hover { color: var(--gold-light); }

/* ── Bottom switch ── */
.auth-switch-text {
    text-align: center;
    margin-top: 1.3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.auth-switch-text button {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    position: relative;
}

.auth-switch-text button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s;
}

.auth-switch-text button:hover::after { width: 100%; }
.auth-switch-text button:hover { color: var(--gold-light); }

/* ── Reset panel ── */
.reset-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    animation: logoPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ── Success complete ── */
.auth-complete {
    text-align: center;
    padding: 1rem 0;
}

.auth-complete-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(80,200,100,0.12);
    border: 1px solid rgba(80,200,100,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    animation: logoPop 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ══════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */
.hero-section        { position: relative; height: 100vh; min-height: 560px; }

.hero-slide {
    height: 100vh;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: Georgia, serif;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-btns     { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn-main { padding: 0.85rem 2rem; font-size: 0.95rem; }
.hero-btn-sec  { padding: 0.85rem 2rem; font-size: 0.95rem; }

.hero-pagination {
    position: absolute;
    bottom: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 5;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollLine 1.8s ease-in-out infinite;
}

.hero-scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Homepage Category Pills — Auto-fit full row ── */
.home-section--compact { padding: 2rem 0; }

.home-category-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.home-category-pills .pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100%;          /* fill full grid cell */
    aspect-ratio: 1 / 1;  /* keeps them square */
}

.home-category-pills .pill-icon {
    font-size: 1.8rem;    /* bigger icon */
    line-height: 1;
}

.home-category-pills .pill {
    font-size: 0.82rem;
    font-weight: 500;
}
@media (max-width: 480px) {
    .home-category-pills {
        grid-template-columns: repeat(4, 1fr); /* 4 per row on small screens */
    }

    .home-category-pills .pill {
        aspect-ratio: unset;
        padding: 0.75rem 0.25rem;
    }

    .home-category-pills .pill-icon { font-size: 1.4rem; }
}


/* ── USP Strip ─────────────────────────────────── */
.usp-strip {
    background: rgba(20,16,8,0.9);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.usp-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.usp-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}

.usp-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── General Home Section ──────────────────────── */
.home-section { padding: 4rem 0; }

/* ── Category Cards ────────────────────────────── */
.cat-slide    { width: 160px !important; }

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    cursor: pointer;
}

.cat-card__img-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

.cat-card:hover .cat-card__img-wrap {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.cat-card:hover .cat-card__img-wrap img { transform: scale(1.08); }

.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    transition: background 0.3s;
}

.cat-card:hover .cat-card__overlay { background: rgba(201,168,76,0.1); }

.cat-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: color 0.2s;
}

.cat-card:hover .cat-card__name { color: var(--gold-light); }

/* ── Product Card Additions ────────────────────── */
.product-card__img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-badge-sale {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: var(--gold);
    color: #1a1200;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    z-index: 2;
}

.product-card__hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-card__hover-overlay { opacity: 1; }

.product-quick-view {
    background: rgba(201,168,76,0.9);
    color: #1a1200;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transform: translateY(8px);
    transition: transform 0.3s;
}

.product-card:hover .product-quick-view { transform: translateY(0); }

.product-card__name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.product-card__name a:hover { color: var(--gold-light); }

/* ── Promo Banner ──────────────────────────────── */
.promo-banner        { margin: 1rem 0; }

.promo-banner__bg {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 100%);
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 3rem 1.5rem;
}

.promo-banner__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin: 0.6rem 0 0.8rem;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.promo-banner__desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ── Why Section ───────────────────────────────── */
.why-section { background: rgba(15,12,5,0.6); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px rgba(201,168,76,0.12);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    display: block;
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--gold-light);
}

.why-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Testimonials ──────────────────────────────── */
.testimonial-section { background: rgba(10,8,2,0.5); }

.testimonial-swiper  { padding-bottom: 2.5rem !important; }

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: var(--border-hover); }

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a1200;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* ── Gallery Strip ─────────────────────────────── */
.gallery-section { padding: 4rem 0 0; }

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ── Testimonial Swiper Config ─────────────────── */
.testimonial-swiper .swiper-slide { height: auto; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .usp-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-grid  { grid-template-columns: repeat(2, 1fr); }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-section, .hero-slide { height: 90vh; }
    .hero-content { padding-top: 60px; }
    .hero-scroll-hint { display: none; }
    .usp-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .why-grid  { grid-template-columns: 1fr 1fr; }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); }
    .promo-banner__bg { min-height: 280px; }
}

@media (max-width: 480px) {
    .usp-grid    { grid-template-columns: 1fr 1fr; }
    .why-grid    { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .hero-btns   { flex-direction: column; }
    .hero-btn-main, .hero-btn-sec { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════
   MOBILE FIXES — max-width: 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Fix body/html overflow causing grey gap ── */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* ── Header — single row: brand | search | btns ── */
    .site-header { padding: 0; }

    .nav-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
    }

    /* Brand — no wrap, smaller */
    .nav-brand .brand-title {
        font-size: 0.85rem;
        white-space: nowrap;
        line-height: 1.2;
    }

    /* Search — full width in middle column */
    .search-bar {
        width: 100%;
        min-width: 0;
    }

    .search-bar input {
        font-size: 0.78rem;
    }

    .nav-search-btn { display: none; } /* hide Go button on mobile */

    /* Right buttons — compact, no wrap */
    .nav-inner > .d-flex {
        gap: 0.3rem;
        flex-shrink: 0;
    }

    .nav-inner .btn {
        padding: 0.4rem 0.65rem;
        font-size: 1.2rem;
        white-space: nowrap;
    }

    /* ── Hero — fix grey gap, true full width ── */
    .hero-section,
    .hero-slide {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 85vh;
        min-height: 480px;
    }

    .hero-content {
        padding: 0 1.2rem;
        padding-top: 50px;
        max-width: 100%;
    }

    .hero-title { font-size: 1.9rem; }

    .hero-desc {
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
    }

    /* ── Hero buttons — stacked full width ── */
    .hero-btns {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .hero-btn-main,
    .hero-btn-sec {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        border-radius: 50px;
    }

    /* Make View All actually styled on mobile */
    .hero-btn-sec {
        border: 1px solid rgba(201,168,76,0.5);
        color: var(--gold-light);
        background: rgba(201,168,76,0.06);
    }

    /* ── USP Strip — 2x2 grid, no overflow ── */
    .usp-strip { padding: 1rem 0; }

    .usp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .usp-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.6rem 0.5rem;
        background: rgba(255,255,255,0.02);
        border-radius: 8px;
        border: 1px solid var(--border);
    }

    .usp-icon { font-size: 1.2rem; }

    .usp-item strong { font-size: 0.78rem; }
    .usp-item span   { font-size: 0.7rem; }

    /* ── Sections padding ── */
    .home-section { padding: 2.5rem 0; }

    /* ── Product grid — 2 columns ── */
    .grid-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card__name { font-size: 0.8rem; }
    .product-card__price { font-size: 0.85rem; }
    .btn-add-cart { font-size: 0.75rem; padding: 0.55rem; }

    /* ── Gallery strip — 2 columns ── */
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }

    /* ── Promo banner ── */
    .promo-banner__title { font-size: 1.6rem; }
    .promo-banner__bg    { min-height: 240px; }

    /* ── Why grid — 1 column ── */
    .why-grid { grid-template-columns: 1fr; gap: 0.75rem; }

    /* ── Section title ── */
    .section-title { font-size: 1.2rem; }
}

/* ══════════════════════════════════════════════
   EXTRA SMALL — max-width: 400px
   ══════════════════════════════════════════════ */
@media (max-width: 400px) {

    .nav-inner .btn {
        padding: 0.35rem 0.5rem;
        font-size: 1.2 rem;
    }

    .nav-brand .brand-title { font-size: 0.75rem; }

    .hero-title  { font-size: 1.6rem; }
    .hero-desc   { font-size: 0.82rem; }

    .grid-products { grid-template-columns: 1fr; } /* 1 col on tiny screens */
}

/* ── Desktop/Mobile visibility helpers ── */
.nav-desktop-only { display: inline-flex; }
.nav-mobile-only  { display: none; }

/* Single icon button on mobile */
.nav-icon-btn {
    font-size: 1.3rem;
    padding: 0.4rem 0.6rem;
    line-height: 1;
}

@media (max-width: 768px) {

    .nav-desktop-only { display: none; }    /* hide Login + Sign Up text btns */
    .nav-mobile-only  { display: inline-flex; } /* show icon btn */

    /* Hide text labels in cart/account when logged in */
    .nav-label        { display: none; }
    .dropdown-arrow   { display: none; }

    /* Compact cart icon */
    .nav-cart-btn {
        font-size: 1.2rem;
        padding: 0.4rem 0.5rem;
        position: relative;
    }

    /* Keep badge visible */
    .cart-badge {
        top: 0px;
        right: 0px;
        font-size: 0.6rem;
        width: 16px;
        height: 16px;
    }
}

/* ══════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════ */

.cart-page { padding: 2rem 0 5rem; }

/* ── Page header ── */
.cart-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.cart-page-title {
    font-size: 1.6rem;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-title-count {
    font-size: 0.8rem;
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
}

/* ── Empty cart ── */
.cart-empty {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--text-muted);
}

.cart-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.cart-empty h2   { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.cart-empty p    { margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ── Layout ── */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
}

/* ── Free shipping bar ── */
.free-ship-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.free-ship-bar--active {
    background: rgba(76,175,80,0.08);
    border-color: rgba(76,175,80,0.3);
    color: #81c784;
    text-align: center;
}

.free-ship-bar__text { margin-bottom: 0.6rem; }

.free-ship-bar__track {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
}

.free-ship-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 50px;
    transition: width 0.4s ease;
}

/* ── Cart items list ── */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ── Single cart item ── */
.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s, opacity 0.3s, transform 0.3s;
    align-items: center;
}

.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: rgba(255,255,255,0.02); }

.cart-item__img-wrap {
    width: 90px;
    height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cart-item__img:hover { transform: scale(1.05); }

.cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.cart-item__category {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.cart-item__name {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__name:hover { color: var(--gold-light); }

.cart-item__price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item__price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
}

.cart-item__compare {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.cart-item__out-of-stock {
    font-size: 0.72rem;
    color: #e57373;
}

/* ── Actions col ── */
.cart-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

/* ── Qty stepper ── */
.qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: var(--bg-input);
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover:not(:disabled) { background: rgba(201,168,76,0.15); color: var(--gold); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.qty-value {
    min-width: 36px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 0.3rem;
}

.cart-item__line-total {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.cart-item__remove:hover {
    color: #e57373;
    background: rgba(224,85,85,0.1);
}

/* ── Clear cart row ── */
.cart-clear-row {
    margin-top: 0.75rem;
    text-align: right;
}

/* ── Summary box ── */
.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 80px;
}

.cart-summary__title {
    font-size: 1rem;
    font-family: Georgia, serif;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.cart-summary__divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.cart-summary__total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.95rem;
}

.cart-guest-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.cart-trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── Toast ── */
.cart-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cart-toast.show { opacity: 1; transform: translateY(0); }
.cart-toast--error  { border-color: rgba(224,85,85,0.4); color: #e57373; }
.cart-toast--success { border-color: rgba(76,175,80,0.4); color: #81c784; }

.text-success { color: #81c784 !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}

@media (max-width: 600px) {
    .cart-item {
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
    }

    .cart-item__actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border);
    }

    .cart-trust-badges { flex-direction: column; gap: 0.4rem; }
}

/* Cart badge in header */
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    background: var(--gold, #c9a84c);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 0 4px;
    position: absolute;
    top: -6px;
    right: -6px;
    line-height: 1;
    pointer-events: none;
}

/* Make nav-cart-btn position:relative so badge positions correctly */
.nav-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Product card footer ── */
.product-card__footer {
    padding: 0 1rem 1rem;
}

.pc-add-wrap {
    width: 100%;
}

/* Add to Cart button */
.btn-add-cart {
    width: 100%;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, var(--gold-dark, #a07830), var(--gold, #c9a84c));
    color: #000;
    border: none;
    border-radius: var(--radius, 8px);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: 0.03em;
}

.btn-add-cart:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn-add-cart:active { transform: translateY(0); }
.btn-add-cart:disabled { opacity: 0.5; cursor: not-allowed; }

/* Inline qty stepper on product card */
.pc-qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: var(--radius, 8px);
    overflow: hidden;
    height: 40px;
}

.pc-qty-btn {
    width: 44px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--gold, #c9a84c);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-qty-btn:hover {
    background: rgba(201,168,76,0.15);
}

.pc-qty-val {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

/* ══════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════ */

.checkout-page { padding: 2rem 0 5rem; }

/* ── Header ── */
.checkout-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.checkout-page-title {
    font-size: 1.6rem;
    font-family: Georgia, serif;
}

/* ── Steps indicator ── */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.35;
    transition: opacity 0.3s;
}

.checkout-step.active   { opacity: 1; }
.checkout-step.completed { opacity: 0.7; }

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold, #c9a84c);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-step.active .step-num {
    background: var(--gold, #c9a84c);
    color: #000;
    border-color: var(--gold);
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.checkout-step-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--border);
    margin: 0 0.5rem;
}

/* ── Layout ── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
}

/* ── Panel ── */
.checkout-panel {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.checkout-panel.active { display: block; }

.checkout-panel__title {
    font-size: 1rem;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* ── Form ── */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-input, rgba(255,255,255,0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold, #c9a84c);
}

.form-input.input-error {
    border-color: #e57373;
}

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

.form-select {
    appearance: none;
    cursor: pointer;
}

/* ── Payment options ── */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

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

.payment-option.selected {
    border-color: var(--gold, #c9a84c);
    background: rgba(201,168,76,0.06);
}

.payment-option__body {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.payment-option__icon { font-size: 1.5rem; }

.payment-option__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.payment-option__desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.payment-option__check {
    color: var(--gold, #c9a84c);
    opacity: 0;
    transition: opacity 0.2s;
    font-weight: 700;
}

.payment-option.selected .payment-option__check { opacity: 1; }

/* ── Review blocks ── */
.review-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.review-block__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.btn-edit {
    background: none;
    border: none;
    color: var(--gold, #c9a84c);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.review-block__body p {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0.2rem 0;
}

.review-notes { color: var(--text-muted) !important; font-style: italic; }

.review-items { display: flex; flex-direction: column; gap: 0.6rem; }

.review-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.review-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.review-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.review-item__name { color: var(--text-primary); font-weight: 500; }
.review-item__qty  { color: var(--text-muted); font-size: 0.75rem; }
.review-item__price { font-weight: 700; color: var(--gold-light); }

/* ── Checkout btn row ── */
.checkout-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.btn-place-order {
    flex: 1;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.95rem;
}

/* ── Right summary ── */
.checkout-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 80px;
}

.checkout-summary__title {
    font-size: 1rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.checkout-summary__items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cs-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
}

.cs-item__img-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.cs-item__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cs-item__qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold, #c9a84c);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-item__name {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.cs-item__price { font-weight: 700; color: var(--text-primary); }

.checkout-summary__divider {
    height: 1px;
    background: var(--border);
    margin: 0.75rem 0;
}

.checkout-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.checkout-summary__total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.checkout-trust {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .checkout-right { order: -1; }
}

@media (max-width: 600px) {
    .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
    .checkout-steps { gap: 0.25rem; }
    .step-label { display: none; }
}

/* ══════════════════════════════════════════════
   ORDER CONFIRMATION PAGE
   ══════════════════════════════════════════════ */

.confirmation-page { padding: 3rem 0 5rem; }

.confirmation-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
}

/* ── Success icon ── */
.confirmation-icon {
    margin-bottom: 1.5rem;
}

.confirmation-icon__circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(76,175,80,0.12);
    border: 2px solid rgba(76,175,80,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #81c784;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.confirmation-title {
    font-size: 1.5rem;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.confirmation-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ── Order number ── */
.confirmation-order-num {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    margin-bottom: 1.5rem;
    gap: 0.2rem;
}

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

.con-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light, #d4b86a);
    letter-spacing: 0.05em;
}

/* ── Meta grid ── */
.confirmation-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.con-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.con-meta-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.con-meta-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.con-status {
    color: #81c784;
    text-transform: capitalize;
}

.con-total { color: var(--gold-light, #d4b86a); }

/* ── Sections ── */
.confirmation-section {
    text-align: left;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.confirmation-section__title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Address ── */
.confirmation-address {
    padding: 1rem;
}

.confirmation-address p {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0.2rem 0;
}

/* ── Items ── */
.confirmation-items { padding: 0.5rem 0; }

.con-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
}

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

.con-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.con-item__name  { color: var(--text-primary); font-weight: 500; }
.con-item__qty   { color: var(--text-muted); font-size: 0.75rem; }
.con-item__subtotal { font-weight: 700; color: var(--gold-light); }

/* ── Totals ── */
.confirmation-totals {
    text-align: left;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1.2rem;
}

.con-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}

.con-total-row--total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 0.6rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--border);
}

/* ── COD notice ── */
.confirmation-cod-notice {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

/* ── Actions ── */
.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .confirmation-card    { padding: 1.5rem 1rem; }
    .confirmation-meta    { grid-template-columns: repeat(2, 1fr); }
    .confirmation-actions { flex-direction: column; }
    .confirmation-actions .btn { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════
   ORDERS PAGE
   ══════════════════════════════════════════════ */

.orders-page { padding: 2rem 0 5rem; }

/* ── Header ── */
.orders-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.orders-page-title {
    font-size: 1.6rem;
    font-family: Georgia, serif;
}

/* ── Empty state ── */
.orders-empty {
    text-align: center;
    padding: 5rem 1rem;
}

.orders-empty__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.orders-empty h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.orders-empty p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* ── Orders list ── */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Order card ── */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.order-card:hover {
    border-color: rgba(201,168,76,0.3);
}

/* ── Card header ── */
.order-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.order-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.order-card__number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light, #d4b86a);
    letter-spacing: 0.04em;
}

.order-card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.order-card__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ── Status badges ── */
.order-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Order status colours */
.order-badge--pending    { background: rgba(255,193,7,0.12);  color: #ffd54f; border: 1px solid rgba(255,193,7,0.25); }
.order-badge--processing { background: rgba(33,150,243,0.12); color: #64b5f6; border: 1px solid rgba(33,150,243,0.25); }
.order-badge--shipped    { background: rgba(156,39,176,0.12); color: #ce93d8; border: 1px solid rgba(156,39,176,0.25); }
.order-badge--delivered  { background: rgba(76,175,80,0.12);  color: #81c784; border: 1px solid rgba(76,175,80,0.25); }
.order-badge--cancelled  { background: rgba(244,67,54,0.12);  color: #e57373; border: 1px solid rgba(244,67,54,0.25); }

/* Payment status colours */
.order-badge--pay-pending  { background: rgba(255,193,7,0.1);  color: #ffd54f; border: 1px solid rgba(255,193,7,0.2); }
.order-badge--pay-paid     { background: rgba(76,175,80,0.1);  color: #81c784; border: 1px solid rgba(76,175,80,0.2); }
.order-badge--pay-failed   { background: rgba(244,67,54,0.1);  color: #e57373; border: 1px solid rgba(244,67,54,0.2); }
.order-badge--pay-refunded { background: rgba(33,150,243,0.1); color: #64b5f6; border: 1px solid rgba(33,150,243,0.2); }

/* ── Card items ── */
.order-card__items {
    padding: 0.75rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.order-card__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.83rem;
}

.order-card__item-name {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
}

.order-card__item-qty {
    color: var(--text-muted);
    font-size: 0.75rem;
    min-width: 28px;
}

.order-card__item-price {
    font-weight: 600;
    color: var(--gold-light, #d4b86a);
    min-width: 60px;
    text-align: right;
}

.order-card__item--more {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-style: italic;
}

/* ── Card footer ── */
.order-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.order-card__totals {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.order-card__shipping,
.order-card__total {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.order-card__total strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .order-card__header  { flex-direction: column; align-items: flex-start; }
    .order-card__footer  { flex-direction: column; align-items: flex-start; }
    .orders-page-header  { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ══════════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════════ */

.products-page { padding: 2rem 0 5rem; }

/* ── Page header ── */
.products-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}
.products-page-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-family: Georgia, serif;
    margin-bottom: 0.25rem;
}
.products-page-title em { color: var(--gold); font-style: normal; }
.products-page-count { font-size: 0.82rem; color: var(--text-muted); margin: 4px 0 0; }

.filter-count-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 6px;
    vertical-align: middle;
}

.btn-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    align-self: center;
}
.btn-clear-filters:hover { border-color: #ef4444; color: #ef4444; }

/* ── Mobile toggle button ── */
.filter-toggle-btn {
    display: none;
    width: 100%;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s;
}
.filter-toggle-btn:hover { border-color: var(--gold); }
.filter-toggle-badge {
    background: var(--gold);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 50px;
}
.filter-toggle-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.25s;
    color: var(--text-muted);
}

/* ── Filter bar — one row on desktop ── */
.filter-bar {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-card, #1a1a1a);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

/* ── Filter columns ── */
.filter-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0 1.1rem;
}
.filter-col:first-child { padding-left: 0; }
.filter-col:last-child  { padding-right: 0; }
.filter-col--cats  { min-width: 0; flex-shrink: 1; }
.filter-col--price { flex-shrink: 0; }

/* ── Vertical divider ── */
.filter-vdivider {
    width: 1px;
    background: var(--border, #2a2a2a);
    align-self: stretch;
    flex-shrink: 0;
}

.filter-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    white-space: nowrap;
}

/* ── Pills ── */
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.cat-pill,
.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 50px;
    border: 1px solid var(--border, #2a2a2a);
    background: transparent;
    color: var(--text-secondary, #ccc);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.cat-pill:hover,  .filter-pill:hover  { border-color: var(--gold); color: var(--gold); }
.cat-pill.active, .filter-pill.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }
.filter-pill--sm { padding: 3px 10px; font-size: 0.72rem; }

/* ── Price section ── */
.filter-price-row { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-price-inputs { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }

.price-preset-select {
    padding: 6px 10px;
    border-radius: 7px;
    border: 1px solid var(--border);
    background: var(--bg-hover, #222);
    color: var(--text);
    font-size: 0.82rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    min-width: 140px;
}
.price-preset-select:focus,
.price-preset-select:hover { border-color: var(--gold); }

.price-custom-inputs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.price-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-hover, #222);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 7px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.price-input-wrap:focus-within { border-color: var(--gold); }
.price-input-prefix { padding: 0 6px; font-size: 0.78rem; color: var(--text-muted); user-select: none; }
.price-input {
    border: none; background: transparent;
    color: var(--text); font-size: 0.82rem;
    padding: 6px 8px 6px 0;
    width: 72px; outline: none;
}
.price-input::placeholder { color: var(--text-dim, #555); }
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.price-input[type=number] { -moz-appearance: textfield; }
.price-input-sep { color: var(--text-muted); font-size: 0.82rem; }

.price-apply-btn {
    padding: 6px 16px;
    border-radius: 7px;
    border: none;
    background: var(--gold);
    color: #000;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.price-apply-btn:hover { opacity: 0.85; }

/* ── Product card price block ── */
.product-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.4rem 0 0.75rem;
}
.price-current { font-size: 1.1rem; font-weight: 700; color: var(--gold, #c9a84c); }
.price-compare { font-size: 0.85rem; color: var(--text-muted, #888); text-decoration: line-through; }
.price-save    { font-size: 0.7rem; font-weight: 600; background: rgba(16,185,129,0.12); color: #10b981; border-radius: 50px; padding: 2px 8px; white-space: nowrap; }

.product-badge-sale {
    position: absolute;
    top: 10px; left: 10px;
    background: #ef4444; color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 9px; border-radius: 50px;
    letter-spacing: 0.3px; z-index: 2;
}

/* ── Empty state ── */
.products-empty { text-align: center; padding: 5rem 1rem; }
.products-empty__icon { font-size: 4rem; opacity: 0.3; margin-bottom: 1rem; }
.products-empty h2 { font-family: Georgia, serif; margin-bottom: 0.5rem; }
.products-empty p  { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ── Pagination ── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.pagination__btn {
    min-width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}
.pagination__btn:hover,
.pagination__btn.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }
.pagination__btn.disabled { opacity: 0.35; pointer-events: none; cursor: default; }
.pagination__dots { color: var(--text-muted); padding: 0 0.25rem; }

/* ── Utilities ── */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }

/* ══════════════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .filter-toggle-btn { display: flex; }

    .filter-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        border: none;
        background: transparent;
        margin-bottom: 0;
        transition: max-height 0.35s ease, padding 0.3s ease,
                    border 0.3s ease, margin 0.3s ease;
    }
    .filter-bar.filter-bar--open {
        max-height: 900px;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--bg-card);
        margin-bottom: 1.5rem;
    }

    .filter-col { padding: 0; }
    .filter-vdivider { width: 100%; height: 1px; align-self: auto; }
    .filter-price-inputs { flex-wrap: wrap; }
    .price-input { width: 75px; }
}

/* ── Category sort dropdown — add to your CSS ── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cat-sort__select {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.cat-sort__select:hover,
.cat-sort__select:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════
   ORDER DETAIL PAGE
   ══════════════════════════════════════════════ */

.order-detail-page { padding: 2rem 0 5rem; }

.order-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-detail-title {
    font-size: 1.4rem;
    font-family: Georgia, serif;
    margin: 0.4rem 0 0.2rem;
}

.order-detail-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-badge--lg {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* ── Tracking card ── */
.tracking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tracking-card--cancelled {
    text-align: center;
    padding: 2rem;
    opacity: 0.7;
}

.tracking-cancelled-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

.tracking-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Timeline ── */
.tracking-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.tracking-step__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-input, rgba(255,255,255,0.05));
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 1;
    transition: all 0.3s;
    flex-shrink: 0;
}

.tracking-step.completed .tracking-step__dot {
    background: var(--gold, #c9a84c);
    border-color: var(--gold);
    color: #000;
}

.tracking-step.active .tracking-step__dot {
    background: transparent;
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}

.tracking-step__line {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.tracking-step.completed .tracking-step__line {
    background: var(--gold, #c9a84c);
}

.tracking-step__info {
    margin-top: 0.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tracking-step__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tracking-step.completed .tracking-step__label,
.tracking-step.active    .tracking-step__label {
    color: var(--text-primary);
}

.tracking-step__desc {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ── Detail layout ── */
.order-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

/* ── OD Cards ── */
.od-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.od-card--help p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.od-card__title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}

/* ── Items ── */
.od-items { display: flex; flex-direction: column; gap: 0.6rem; }

.od-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.od-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.od-item__name   { color: var(--text-primary); font-weight: 500; }
.od-item__meta   { color: var(--text-muted); font-size: 0.75rem; }
.od-item__subtotal { font-weight: 700; color: var(--gold-light); white-space: nowrap; }

/* ── Address ── */
.od-address p {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0.3rem 0;
}

.od-notes {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ── Summary ── */
.od-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}

.od-summary-row--total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.od-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.od-payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding-top: 0.6rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--border);
}

.od-pay-label { color: var(--text-muted); }
.od-pay-value { color: var(--text-primary); font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .order-detail-layout { grid-template-columns: 1fr; }
    .tracking-step__desc { display: none; }
}

@media (max-width: 600px) {
    .tracking-step__label { font-size: 0.65rem; }
    .tracking-step__dot   { width: 28px; height: 28px; font-size: 0.65rem; }
    .tracking-step__line  { top: 14px; }
    .products-filters     { flex-direction: column; align-items: stretch; }
    .products-search      { max-width: 100%; }
}

/* ══════════════════════════════════════════════
   ACCOUNT PAGE
   ══════════════════════════════════════════════ */

.account-page { padding: 2rem 0 5rem; }

/* ── Page header ── */
.account-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.account-welcome {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark, #a07830), var(--gold, #c9a84c));
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-welcome-name {
    font-size: 1.3rem;
    font-family: Georgia, serif;
    margin: 0 0 0.2rem;
}

.account-welcome-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Layout ── */
.account-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* ── Sidebar ── */
.account-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.account-nav { display: flex; flex-direction: column; }

.account-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    gap: 0.5rem;
}

.account-nav-item:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text-primary);
}

.account-nav-item.active {
    background: rgba(201,168,76,0.08);
    border-left-color: var(--gold, #c9a84c);
    color: var(--gold-light, #d4b86a);
    font-weight: 600;
}

.account-nav-item.link-danger       { color: #e57373; }
.account-nav-item.link-danger:hover { background: rgba(244,67,54,0.08); }

.account-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 0.4rem 0;
}

.nav-count {
    background: var(--gold, #c9a84c);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 50px;
}

/* ── Section ── */
.account-section-title {
    font-size: 1.1rem;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

/* ── Card ── */
.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.account-card-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

.account-card-divider {
    height: 1px;
    background: var(--border);
    margin: 1.2rem 0;
}

/* ── Stats grid ── */
.account-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.account-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.2s;
}

.account-stat-card:hover {
    border-color: rgba(201,168,76,0.3);
}

.account-stat-icon { font-size: 1.5rem; }

.account-stat-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.account-stat-card span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ── Orders table ── */
.orders-table-wrap { overflow-x: auto; }

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
}

.orders-table th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.orders-table td {
    padding: 0.75rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.order-num {
    color: var(--gold-light, #d4b86a) !important;
    font-weight: 600;
    font-size: 0.78rem;
}

.btn-link {
    color: var(--gold, #c9a84c);
    font-size: 0.78rem;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover { text-decoration: underline; }

/* ── Account form ── */
.account-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}

/* ── Alerts ── */
.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    color: #81c784;
}

.alert-error {
    background: rgba(244,67,54,0.1);
    border: 1px solid rgba(244,67,54,0.3);
    color: #e57373;
}

/* ── Address card ── */
.address-card { position: relative; padding: 0.5rem 0; }

.address-card__badge {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-card p {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0.25rem 0;
}

.address-card__actions { margin-top: 0.75rem; }

/* ── Empty state ── */
.account-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* ── Session item ── */
.session-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.85rem;
}

.session-icon { font-size: 1.3rem; }

.session-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.session-item strong { color: var(--text-primary); font-size: 0.85rem; }
.session-item span   { color: var(--text-muted);   font-size: 0.75rem; }

.session-current {
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    color: #81c784;
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .account-layout       { grid-template-columns: 1fr; }
    .account-sidebar      { position: static; }
    .account-nav          { flex-direction: row; flex-wrap: wrap; }
    .account-nav-item     { border-left: none; border-bottom: 2px solid transparent; }
    .account-nav-item.active { border-bottom-color: var(--gold); border-left: none; }
    .account-stats-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .account-stats-grid   { grid-template-columns: repeat(2, 1fr); }
    .account-form .form-row { grid-template-columns: 1fr; }
    .account-page-header  { flex-direction: column; align-items: flex-start; }
}

/* ── Forgot password success ── */
.fp-success {
    text-align: center;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fp-success-icon {
    font-size: 2.8rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--gold, #c9a84c);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.fp-success h3 {
    font-size: 1.15rem;
    font-family: Georgia, serif;
    color: var(--text-primary, #fff);
    margin: 0;
}

.fp-success p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
    max-width: 320px;
    text-align: center;
}

.fp-success .btn {
    width: 100%;
    margin-top: 0.5rem;
}


/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════ */

.product-detail-page { padding: 0 0 5rem; }

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb-bar {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    background: rgba(10,8,2,0.5);
    margin-bottom: 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.breadcrumb-nav span { color: var(--gold); }

.breadcrumb-nav .fa-chevron-right {
    font-size: 0.6rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ── Main Layout: Gallery + Info ──────────────── */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

/* ── Gallery ──────────────────────────────────── */
.pd-gallery { position: sticky; top: 80px; }

.pd-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(20,16,8,0.8);
    border: 1px solid var(--border);
    cursor: zoom-in;
    margin-bottom: 0.75rem;
}

.pd-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.18s ease, transform 0.35s ease;
}

.pd-gallery__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-muted);
    font-size: 3rem;
}

.pd-badge-sale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #1a1200;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    z-index: 3;
}

.pd-badge-oos {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(180,50,50,0.85);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    z-index: 3;
}

.pd-gallery__zoom-hint {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.55);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.pd-gallery__main:hover .pd-gallery__zoom-hint { opacity: 1; }

/* Thumbnails */
.pd-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pd-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pd-thumb:hover { border-color: rgba(201,168,76,0.5); }
.pd-thumb:hover img { transform: scale(1.08); }

.pd-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

/* ── Product Info ─────────────────────────────── */
.pd-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pd-category-badge {
    margin-bottom: 0.6rem;
}

.pd-category-badge a {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    transition: background 0.2s;
    text-decoration: none;
}

.pd-category-badge a:hover { background: rgba(201,168,76,0.08); }

.pd-name {
    font-family: Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

/* Meta row: SKU + stock */
.pd-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pd-sku {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.pd-stock {
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.pd-stock--in  { background: rgba(76,175,80,0.1);  color: #81c784; border: 1px solid rgba(76,175,80,0.25); }
.pd-stock--low { background: rgba(255,152,0,0.1);  color: #ffb74d; border: 1px solid rgba(255,152,0,0.25); }
.pd-stock--out { background: rgba(244,67,54,0.1);  color: #e57373; border: 1px solid rgba(244,67,54,0.25); }

/* Price */
.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
    margin-top: 0.75rem;
}

.pd-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: Georgia, serif;
}

.pd-compare-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pd-savings {
    font-size: 0.82rem;
    font-weight: 600;
    color: #81c784;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

.pd-tax-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.pd-weight {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.pd-short-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.pd-read-more {
    color: var(--gold);
    font-size: 0.82rem;
    margin-left: 0.4rem;
    text-decoration: underline;
}

/* ── Actions ──────────────────────────────────── */
.pd-actions { margin-top: 0.75rem; }

.pd-qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pd-qty-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.pd-btn-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.pd-btn-cart {
    flex: 1;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.pd-btn-wishlist {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.pd-btn-wishlist:hover,
.pd-btn-wishlist--active {
    border-color: #e57373;
    color: #e57373;
    background: rgba(229,115,115,0.08);
}

.pd-btn-buynow {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* OOS block */
.pd-oos-block {
    background: rgba(180,50,50,0.06);
    border: 1px solid rgba(220,80,80,0.2);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    text-align: center;
}

.pd-oos-msg {
    font-size: 0.88rem;
    color: #e57373;
    margin-bottom: 1rem;
}

/* Trust badges */
.pd-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.pd-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

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

/* Share */
.pd-share {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.pd-share-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pd-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.pd-share-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.pd-share-wa:hover { border-color: #25d366; color: #25d366 !important; }

/* ── Tabs ─────────────────────────────────────── */
.pd-tabs-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3.5rem;
    scroll-margin-top: 80px;
}

.pd-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.2);
}

.pd-tab {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.pd-tab:hover { color: var(--text-primary); }

.pd-tab.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.pd-tab-content {
    display: none;
    padding: 2rem;
    animation: panelIn 0.25s ease-out;
}

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

.pd-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 720px;
}

/* Specs table */
.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    max-width: 560px;
}

.pd-specs-table tr {
    border-bottom: 1px solid var(--border);
}

.pd-specs-table td {
    padding: 0.75rem 1rem;
    vertical-align: top;
}

.pd-specs-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
    width: 40%;
    white-space: nowrap;
}

.pd-specs-table td:last-child { color: var(--text-primary); }

/* Shipping info */
.pd-shipping-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
}

.pd-shipping-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pd-shipping-item i {
    font-size: 1.3rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pd-shipping-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.pd-shipping-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Related Products ─────────────────────────── */
.pd-related { margin-bottom: 4rem; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
    .pd-layout { grid-template-columns: 1fr; gap: 2rem; }
    .pd-gallery { position: static; }
    .pd-trust-badges { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .pd-shipping-info { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .pd-name { font-size: 1.4rem; }
    .pd-price { font-size: 1.6rem; }
    .pd-thumb { width: 58px; height: 58px; }
    .pd-tab { padding: 0.8rem 1rem; font-size: 0.8rem; }
    .pd-tab-content { padding: 1.25rem; }
    .pd-btn-row { flex-wrap: wrap; }
    .pd-btn-cart { width: 100%; }
    .pd-specs-table td:first-child { width: 45%; }
}

@media (max-width: 400px) {
    .pd-tabs { overflow-x: auto; }
    .pd-trust-badges { grid-template-columns: repeat(2, 1fr); }
}



/* ══════════════════════════════════════════════
   CATEGORY PAGE
   ══════════════════════════════════════════════ */

.cat-page { padding-bottom: 5rem; }

/* ── Category Hero ────────────────────────────── */
.cat-hero {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2rem;
}

.cat-hero__img {
    width: 220px;
    height: 180px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.cat-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-hero__info { flex: 1; }

.cat-hero__title {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.cat-hero__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 560px;
}

.cat-hero__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cat-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(201,168,76,0.06);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
}

.cat-hero__meta i { color: var(--gold); }

/* ── Parent badge ─────────────────────────────── */
.cat-parent-badge {
    margin-bottom: 0.6rem;
}

.cat-parent-badge a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    text-decoration: none;
    transition: background 0.2s;
}

.cat-parent-badge a:hover { background: rgba(201,168,76,0.08); }

/* ── Section ──────────────────────────────────── */
.cat-section { margin-bottom: 3rem; }

/* ── Subcategory cards ────────────────────────── */
.subcats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.subcat-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.subcat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.15);
}

.subcat-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(20,16,8,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.subcat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.subcat-card:hover .subcat-card__img img { transform: scale(1.06); }

.subcat-card__body {
    padding: 0.85rem;
}

.subcat-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.subcat-card__count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Product card footer (Add to Cart row) ────── */
.product-card__footer {
    padding: 0 0.85rem 0.85rem;
}

/* ── Empty state ──────────────────────────────── */
.cat-empty {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cat-empty i { color: var(--text-muted); opacity: 0.4; }
.cat-empty p { font-size: 1rem; color: var(--text-secondary); }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .cat-hero {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .cat-hero__img { width: 100%; height: 200px; }
    .cat-hero__meta { justify-content: center; }
    .cat-parent-badge { display: flex; justify-content: center; }
    .subcats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .subcats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}


/* ══════════════════════════════════════════════════════
   MID BANNER — Append to assets/css/style.css
══════════════════════════════════════════════════════ */

.mid-banner-section {
    padding: 2.5rem 0;
}

/* Single wide banner */
.mid-banner-single {
    display: block;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.mid-banner-single:hover { transform: scale(1.01); }

.mid-banner-single img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 280px;
}

/* Multi banner grid */
.mid-banner-grid {
    display: grid;
    gap: 1rem;
}

.mid-banner-grid--2col { grid-template-columns: repeat(2, 1fr); }
.mid-banner-grid--3col { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .mid-banner-grid--2col,
    .mid-banner-grid--3col { grid-template-columns: 1fr; }
}

.mid-banner-item {
    position: relative;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mid-banner-item:hover { transform: translateY(-4px); }

.mid-banner-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.mid-banner-item:hover img { transform: scale(1.05); }

.mid-banner-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 1.5rem 1rem 0.75rem;
    letter-spacing: 0.3px;
}


/* ══════════════════════════════════════════════
   ORDER TRACKING PAGE
   Add to assets/css/style.css
══════════════════════════════════════════════ */

.track-page { padding: 3rem 0 5rem; }

/* ── Hero ── */
.track-hero { text-align: center; margin-bottom: 2rem; }
.track-hero__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-family: Georgia, serif;
    margin-bottom: 0.4rem;
}
.track-hero__sub { color: var(--text-muted); font-size: 0.9rem; }

/* ── Search ── */
.track-search-wrap { max-width: 620px; margin: 0 auto 2rem; }

.track-search-inner {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    gap: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.track-search-inner:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.track-search-icon { color: var(--text-muted); flex-shrink: 0; }
.track-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.9rem;
    min-width: 0;
}
.track-search-input::placeholder { color: var(--text-muted); }
.track-search-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: none;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.track-search-btn:hover { opacity: 0.85; }

.track-hints {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.track-hints span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── Error ── */
.track-error {
    max-width: 620px;
    margin: 0 auto 1.5rem;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ef4444;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* ── Result card ── */
.track-result {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

/* ── Summary bar ── */
.track-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-hover);
}
.track-summary__item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--border);
}
.track-summary__item:last-child { border-right: none; }
.track-summary__label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.track-summary__val   { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.text-gold { color: var(--gold) !important; }

/* Payment badges */
.pay-badge { font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.badge-paid        { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-pending-pay { background: rgba(245,158,11,0.15); color: #f59e0b; }
.badge-failed      { background: rgba(239,68,68,0.15);  color: #ef4444; }
.badge-refunded    { background: rgba(249,115,22,0.15); color: #f97316; }

/* Status pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: color-mix(in srgb, var(--sc) 15%, transparent);
    color: var(--sc);
    border: 1px solid color-mix(in srgb, var(--sc) 30%, transparent);
}

/* ── Stepper ── */
.track-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 1.5rem 1.5rem;
    gap: 0;
    overflow-x: auto;
}
.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 60px;
}
.track-step__dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    flex-shrink: 0;
}
.track-step.done .track-step__dot {
    background: color-mix(in srgb, var(--sc) 15%, transparent);
    border-color: var(--sc);
    color: var(--sc);
}
.track-step.current .track-step__dot {
    background: var(--sc);
    border-color: var(--sc);
    color: #000;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--sc) 25%, transparent);
}
.track-step__line {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.track-step__line.done { background: var(--gold); }
.track-step__label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
    white-space: nowrap;
}
.track-step.done .track-step__label,
.track-step.current .track-step__label { color: var(--text); font-weight: 600; }

/* ── Cancelled banner ── */
.track-cancelled-banner {
    margin: 1.5rem 1.5rem 0;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
    color: #ef4444;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
}

/* ── Courier strip ── */
.track-courier {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 1.5rem 0;
    padding: 0.75rem 1rem;
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #06b6d4;
    flex-wrap: wrap;
}
.track-id strong { font-family: monospace; font-size: 0.9rem; color: var(--gold); }

/* ── Address / Payment details ── */
.track-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 1.25rem;
}
.track-details__label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 700;
}
.track-details__val { font-size: 0.85rem; line-height: 1.7; color: var(--text); }

/* ── Items list ── */
.track-items {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0;
    padding-top: 1.25rem;
}
.track-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.track-item:last-of-type { border-bottom: none; }
.track-item__img {
    width: 52px; height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.track-item__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hover);
    color: var(--text-muted);
}
.track-item__info  { flex: 1; min-width: 0; }
.track-item__name  { font-size: 0.875rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-item__meta  { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.track-item__total { font-size: 0.9rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }

.track-items__total {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .track-summary__item { min-width: 100px; padding: 0.75rem 1rem; }
    .track-stepper { padding: 1.5rem 1rem 1rem; gap: 0; }
    .track-step__dot { width: 32px; height: 32px; font-size: 0.8rem; }
    .track-step__line { top: 16px; }
    .track-step__label { font-size: 0.6rem; }
    .track-details { grid-template-columns: 1fr; }
    .track-result { border-radius: 12px; }
}


/* ── Orders List ── append to track.css ── */
.track-list {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.track-list__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
}
.track-list-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}
.track-list-row:last-child { border-bottom: none; }
.track-list-row:hover { background: var(--bg-hover); }

.track-list-row__left  { flex: 1; min-width: 0; }
.track-list-row__num   { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.track-list-row__date  { font-size: 0.78rem; margin-top: 2px; }
.track-list-row__mid   { flex-shrink: 0; }
.track-list-row__right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Back button */
.track-back { padding: 0.75rem 1.5rem; border-bottom: 1px solid var(--border); }
.track-back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    padding: 0;
}
.track-back-btn:hover { color: var(--gold); }

@media (max-width: 600px) {
    .track-list-row { padding: 0.9rem 1rem; gap: 0.75rem; }
    .track-list-row__num { font-size: 0.8rem; }
}

/* ── Policy Pages — add to style.css ── */
.policy-page { padding: 4rem 0; }

.policy-container {
    max-width: 820px;
    margin: 0 auto;
}

.policy-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.policy-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.policy-container p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-container h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.policy-container ul,
.policy-container ol {
    padding-left: 1.4rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.policy-container a {
    color: var(--gold);
    text-decoration: none;
}
.policy-container a:hover { text-decoration: underline; }

.policy-container .fas {
    color: var(--gold);
    width: 18px;
    margin-right: 6px;
}

/* Sitemap */
.sitemap-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}
.sitemap-list li::before {
    content: '→ ';
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-page { padding: 2.5rem 0 5rem; }

.page-hero { text-align: center; margin-bottom: 2.5rem; }
.page-hero__tag {
    display: inline-block;
    font-size: .72rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold);
    background: rgb(201 168 76 / .1);
    border: 1px solid var(--border);
    border-radius: 50px; padding: .3rem .9rem;
    margin-bottom: .9rem;
}
.page-hero__title {
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: .5rem; line-height: 1.2;
}
.page-hero__title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero__desc { color: var(--text-secondary); max-width: 440px; margin: 0 auto; font-size: .95rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem; align-items: start;
}

.contact-form-title {
    font-size: 1.1rem; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: .5rem;
}
.contact-form-title i { color: var(--gold); }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.info-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.info-card__title {
    font-size: .9rem; color: var(--gold);
    margin-bottom: 1.1rem;
    display: flex; align-items: center; gap: .5rem;
}
.info-card__title i {
    width: 30px; height: 30px;
    background: rgb(201 168 76 / .1);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; flex-shrink: 0;
}

.info-detail-row {
    display: flex; align-items: flex-start;
    gap: .85rem; margin-bottom: .9rem;
}
.info-detail-row:last-child { margin-bottom: 0; }
.info-detail-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    background: rgb(201 168 76 / .1);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: .8rem; margin-top: 2px;
}
.info-detail-label {
    font-size: .7rem; text-transform: uppercase;
    letter-spacing: .06em; color: var(--text-muted);
    margin-bottom: 2px; display: block;
}
.info-detail-value { font-size: .9rem; color: var(--text-primary); }
.info-detail-value a { color: var(--text-primary); }
.info-detail-value a:hover { color: var(--gold); }

.hours-list { list-style: none; }
.hours-list li {
    display: flex; justify-content: space-between;
    font-size: .85rem; padding: .5rem 0;
    border-bottom: 1px solid rgb(201 168 76 / .08);
    color: var(--text-secondary);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li strong { color: var(--text-primary); }
.hours-list .closed { color: #f87171; }

.social-links-row { display: flex; gap: .6rem; margin-top: .85rem; }
.social-link {
    width: 36px; height: 36px;
    background: rgb(201 168 76 / .1);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: .85rem;
    transition: background .2s, border-color .2s, transform .15s;
}
.social-link:hover {
    background: var(--gold); color: #0a0a0a;
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-page { padding: 2.5rem 0 5rem; }

.about-stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 4rem;
}
.about-stat-item {
    padding: 1.8rem 1rem; text-align: center;
    border-right: 1px solid var(--border);
    transition: background .25s;
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: rgb(201 168 76 / .04); }
.about-stat-num {
    font-size: 2rem; font-weight: 800;
    color: var(--gold); line-height: 1; margin-bottom: .3rem;
}
.about-stat-label {
    font-size: .72rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .7px;
}

.about-story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; align-items: center; margin-bottom: 4rem;
}
.story-tag {
    display: inline-block;
    font-size: .72rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); background: rgb(201 168 76 / .1);
    border: 1px solid var(--border);
    border-radius: 50px; padding: .3rem .9rem; margin-bottom: .9rem;
}
.story-title {
    font-family: Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem; line-height: 1.3;
}
.story-title em { font-style: italic; color: var(--gold); }
.story-body p { color: var(--text-secondary); line-height: 1.8; font-size: .95rem; margin-bottom: 1rem; }
.story-body p:last-child { margin-bottom: 0; }

.story-quote-card { text-align: center; }
.story-quote-icon {
    width: 72px; height: 72px;
    background: rgb(201 168 76 / .1);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem; font-size: 1.8rem; color: var(--gold);
}
.story-blockquote {
    font-size: 1.05rem; font-style: italic;
    color: var(--text-primary); line-height: 1.75; margin: 0;
}
.story-blockquote cite {
    display: block; font-style: normal;
    font-size: .75rem; color: var(--gold);
    margin-top: 1rem; text-transform: uppercase; letter-spacing: 1px;
}

.about-section-header { text-align: center; margin-bottom: 2rem; }
.about-section-title {
    font-family: Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: .5rem;
}
.about-section-title em { font-style: normal; color: var(--gold); }
.about-section-desc { color: var(--text-secondary); font-size: .9rem; max-width: 440px; margin: 0 auto; }

.about-values { margin-bottom: 4rem; }
.about-cats { margin-bottom: 4rem; }
.about-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.2rem; }

.about-cat-card {
    display: flex; flex-direction: column; align-items: center;
    gap: .6rem; padding: 1.8rem 1rem; text-align: center;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-decoration: none;
    transition: border-color .25s, transform .25s;
}
.about-cat-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.about-cat-icon {
    width: 52px; height: 52px;
    background: rgb(201 168 76 / .1);
    border: 1px solid var(--border); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
    transition: background .25s;
}
.about-cat-card:hover .about-cat-icon { background: rgb(201 168 76 / .2); }
.about-cat-name { font-size: .9rem; font-weight: 600; color: var(--text-primary); }
.about-cat-desc { font-size: .75rem; color: var(--text-muted); }

.about-cta-card { max-width: 640px; margin: 0 auto; text-align: center; }
.about-cta-title { font-family: Georgia, serif; font-size: 1.7rem; margin-bottom: .6rem; }
.about-cta-title em { font-style: italic; color: var(--gold); }
.about-cta-desc { color: var(--text-secondary); margin-bottom: 1.8rem; font-size: .95rem; }
.about-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .about-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item:nth-child(2) { border-right: none; }
    .about-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta-btns { flex-direction: column; }
    .about-cta-btns .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════
   APP DOWNLOAD SECTION
══════════════════════════════════════════════ */
.app-section { background: rgb(15 12 5 / .6); }

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left image */
.app-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right content */
.app-title {
    font-family: Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25;
    margin: .7rem 0 1rem;
}
.app-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.app-desc {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: .95rem;
    margin-bottom: 1.4rem;
    max-width: 420px;
}

.app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 2rem;
}
.app-features li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .88rem;
    color: var(--text-secondary);
}
.app-features li i {
    color: var(--gold);
    font-size: .8rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* Store buttons */
.app-store-btns {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.app-store-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .75rem 1.3rem;
    text-decoration: none;
    transition: border-color .25s, box-shadow .25s, transform .2s;
    min-width: 160px;
}
.app-store-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgb(201 168 76 / .15);
    transform: translateY(-2px);
}
.app-store-icon {
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
}
.app-store-text span {
    display: block;
    font-size: .68rem;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 2px;
}
.app-store-text strong {
    display: block;
    font-size: .95rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1;
}

.app-coming-soon {
    font-size: .8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.app-coming-soon i { color: var(--gold); }
.app-coming-soon a { color: var(--gold); }
.app-coming-soon a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 860px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .app-img-wrap { order: 2; }
    .app-content  { order: 1; }
    .app-desc     { margin: 0 auto 1.4rem; }
    .app-features { align-items: center; }
    .app-store-btns { justify-content: center; }
    .app-coming-soon { justify-content: center; }
    .app-mockup-img { max-width: 200px; }
    .app-mockup-placeholder { width: 180px; height: 280px; }
}

