/* The Panache Store — purple & gold */
:root {
  --bg: #fdfcfb;
  --bg-card: #ffffff;
  --ink: #1a0a2e;
  --ink-soft: #4a3060;
  --ink-faint: #8a7a99;
  --purple: #52147a;
  --purple-deep: #3a0e58;
  --purple-light: #7b2fb5;
  --gold: #f5a820;
  --gold-deep: #d48c10;
  --gold-light: #ffedb0;
  --line: #ede8f0;
  --shadow: 0 1px 2px rgba(82,20,122,0.04), 0 8px 24px rgba(82,20,122,0.07);
  --shadow-lg: 0 20px 60px rgba(82,20,122,0.14);
  --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(58,14,88,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,168,32,0.2);
  z-index: 200;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1200px, 92%); margin: 0 auto; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(245,168,32,0.5); object-fit: cover; }
.footer-brand .brand-logo { width: 56px; height: 56px; }
.brand-text { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: 0.02em; color: var(--gold-light); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #f0e8ff; 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(--purple-deep) !important; padding: 9px 18px; border-radius: 999px; font-weight: 700; }
.nav-cta:hover { background: var(--gold-light) !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: rgba(58,14,88,0.98);
    flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    transform: translateY(-100vh); transition: transform 0.3s;
    z-index: 210; visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { font-size: 20px; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d0118 0%, #2e0a4a 55%, #52147a 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Radial glow */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(245,168,32,0.12), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(123,47,181,0.4), transparent 45%);
  pointer-events: none;
}

/* Decorative rings — right side */
.hero-deco { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.hero-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px solid rgba(245,168,32,0.18);
}
.hero-ring.r1 { width: 380px; height: 380px; }
.hero-ring.r2 { width: 520px; height: 520px; border-style: dashed; border-color: rgba(245,168,32,0.10); }
.hero-ring.r3 { width: 660px; height: 660px; border-color: rgba(245,168,32,0.06); }

/* Watermark */
.hero-watermark {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 700;
  color: rgba(245,168,32,0.04);
  letter-spacing: 0.12em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* Split layout */
.hero-inner {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left: text block */
.hero-text { text-align: left; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.hero-title { font-family: var(--serif); font-size: clamp(44px, 6vw, 80px); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 20px; }
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 17px; color: #ddd0f5; max-width: 440px; margin-bottom: 32px; line-height: 1.6; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust badges */
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold-light); opacity: 0.75;
}

/* Right: circular image frame */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame-outer {
  width: 360px; height: 360px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 0deg, var(--gold), var(--gold-deep), var(--gold), var(--gold-light), var(--gold));
  box-shadow: 0 0 60px rgba(245,168,32,0.25), 0 0 0 20px rgba(245,168,32,0.06);
  flex-shrink: 0;
}
.hero-frame-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--purple-deep);
}
.hero-feat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 8s ease;
}
.hero-feat-img:hover { transform: scale(1.05); }

/* Floating tags */
.hero-tag {
  position: absolute;
  background: rgba(245,168,32,0.95);
  color: var(--purple-deep);
  font-size: 12px; font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.hero-tag-top { top: 20px; right: -10px; }
.hero-tag-bot { bottom: 30px; left: -10px; }

/* Mobile: stack, centre text, hide visual */
@media (max-width: 820px) {
  .hero { padding: 64px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .hero-deco { display: none; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

.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(--purple-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--gold-light); border: 1px solid rgba(245,168,32,0.5); }
.btn-ghost:hover { background: rgba(245,168,32,0.1); border-color: var(--gold); }

/* ===== FILTERS ===== */
.filters { background: var(--bg); padding: 56px 0 24px; }
.filters-bar { margin-bottom: 20px; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }

.filter-group { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.filter-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); min-width: 80px; flex-shrink: 0; }
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  background: transparent; border: 1px solid var(--line);
  padding: 7px 16px; 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(--purple); color: var(--purple); }
.pill.active { background: var(--purple); border-color: var(--purple); color: #fff; }

.filter-meta { color: var(--ink-faint); font-size: 14px; margin-top: 12px; }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; padding: 16px 0 40px;
}
.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: 4/5; overflow: hidden; cursor: zoom-in; background: #f0eaf8; }
.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.92); }

.badge-sold {
  position: absolute; top: 12px; left: 12px;
  background: var(--purple-deep); color: var(--gold);
  font-size: 10px; letter-spacing: 0.2em; padding: 5px 10px;
  border-radius: 4px; font-weight: 700; text-transform: uppercase;
  border: 1px solid var(--gold);
}

.card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.card-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.card-sizes { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 2px; }
.size-chip {
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 4px; background: var(--line);
  color: var(--ink-soft); border: 1px solid transparent;
}

.card-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.card-price { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.card-category { font-size: 11px; color: var(--ink-faint); background: var(--line); padding: 3px 8px; border-radius: 4px; font-weight: 500; }

.card-actions { display: flex; gap: 8px; margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.btn-card {
  flex: 1; text-align: center; padding: 11px 10px;
  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 { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-card.primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-card.primary:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }
.btn-card.sold-out { background: var(--purple-deep); color: var(--gold-light); border-color: var(--purple-deep); }
.btn-card.sold-out:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }
.wa-icon { width: 15px; height: 15px; flex-shrink: 0; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex; gap: 6px; justify-content: center; align-items: center;
  padding: 8px 0 60px; flex-wrap: wrap;
}
.page-btn {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: 0.2s; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover:not(:disabled) { background: var(--purple); color: #fff; border-color: var(--purple); }
.page-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); font-weight: 700; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-btn.wide { width: auto; padding: 0 14px; }

/* ===== INFO ===== */
.info { background: #fff; padding: 80px 0 0; border-top: 1px solid var(--line); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.info h2 { font-family: var(--serif); font-size: 34px; font-weight: 500; margin-bottom: 16px; color: var(--ink); }
.info p { color: var(--ink-soft); margin-bottom: 14px; }

.address-block { display: flex; gap: 12px; margin-top: 20px; padding: 16px; background: var(--bg); border-radius: 10px; border: 1px solid var(--line); }
.address-icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.address-block strong { color: var(--ink); }
.directions-link { color: var(--purple); font-weight: 600; font-size: 13px; transition: color 0.2s; }
.directions-link:hover { color: var(--gold-deep); }

.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(--purple); 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); }

.map-wrap { padding-bottom: 80px; }

@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FOOTER ===== */
.footer { background: var(--purple-deep); color: #ddd0f5; position: relative; overflow: hidden; }
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 100%, rgba(245,168,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  padding: 64px 0 56px;
  position: relative;
}
/* Col 1 */
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-name { font-family: var(--serif); font-size: 20px; color: var(--gold-light); margin-bottom: 2px; }
.footer-tagline { font-size: 13px; color: var(--ink-faint); }
.footer-blurb { font-size: 13.5px; line-height: 1.7; color: rgba(221,208,245,0.65); margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 99px; font-size: 13px; font-weight: 500;
  border: 1px solid rgba(245,168,32,0.35); color: var(--gold-light);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social-pill:hover { background: rgba(245,168,32,0.12); border-color: var(--gold); color: var(--gold); }
/* Col 2 */
.footer-col-title {
  font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 14px; color: rgba(221,208,245,0.75); transition: color 0.2s, padding-left 0.2s; }
.footer-nav a:hover { color: var(--gold-light); padding-left: 4px; }
/* Col 3 */
.footer-address { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-address-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(221,208,245,0.75); line-height: 1.6; }
.footer-address-icon { flex-shrink: 0; margin-top: 1px; }
.footer-directions {
  display: inline-block; font-size: 13px; font-weight: 500;
  color: var(--gold); border-bottom: 1px solid rgba(245,168,32,0.35);
  padding-bottom: 2px; transition: border-color 0.2s, color 0.2s;
}
.footer-directions:hover { color: var(--gold-light); border-color: var(--gold-light); }
.footer-hours { font-size: 13px; color: rgba(221,208,245,0.55); line-height: 1.8; }
.footer-hours-title { font-weight: 600; color: rgba(221,208,245,0.75); margin-bottom: 2px; }
/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(245,168,32,0.12);
  padding: 20px 0;
  position: relative;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(221,208,245,0.4);
}
.footer-credit { color: var(--gold); opacity: 0.8; transition: opacity 0.2s; }
.footer-credit:hover { opacity: 1; color: var(--gold-light); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; padding: 48px 0 40px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(58,14,88,0.96); 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(245,168,32,0.4); 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(--purple-deep); }

/* ===== ADMIN ===== */
.admin-wrap { max-width: 1200px; 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(--purple); color: #fff; border-color: var(--purple); }
.btn-admin.primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-admin.primary:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }
.btn-admin.danger { color: #b00020; border-color: #f3c5cc; }
.btn-admin.danger:hover { background: #b00020; color: #fff; border-color: #b00020; }

/* ===== SALES DASHBOARD ===== */
.dashboard-section { margin-bottom: 32px; }
.dashboard-section h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 16px; color: var(--ink); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
@media (max-width: 800px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.kpi-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 8px; }
.kpi-value { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--purple); margin-bottom: 4px; }
.kpi-sub { font-size: 12px; color: var(--ink-faint); }

.dashboard-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .dashboard-cols { grid-template-columns: 1fr; } }
.dash-panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.dash-panel h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 14px; }
.cat-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cat-row-label { font-size: 13px; font-weight: 500; min-width: 100px; }
.cat-bar-wrap { flex: 1; background: var(--line); border-radius: 4px; height: 8px; }
.cat-bar { background: var(--purple); height: 8px; border-radius: 4px; transition: width 0.5s; }
.cat-count { font-size: 12px; color: var(--ink-faint); min-width: 30px; text-align: right; }

.sale-row { display: flex; justify-content: space-between; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.sale-row:last-child { border-bottom: none; }
.sale-item { font-weight: 500; color: var(--ink); }
.sale-buyer { color: var(--ink-soft); font-size: 12px; margin-top: 2px; }
.sale-price { color: var(--purple); font-weight: 600; font-family: var(--serif); font-size: 15px; }
.no-data { color: var(--ink-faint); font-size: 13px; font-style: italic; }

/* ===== ADMIN 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, .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(--purple); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-3col { grid-template-columns: 1fr; } }
.field-checkbox { display: flex; align-items: center; gap: 10px; }
.field-checkbox input { width: auto; }

.admin-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 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: 15px; font-weight: 600; margin-bottom: 2px; }
.admin-card-price { color: var(--purple); font-weight: 600; font-size: 14px; }
.admin-card-cat { font-size: 11px; color: var(--ink-faint); background: var(--line); padding: 2px 7px; border-radius: 4px; display: inline-block; margin-top: 4px; }
.admin-card-actions { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.admin-card-actions button { flex: 1; padding: 7px 6px; font-size: 11px; border-radius: 6px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; min-width: 55px; transition: 0.2s; }
.admin-card-actions button:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.admin-card-actions .danger:hover { background: #b00020; color: #fff; border-color: #b00020; }
.admin-card-actions .sold-toggle.on { background: var(--purple-deep); color: var(--gold); border-color: var(--purple-deep); }

.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 { position: fixed; bottom: 24px; right: 24px; background: var(--purple-deep); color: var(--gold-light); padding: 12px 20px; border-radius: 8px; box-shadow: var(--shadow-lg); transform: translateY(120%); transition: 0.3s; z-index: 1000; font-size: 14px; }
.toast.show { transform: translateY(0); }

/* ===== MOBILE ===== */
@media (max-width: 760px) {
  .nav-inner { padding: 9px 0; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text { font-size: 19px; }
  .hero { padding: 56px 16px 64px; }
  .hero-sub { font-size: 16px; }
  .filters { padding: 40px 0 16px; }
  .filter-group { gap: 8px; }
  .filter-label { min-width: 70px; font-size: 11px; }
  .gallery { grid-template-columns: 1fr; gap: 16px; padding: 12px 0 32px; }
  .pagination { padding: 4px 0 40px; }
  .info { padding: 50px 0 0; }
  .info h2 { font-size: 28px; }
  .footer-inner { padding: 40px 0 32px; gap: 32px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 38px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
