/* ============================================================
   ShopNxx - Main Stylesheet
   Dark + Gold theme to match the ShopNxx logo
   ============================================================ */

:root {
    --bg:        #0c0c0e;
    --bg-soft:   #15151a;
    --bg-card:   #17171c;
    --border:    #2a2a32;
    --gold:      #d4a23a;
    --gold-soft: #e9c878;
    --text:      #f4f4f5;
    --text-dim:  #a1a1aa;
    --danger:    #e05656;
    --success:   #3fae6a;
    --radius:    14px;
    --maxw:      1200px;
}

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

html { background: var(--bg); scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
    cursor: pointer; border: 1px solid transparent; transition: all .2s ease;
    font-family: 'Poppins', sans-serif;
}
.btn-gold { background: var(--gold); color: #15110a; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-danger { background: var(--danger); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(12,12,14,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.logo img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; margin-left: 10px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--text-dim); transition: color .2s; }
.main-nav a:hover { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown .caret { font-size: 10px; }
.nav-dropdown-menu {
    position: absolute; top: 130%; left: 0; min-width: 190px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 8px; display: none; flex-direction: column;
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.nav-dropdown-menu a { padding: 10px 12px; border-radius: 8px; }
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--gold); }
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }

.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.header-search { display: flex; align-items: center; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 30px; padding: 4px 6px 4px 16px; }
.header-search input { background: transparent; border: none; outline: none; color: var(--text); font-size: 14px; width: 170px; }
.header-search input::placeholder { color: var(--text-dim); }
.header-search button { background: var(--gold); color: #15110a; border: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }

.cart-btn { position: relative; color: var(--text); display: grid; place-items: center; }
.cart-btn:hover { color: var(--gold); }
.cart-count { position: absolute; top: -8px; right: -10px; background: var(--gold); color: #15110a; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center; padding: 0 4px; transition: opacity .2s; }
/* Badge hides itself when count is 0 — JS also sets display:none for full removal */
.cart-count:empty { display: none; }

/* ---- Customer account dropdown ---- */
.account-btn { display: flex; align-items: center; gap: 8px; }
.account-btn:hover { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; overflow: hidden;
    padding: 90px 0;
    background:
        linear-gradient(120deg, rgba(12,12,14,.95) 35%, rgba(12,12,14,.55) 100%),
        radial-gradient(circle at 80% 30%, rgba(212,162,58,.18), transparent 55%);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.hero-eyebrow { color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: var(--text-dim); font-size: 18px; margin: 20px 0 30px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img, .hero-visual video { border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.55); width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ---------- Category strip ---------- */
.section { padding: 70px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head .eyebrow { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 10px 0; }
.section-head p { color: var(--text-dim); }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 3/4; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,10,.92) 8%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; }
.cat-card h3 { font-size: 24px; }
.cat-card span { color: var(--gold); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }

/* ============================================================
   PRODUCT GRID + CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.product-media { position: relative; aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #15110a; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.product-tag-sale { position: absolute; top: 12px; right: 12px; background: var(--danger); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.product-name { font-family: 'Poppins'; font-weight: 600; font-size: 16px; }
.product-name a:hover { color: var(--gold); }
.product-price { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px; }
.product-price .now { color: var(--gold); font-weight: 700; font-size: 18px; font-family: 'Poppins'; }
.product-price .was { color: var(--text-dim); text-decoration: line-through; font-size: 14px; }
.product-body .btn { margin-top: 12px; }

/* ============================================================
   SHOP PAGE (filters + layout)
   ============================================================ */
.page-banner { padding: 50px 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.page-banner h1 { font-size: clamp(28px,4vw,42px); }
.breadcrumb { color: var(--text-dim); font-size: 14px; margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--gold); }

.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 40px 0; }
.shop-sidebar { position: sticky; top: 96px; align-self: start; }
.filter-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.filter-box h4 { margin-bottom: 14px; font-size: 16px; }
.filter-box a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--text-dim); font-size: 14px; }
.filter-box a:hover, .filter-box a.active { background: var(--bg-soft); color: var(--gold); }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.shop-toolbar .count { color: var(--text-dim); font-size: 14px; }
.shop-toolbar select { background: var(--bg-card); border: 1px solid var(--border); color: var(--text); padding: 10px 14px; border-radius: 10px; font-size: 14px; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--text-dim); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 50px 0; }
.pd-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-soft); }
.pd-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd-info h1 { font-size: 34px; margin-bottom: 12px; }
.pd-price { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.pd-price .now { color: var(--gold); font-size: 30px; font-weight: 800; font-family: 'Poppins'; }
.pd-price .was { color: var(--text-dim); text-decoration: line-through; font-size: 18px; }
.pd-desc { color: var(--text-dim); margin: 18px 0; }
.pd-section-label { font-weight: 600; margin-bottom: 10px; font-family: 'Poppins'; }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.size-chip { border: 1px solid var(--border); background: var(--bg-card); color: var(--text); padding: 10px 16px; border-radius: 10px; cursor: pointer; font-weight: 500; transition: .2s; }
.size-chip:hover { border-color: var(--gold); }
.size-chip.selected { background: var(--gold); color: #15110a; border-color: var(--gold); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty-control button { background: var(--bg-card); color: var(--text); border: none; width: 42px; height: 44px; font-size: 20px; cursor: pointer; }
.qty-control input { width: 50px; text-align: center; background: var(--bg); border: none; color: var(--text); height: 44px; font-size: 16px; }
.pd-meta { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 20px; color: var(--text-dim); font-size: 14px; }
.pd-meta span { color: var(--text); }

/* ============================================================
   CART
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 40px 0; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; align-items: center; }
.cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; }
.cart-item .ci-name { font-weight: 600; font-family: 'Poppins'; }
.cart-item .ci-meta { color: var(--text-dim); font-size: 13px; }
.cart-item .ci-price { color: var(--gold); font-weight: 700; }
.ci-remove { color: var(--text-dim); font-size: 13px; cursor: pointer; background: none; border: none; }
.ci-remove:hover { color: var(--danger); }
.summary-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 96px; }
.summary-box h3 { margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--text-dim); }
.summary-row.total { color: var(--text); font-size: 20px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; font-family: 'Poppins'; }
.summary-row.total span:last-child { color: var(--gold); }

/* ============================================================
   FORMS / CHECKOUT
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 500; }
.form-control { width: 100%; background: var(--bg-card); border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: 10px; font-size: 15px; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { min-height: 90px; resize: vertical; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 40px 0; align-items: start; }
.panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.panel h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.pay-info { background: var(--bg-soft); border: 1px dashed var(--gold); border-radius: 12px; padding: 18px; margin-bottom: 18px; }
.pay-info .pay-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.pay-info .pay-row:last-child { border-bottom: none; }
.pay-info .pay-row span:last-child { color: var(--gold); font-weight: 600; }
.file-drop { border: 2px dashed var(--border); border-radius: 12px; padding: 26px; text-align: center; color: var(--text-dim); cursor: pointer; transition: .2s; }
.file-drop:hover { border-color: var(--gold); color: var(--gold); }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: rgba(63,174,106,.12); border: 1px solid var(--success); color: #8fe0ab; }
.alert-danger { background: rgba(224,86,86,.12); border: 1px solid var(--danger); color: #f0a3a3; }
.alert-info { background: rgba(212,162,58,.1); border: 1px solid var(--gold); color: var(--gold-soft); }

.order-success { text-align: center; max-width: 600px; margin: 0 auto; padding: 60px 20px; }
.order-success .check { width: 80px; height: 80px; border-radius: 50%; background: rgba(63,174,106,.15); border: 2px solid var(--success); display: grid; place-items: center; margin: 0 auto 24px; color: var(--success); }
.order-code { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px; font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin: 24px 0; font-family: 'Poppins'; }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.feature .ic { color: var(--gold); flex-shrink: 0; }
.feature h4 { font-size: 15px; }
.feature p { color: var(--text-dim); font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 20px 36px; }
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 280px; }
.footer-col h4 { font-size: 16px; margin-bottom: 16px; color: var(--gold); }
.footer-col a, .footer-col p { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
/* Dynamic contact links rendered as icon buttons */
.footer-contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.footer-contact-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; margin: 0; border-radius: 10px;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
    transition: all .2s ease;
}
.footer-contact-links a:hover { background: var(--gold); border-color: var(--gold); color: #15110a; transform: translateY(-2px); }
.footer-contact-links a svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; }
.footer-bottom p { color: var(--text-dim); font-size: 13px; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.admin-login-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; width: 100%; max-width: 400px; }
.admin-login-card img { height: 50px; margin: 0 auto 22px; }

.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--bg-soft); border-right: 1px solid var(--border); padding: 24px 16px; }
.admin-sidebar .logo { display: block; margin-bottom: 28px; }
.admin-sidebar .logo img { height: 40px; }
.admin-sidebar a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; color: var(--text-dim); margin-bottom: 4px; font-size: 14px; font-weight: 500; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--bg-card); color: var(--gold); }
.admin-main { padding: 28px 32px; overflow-x: auto; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-topbar h1 { font-size: 26px; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.stat-card .label { color: var(--text-dim); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.stat-card .value { font-size: 30px; font-weight: 800; font-family: 'Poppins'; margin-top: 6px; }
.stat-card .value.gold { color: var(--gold); }

.data-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.data-table th { background: var(--bg-soft); color: var(--text-dim); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .5px; }
.data-table tr:last-child td { border-bottom: none; }
.data-table img.thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.status-pill { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-block; }
.status-pending { background: rgba(212,162,58,.15); color: var(--gold); }
.status-verified { background: rgba(91,140,235,.15); color: #9bb6f3; }
.status-shipped { background: rgba(91,140,235,.15); color: #9bb6f3; }
.status-delivered { background: rgba(63,174,106,.15); color: #8fe0ab; }
.status-cancelled { background: rgba(224,86,86,.15); color: #f0a3a3; }
.proof-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }

.admin-actions { display: flex; gap: 8px; }
.icon-link { color: var(--text-dim); padding: 6px; border-radius: 6px; }
.icon-link:hover { color: var(--gold); background: var(--bg-soft); }
.icon-link.danger:hover { color: var(--danger); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .nav-toggle { display: flex; order: 3; }
    .header-search { display: none; }
    .main-nav {
        position: fixed; top: 74px; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        flex-direction: column; align-items: flex-start; gap: 0;
        padding: 12px 20px; transform: translateY(-130%); transition: transform .3s;
        max-height: calc(100vh - 74px); overflow-y: auto;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
    .nav-dropdown { width: 100%; }
    /* Only the category dropdown (inside the mobile nav menu) should always
       render flat/expanded here. The account dropdown is a separate menu
       in .header-actions and must stay collapsed until explicitly opened,
       otherwise it renders open/visible on every mobile page load. */
    .main-nav .nav-dropdown-menu { position: static; display: flex; box-shadow: none; border: none; padding-left: 14px; }
    .header-actions .nav-dropdown-menu { display: none; }
    .header-actions .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .header-actions .nav-dropdown.open .nav-dropdown-menu { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .cat-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .product-detail { grid-template-columns: 1fr; gap: 28px; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .summary-box { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { display: flex; flex-wrap: wrap; gap: 6px; border-right: none; border-bottom: 1px solid var(--border); }
    .admin-sidebar .logo { width: 100%; }
}
@media (max-width: 520px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
    .product-card .product-body .btn { font-size: 13px; padding: 10px; }
}

/* ---------- Announcement bar (right-to-left slideshow) ---------- */
.announce-bar {
    background: var(--gold);
    color: #1a1205;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    letter-spacing: .2px;
    overflow: hidden;
    white-space: nowrap;
}
.announce-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: announce-scroll 30s linear infinite;
}
.announce-bar:hover .announce-track { animation-play-state: paused; }
.announce-item {
    display: inline-flex;
    align-items: center;
    padding: 0 26px;
    position: relative;
}
.announce-item::after {
    content: "\2022";
    position: absolute;
    right: -3px;
    opacity: .5;
}
/* Slides content from right to left */
@keyframes announce-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .announce-track { animation-duration: 90s; }
}

/* ---------- Simple content pages (FAQ, Size Guide, Returns, Track) ---------- */
.content-page { max-width: 820px; margin: 0 auto; padding: 10px 0 40px; }
.content-page .panel + .panel { margin-top: 20px; }
.content-page h2 { font-size: 22px; margin-bottom: 10px; }
.content-page h3 { font-size: 18px; margin-bottom: 8px; }
.content-page p { color: var(--text-dim); margin-bottom: 12px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 16px; margin-bottom: 6px; color: var(--text); }
.faq-item p { margin-bottom: 0; }
.size-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.size-table th, .size-table td { border: 1px solid var(--border); padding: 10px 12px; text-align: center; font-size: 14px; }
.size-table th { background: var(--bg-soft); color: var(--gold-soft); }
.status-track { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.status-track .step { flex: 1; min-width: 90px; text-align: center; padding: 10px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }
.status-track .step.active { background: rgba(212,162,58,.15); border-color: var(--gold); color: var(--gold-soft); font-weight: 600; }