/* Ryker Luxury — chocolate brown & antique champagne gold (matches Logo.jpg) */
:root {
  --bg: #f5efe5;          /* warm cream — matches paper/wall in logo photo */
  --bg-card: #ffffff;
  --ink: #2a1c0f;         /* deep chocolate brown — primary dark */
  --ink-soft: #4a3528;    /* mid chocolate */
  --ink-faint: #8a7460;   /* warm taupe */
  --gold: #b8956a;        /* antique champagne gold — matches the script wordmark */
  --gold-deep: #8a6f44;   /* deeper bronze */
  --gold-light: #d4c0a0;  /* light champagne */
  --line: #ebe0c9;        /* warm cream divider */
  --surface: #efe6d4;     /* warm beige surface */
  --choco: #3d2817;       /* mid chocolate (logo bg) */
  --choco-deep: #2a1c0f;  /* deepest chocolate */
  --shadow: 0 1px 2px rgba(42,28,15,0.05), 0 8px 24px rgba(42,28,15,0.09);
  --shadow-lg: 0 20px 60px rgba(42,28,15,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0;
  background: rgba(42,28,15,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,149,106,0.22);
  z-index: 200;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1200px, 92%); margin: 0 auto; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-logo { height: 56px; width: auto; max-width: 320px; display: block; object-fit: contain; }
.footer-brand .brand-logo { height: 80px; max-width: 380px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: #f0e9d8; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--choco-deep) !important; padding: 10px 18px; border-radius: 999px; font-weight: 600; }
.nav-cta:hover { background: var(--gold-light); color: var(--choco-deep) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 5px; z-index: 220; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--gold-light); transition: 0.3s; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--choco-deep); flex-direction: column; justify-content: center; align-items: center; gap: 32px;
    transform: translateY(-100vh); transition: transform 0.32s ease; z-index: 210; visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { font-size: 22px; font-weight: 500; }
  /* Hamburger → X transform when menu open */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #2a1c0f 0%, #3d2817 50%, #2a1c0f 100%);
  color: #fff; text-align: center; padding: 100px 20px 110px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(184,149,106,0.18), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(184,149,106,0.10), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.hero-title { font-family: var(--serif); font-size: clamp(52px, 9vw, 96px); font-weight: 500; line-height: 1; letter-spacing: -0.01em; margin-bottom: 24px; }
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 18px; color: #e0d3bb; max-width: 560px; margin: 0 auto 38px; }
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--choco-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--gold-light); border: 1px solid rgba(184,149,106,0.5); }
.btn-ghost:hover { background: rgba(184,149,106,0.12); border-color: var(--gold); }

/* ===== FILTERS ===== */
.filters { background: var(--bg); padding: 60px 0 24px; }
.filters-bar { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { background: transparent; border: 1px solid var(--line); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer; transition: 0.2s; color: var(--ink-soft); font-family: inherit; }
.pill:hover { border-color: var(--gold); color: var(--ink); }
.pill.active { background: var(--ink); border-color: var(--ink); color: var(--gold-light); }
.filter-pills--cats { flex-wrap: wrap; }
.filter-pills--sizes { flex-wrap: wrap; }
.pill--size { padding: 5px 12px !important; font-size: 13px !important; }
.filter-meta { color: var(--ink-faint); font-size: 14px; margin-top: 8px; }

/* ===== GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; padding: 16px 0 80px; }
.card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; cursor: zoom-in; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img { transform: scale(1.04); }
.card.sold .card-img { filter: grayscale(0.3) brightness(0.9); }

.badge-sold { position: absolute; top: 14px; left: 14px; background: var(--choco-deep); color: var(--gold); font-size: 11px; letter-spacing: 0.2em; padding: 6px 12px; border-radius: 4px; font-weight: 700; text-transform: uppercase; border: 1px solid var(--gold); }
.badge-cat { position: absolute; top: 14px; right: 14px; background: rgba(42,28,15,0.78); color: #fff; font-size: 10px; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 4px; font-weight: 600; text-transform: uppercase; }

.size-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.size-chip { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; font-size: 11px; font-weight: 600; padding: 3px 9px; color: var(--ink); letter-spacing: 0.04em; }
.size-chip.low { border-color: #e8a010; color: #a06000; background: #fff8e8; }

.card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.card-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.card-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.card-price { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.card-price small { font-size: 12px; color: var(--ink-faint); font-weight: 400; font-family: var(--sans); }
.card-actions { display: flex; gap: 8px; margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.btn-card { flex: 1; text-align: center; padding: 11px 12px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--line); background: transparent; color: var(--ink); font-family: inherit; transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-card:hover:not(:disabled) { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-card.primary { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-card.primary:hover:not(:disabled) { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-card.soldout { background: var(--surface); color: var(--ink-faint); border-color: var(--line); }
.btn-card.soldout:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-card .wa-icon, .btn-card .ig-icon { flex-shrink: 0; }
.btn-card.ig {
  flex: 0 0 auto;
  padding: 11px 14px;
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn-card.ig:hover { background: var(--gold); color: var(--choco-deep); border-color: var(--gold); }
.card-actions { gap: 6px; flex-wrap: wrap; }
.card-actions .btn-card.primary { flex: 1 1 auto; min-width: 110px; }
@media (max-width: 760px) {
  .card-actions .btn-card.primary { min-width: 0; }
  .card-actions .btn-card.ig { padding: 9px 8px; }
}

/* ===== PAGINATION ===== */
.pager-wrap { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 6px; padding: 36px 16px 20px; }
.pager-btn { min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.15s; display: inline-flex; align-items: center; justify-content: center; }
.pager-btn:hover:not(.disabled):not(.active):not(.ellipsis) { background: var(--gold-light); border-color: var(--gold); color: var(--ink); }
.pager-btn.active { background: var(--ink); color: var(--gold-light); border-color: var(--ink); cursor: default; }
.pager-btn.disabled { opacity: 0.4; cursor: not-allowed; }
.pager-btn.ellipsis { border: none; background: transparent; cursor: default; }

/* ===== INFO ===== */
.info { background: #ffffff; padding: 80px 0; border-top: 1px solid var(--line); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info h2 { font-family: var(--serif); font-size: 36px; font-weight: 500; margin-bottom: 18px; }
.info p { color: var(--ink-soft); margin-bottom: 14px; }
.shop-card { margin-top: 16px; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(201,169,97,0.06); border-radius: 6px; line-height: 1.6; font-size: 15px; }
.shop-card a { color: var(--gold-deep); font-weight: 600; }
.shop-map { margin-top: 18px; box-shadow: var(--shadow); border-radius: 10px; overflow: hidden; }
.shop-map iframe { display: block; }
.footer-shop { font-size: 13px; color: #d4c0a0; }
.steps { list-style: none; counter-reset: step; }
.steps li { counter-increment: step; padding: 14px 0 14px 50px; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; }
.steps li:last-child { border-bottom: none; }
.steps strong { color: var(--ink); }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FOOTER ===== */
.footer { background: var(--choco-deep); color: #e0d3bb; padding: 60px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand p { color: var(--gold-light); font-family: var(--serif); font-size: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: end; }
.footer-links a, .footer-links span { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-fine { grid-column: 1 / -1; padding-top: 40px; margin-top: 20px; border-top: 1px solid rgba(184,149,106,0.18); font-size: 12px; color: #c9b794; text-align: center; }
.footer-credit { color: var(--gold); transition: color 0.2s; }
.footer-credit:hover { color: var(--gold-light); }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; } .footer-links { align-items: start; } }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(42,28,15,0.97); display: none; align-items: center; justify-content: center; z-index: 500; padding: 24px; flex-direction: column; gap: 16px; }
.lightbox.open { display: flex; animation: fadeIn 0.2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: min(900px, 100%); max-height: 78vh; border-radius: 12px; box-shadow: 0 20px 80px rgba(0,0,0,0.6); }
.lightbox-caption { color: var(--gold-light); font-family: var(--serif); font-size: 18px; text-align: center; max-width: 600px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(184,149,106,0.45); color: var(--gold-light); width: 44px; height: 44px; border-radius: 50%; font-size: 24px; cursor: pointer; transition: 0.2s; line-height: 1; }
.lightbox-close:hover { background: var(--gold); color: var(--ink); }

/* ===== ADMIN ===== */
.admin-wrap { max-width: 1140px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 { font-family: var(--serif); font-size: 36px; font-weight: 500; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-admin { padding: 10px 18px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; font-weight: 500; font-size: 14px; transition: 0.2s; }
.btn-admin:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-admin.primary { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-admin.primary:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-admin.danger { color: #b00020; border-color: #f3c5cc; }
.btn-admin.danger:hover { background: #b00020; color: #fff; border-color: #b00020; }
.btn-admin.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 700; }
.btn-admin.gold:hover { background: var(--gold-deep); color: #fff; border-color: var(--gold-deep); }

/* Sales dashboard */
.dash { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
.dash-title { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 18px; color: var(--ink); }
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.kpi-card { background: linear-gradient(135deg, var(--choco-deep), var(--choco)); color: var(--gold-light); border-radius: 12px; padding: 18px 20px; }
.kpi-card:nth-child(2) { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--choco-deep); }
.kpi-card:nth-child(3) { background: linear-gradient(135deg, var(--choco), var(--choco-deep)); }
.kpi-card:nth-child(4) { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.kpi-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; margin-bottom: 8px; }
.kpi-count { font-family: var(--serif); font-size: 36px; font-weight: 600; line-height: 1.1; }
.kpi-unit { font-size: 14px; opacity: 0.7; font-family: inherit; font-weight: 400; }
.kpi-revenue { font-size: 13px; margin-top: 6px; opacity: 0.85; font-weight: 500; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dash-card { border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
.dash-card h3 { font-family: var(--serif); font-size: 18px; margin: 0 0 14px; color: var(--ink); font-weight: 600; }
.cat-bars { display: flex; flex-direction: column; gap: 10px; }
.cat-bar-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.cat-bar-name { font-weight: 600; color: var(--ink); }
.cat-bar-meta { color: var(--ink-soft); font-size: 12px; }
.cat-bar-track { background: var(--line); border-radius: 99px; height: 6px; overflow: hidden; }
.cat-bar-fill { background: var(--gold); height: 100%; transition: width 0.4s; }
.recent-list { display: flex; flex-direction: column; gap: 10px; }
.recent-row { display: flex; gap: 10px; align-items: center; }
.recent-row img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.recent-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.recent-meta { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 700px) { .dash-grid { grid-template-columns: 1fr; } }

/* Inventory dashboard */
.inv-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 20px; }
.inv-kpi { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: #fff; }
.inv-kpi.warn { border-color: #f0a030; background: #fffbf0; }
.inv-kpi.danger { border-color: #e05050; background: #fff5f5; }
.inv-kpi.success { border-color: #50a070; background: #f0fff6; }
.inv-kpi-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.inv-kpi-val { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1; }
.inv-kpi-sub { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }

.inv-table-wrap { overflow-x: auto; }
.inv-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.inv-table th { text-align: left; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); padding: 8px 12px; border-bottom: 2px solid var(--line); background: var(--surface); }
.inv-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.inv-table tr:last-child td { border-bottom: none; }
.inv-table tr:hover td { background: var(--surface); }
.inv-table .item-img { width: 38px; height: 38px; border-radius: 6px; object-fit: cover; }
.inv-table .stock-pill { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 99px; font-size: 11px; font-weight: 700; }
.stock-pill.ok { background: #e8f8ef; color: #1a7a40; }
.stock-pill.low { background: #fff4e0; color: #a06000; }
.stock-pill.zero { background: #ffeaea; color: #b00020; }
.stock-cells { display: flex; flex-wrap: wrap; gap: 4px; }
.stock-cell { padding: 2px 7px; border-radius: 4px; font-size: 11px; font-weight: 600; border: 1px solid var(--line); }
.stock-cell.ok { border-color: #b0d8c0; color: #1a7a40; background: #f0faf4; }
.stock-cell.low { border-color: #f0c060; color: #a06000; background: #fffbf0; }
.stock-cell.zero { border-color: #f0b0b0; color: #b00020; background: #fff5f5; }
.restock-btn { padding: 4px 10px; font-size: 11px; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; background: #fff; font-family: inherit; transition: 0.15s; }
.restock-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Admin item form */
.admin-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
.admin-form h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input[type="text"], .field input[type="number"], .field input[type="url"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field-checkbox { display: flex; align-items: center; gap: 10px; }
.field-checkbox input { width: auto; }

/* Stock entry grid */
.stock-entry-group { margin-bottom: 10px; }
.stock-entry-group label.group-label { font-size: 11px; color: #999; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.stock-entry-row { display: flex; flex-wrap: wrap; gap: 8px; }
.stock-entry-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stock-entry-item .size-lbl { font-size: 11px; font-weight: 700; color: var(--ink-soft); }
.stock-entry-item input[type="number"] { width: 56px; text-align: center; padding: 7px 6px; font-size: 13px; }

/* Admin list */
.admin-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.admin-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.admin-card-body { padding: 12px 14px; }
.admin-card-name { font-family: var(--serif); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.admin-card-price { color: var(--gold-deep); font-weight: 600; font-size: 14px; }
.admin-card-stock { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.admin-card-actions { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.admin-card-actions button { flex: 1; padding: 7px 8px; font-size: 12px; border-radius: 6px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; transition: 0.15s; }
.admin-card-actions button:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.admin-card-actions .danger:hover { background: #b00020; color: #fff; border-color: #b00020; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-card { background: #fff; border-radius: 14px; padding: 28px; max-width: 500px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); max-height: 90vh; overflow-y: auto; }
.modal-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 0 0 4px; }
.modal-card p.sub { color: #666; font-size: 14px; margin-bottom: 18px; }

/* Login */
.login-wrap { max-width: 400px; margin: 100px auto; padding: 40px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.login-wrap h1 { font-family: var(--serif); font-size: 32px; margin-bottom: 8px; text-align: center; }
.login-wrap p { color: var(--ink-faint); font-size: 14px; text-align: center; margin-bottom: 24px; }

/* Toast */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: var(--gold-light); padding: 12px 20px; border-radius: 8px; box-shadow: var(--shadow-lg); transform: translateY(120%); transition: 0.3s; z-index: 2000; font-size: 14px; }
.toast.show { transform: translateY(0); }

/* Section divider */
.section-divider { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.section-divider span { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); font-weight: 400; }

/* ===== MOBILE ===== */
@media (max-width: 760px) {
  .nav-inner { padding: 8px 0; }
  .brand-logo { height: 50px; max-width: 260px; }
  .footer-brand .brand-logo { height: 70px; max-width: 300px; }
  .hero { padding: 48px 16px 56px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 16px; }
  .hero-title { font-size: clamp(42px, 11vw, 60px); margin-bottom: 16px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 26px; line-height: 1.5; }
  .hero-cta { gap: 10px; }
  .btn { padding: 13px 22px; font-size: 13px; }
  .filters { padding: 40px 0 16px; }
  .section-title { font-size: clamp(32px, 9vw, 44px); }
  /* Single-row horizontal scroll for filter pills on mobile (cleaner than wrap) */
  .filter-pills--cats, .filter-pills--sizes {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    /* Bleed to edges so the row indicates scrollability */
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: thin;
  }
  .filters-bar { width: 100%; }
  .filters-bar .filter-pills { width: auto; }
  .filter-pills--cats::-webkit-scrollbar, .filter-pills--sizes::-webkit-scrollbar { height: 3px; }
  .filter-pills--cats::-webkit-scrollbar-thumb, .filter-pills--sizes::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
  .filter-pills--cats .pill, .filter-pills--sizes .pill { flex-shrink: 0; scroll-snap-align: start; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 14px; padding: 12px 0 50px; }
  .card-body { padding: 11px 12px 12px; gap: 6px; }
  .card-title { font-size: 16px; line-height: 1.2; }
  .card-desc { font-size: 12px; line-height: 1.45; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .card-price { font-size: 17px; }
  .card-price small { font-size: 11px; }
  .card-actions { gap: 5px; padding-top: 8px; margin-top: 8px; }
  .btn-card { padding: 9px 6px; font-size: 11.5px; gap: 4px; }
  .btn-card .wa-icon, .btn-card .ig-icon { width: 13px; height: 13px; }
  .size-chip { font-size: 10.5px; padding: 2px 7px; }
  .badge-cat { font-size: 9px; padding: 3px 8px; }
  .badge-sold { font-size: 10px; padding: 5px 10px; }
  .info { padding: 56px 0; }
  .info h2 { font-size: 28px; margin-bottom: 14px; }
  .steps li { padding: 12px 0 12px 46px; font-size: 14px; }
  .footer { padding: 40px 0 24px; }
  .footer-inner { gap: 26px; }
  .footer-fine { padding-top: 24px; margin-top: 12px; }
  .lightbox { padding: 16px; }
  .lightbox-img { max-height: 70vh; border-radius: 8px; }
  .lightbox-caption { font-size: 15px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
  .admin-wrap { padding: 24px 16px 60px; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .brand-text { font-size: 17px; }
}
