@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Jost:wght@400;500;600&display=swap');

:root {
  --bg: #1a1220;
  --bg-card: #241829;
  --bg-soft: #2f2035;
  --text: #f5eef8;
  --text-muted: #b8a4c0;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --blush: #d4a0b0;
  --border: #3d2d45;
  --radius: 4px;
  --arch: 999px 999px 12px 12px;
  --font: 'Jost', system-ui, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.65; background-image: radial-gradient(ellipse at 20% 0%, rgba(201,169,98,0.08), transparent 50%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(26, 18, 32, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { text-align: center; line-height: 1.1; }
.logo-main { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: 0.04em; display: block; }
.logo-sub { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.main-nav { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.main-nav a { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.header-actions { display: flex; gap: 10px; align-items: center; }
.cart-pill {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), #a88840); color: #1a1220;
  border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: transform 0.2s, box-shadow 0.2s;
}
.cart-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,98,0.3); }
.cart-badge {
  min-width: 20px; height: 20px; background: var(--bg); color: var(--gold);
  border-radius: 999px; font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.cart-badge.show { display: flex; }
.icon-btn { width: 40px; height: 40px; border: 1px solid var(--border); background: var(--bg-card); border-radius: 50%; cursor: pointer; color: var(--text); font-size: 15px; }

.btn {
  display: inline-block; padding: 13px 30px; font-family: var(--font);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-gold { background: var(--gold); color: #1a1220; }
.btn-gold:hover { background: var(--gold-light); }
.btn-line { background: transparent; border: 1px solid var(--gold); color: var(--gold); }

/* Hero split */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.hero-split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px 60px max(24px, calc((100vw - 1160px) / 2 + 24px));
}
.hero-split-text .eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); margin-bottom: 16px; }
.hero-split-text h1 { font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 500; margin: 0 0 20px; line-height: 1.08; }
.hero-split-text h1 em { font-style: italic; color: var(--gold); }
.hero-split-text p { color: var(--text-muted); font-size: 16px; max-width: 400px; margin: 0 0 32px; }
.hero-split-img { position: relative; overflow: hidden; }
.hero-split-img img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.hero-split-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg), transparent 30%);
}

.marquee {
  overflow: hidden; border-bottom: 1px solid var(--border); padding: 14px 0;
  background: var(--bg-soft);
}
.marquee-inner {
  display: flex; gap: 48px; animation: scroll 28s linear infinite;
  white-space: nowrap; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); margin-bottom: 8px; }
.section-title { font-family: var(--display); font-size: 2.2rem; font-weight: 500; margin: 0 0 32px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-bottom: 56px; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.product-card .img-wrap { overflow: hidden; border-radius: var(--arch); margin: 12px 12px 0; }
.product-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.product-card:hover img { transform: scale(1.04); }
.product-card-body { padding: 16px 18px 22px; }
.product-card .cat { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); margin-bottom: 6px; }
.product-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 600; margin: 0 0 4px; }
.product-card .price { font-size: 14px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.product-card .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.product-card .btn { padding: 9px 14px; font-size: 9px; flex: 1; text-align: center; min-width: 80px; }
.shop-grid .product-card.hidden { display: none; }

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 32px; }
.chip {
  padding: 8px 20px; border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-family: var(--font); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.chip.active, .chip:hover { background: var(--gold); border-color: var(--gold); color: #1a1220; }

.page-hero { padding: 48px 0 32px; text-align: center; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.page-hero .meta { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blush); margin-bottom: 10px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin: 0 0 10px; }
.page-hero .lead { color: var(--text-muted); font-size: 16px; margin: 0 auto; max-width: 520px; }

.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding-bottom: 72px; }
.article-content img.featured { width: 100%; height: 420px; object-fit: cover; border-radius: var(--arch); margin-bottom: 28px; border: 1px solid var(--border); }
.article-content p { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; }
.article-content h2 { font-family: var(--display); font-size: 1.45rem; font-weight: 600; margin: 32px 0 12px; color: var(--gold-light); }

.buy-box {
  background: var(--bg-soft); border: 1px solid var(--gold); padding: 24px;
  position: sticky; top: calc(var(--nav-h) + 20px); text-align: center;
}
.buy-box img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--arch); margin-bottom: 16px; }
.buy-box .pname { font-family: var(--display); font-size: 1.25rem; margin: 0 0 8px; }
.buy-box .pprice { font-size: 1.6rem; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.buy-box .pnote { font-size: 11px; color: var(--text-muted); margin-bottom: 18px; letter-spacing: 0.06em; }
.buy-box .btn { width: 100%; margin-bottom: 8px; }
.buy-box .added { font-size: 11px; color: var(--blush); display: none; margin-top: 8px; }
.buy-box .added.show { display: block; }

/* Cart */
.cart-layout { padding: 40px 0 72px; max-width: 900px; margin: 0 auto; }
.cart-empty { text-align: center; padding: 80px 24px; border: 1px dashed var(--border); border-radius: var(--arch); }
.cart-empty h2 { font-family: var(--display); font-size: 1.8rem; margin: 0 0 12px; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto; gap: 20px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }
.cart-item h4 { font-family: var(--display); font-size: 1.1rem; margin: 0 0 4px; }
.cart-item a { font-size: 11px; color: var(--gold); letter-spacing: 0.06em; }
.qty-box { display: flex; align-items: center; gap: 10px; }
.qty-box button { width: 30px; height: 30px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); cursor: pointer; border-radius: 6px; }
.qty-box span { min-width: 20px; text-align: center; font-weight: 600; }
.cart-line-price { font-size: 16px; color: var(--gold); font-weight: 600; min-width: 70px; text-align: right; }
.cart-remove { background: none; border: none; color: var(--blush); font-size: 11px; cursor: pointer; text-decoration: underline; margin-top: 6px; }
.cart-totals { margin-top: 32px; padding: 28px; border: 1px solid var(--gold); background: var(--bg-soft); }
.cart-totals .row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: var(--text-muted); }
.cart-totals .grand { font-family: var(--display); font-size: 1.5rem; color: var(--gold); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
.cart-totals .btn { width: 100%; margin-top: 20px; text-align: center; }
.clear-link { display: block; text-align: center; margin-top: 14px; font-size: 11px; color: var(--text-muted); }

.faq-item { border: 1px solid var(--border); margin-bottom: 8px; background: var(--bg-card); }
.faq-q { width: 100%; padding: 18px 22px; background: none; border: none; text-align: left; font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; }
.faq-q::after { content: '+'; color: var(--gold); }
.faq-item.open .faq-q::after { content: '-'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a-inner { padding: 0 22px 18px; color: var(--text-muted); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding: 36px 0 72px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px; border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text); font-family: var(--font); border-radius: 4px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }

.newsletter-block {
  text-align: center; padding: 56px 24px; margin: 48px 0;
  border: 1px solid var(--border); background: var(--bg-soft);
  border-radius: var(--arch);
}
.newsletter-block h2 { font-family: var(--display); font-size: 2rem; margin: 0 0 8px; }
.newsletter-block form { display: flex; gap: 10px; max-width: 400px; margin: 20px auto 0; flex-wrap: wrap; justify-content: center; }
.newsletter-block input { flex: 1; min-width: 200px; padding: 14px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: var(--font); }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 2000; display: none; align-items: flex-start; justify-content: center; padding: 80px 20px; overflow-y: auto; }
.modal-overlay.show { display: flex; }
.modal-box { background: var(--bg-card); border: 1px solid var(--gold); padding: 32px; width: min(460px, 100%); position: relative; }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 22px; color: var(--text-muted); cursor: pointer; }
.search-input { width: 100%; padding: 12px; border: 1px solid var(--border); background: var(--bg); color: var(--text); margin-bottom: 14px; font-family: var(--font); }
.search-results a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.search-results a:hover { color: var(--gold); }

#cookieBar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 3000; background: var(--bg-soft); border-top: 1px solid var(--gold); padding: 16px 24px; transform: translateY(100%); transition: transform 0.35s; }
#cookieBar.show { transform: translateY(0); }
.cookie-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 13px; color: var(--text-muted); flex: 1; }
.cookie-inner a { color: var(--gold); }
.cookie-btns button { padding: 8px 18px; font-family: var(--font); font-size: 11px; font-weight: 600; cursor: pointer; border: none; margin-left: 8px; }
#cookieAccept { background: var(--gold); color: #1a1220; }
#cookieDecline { background: transparent; border: 1px solid var(--border); color: var(--text); }

#toastContainer { position: fixed; bottom: 24px; right: 24px; z-index: 2500; }
.toast { background: var(--bg-soft); border: 1px solid var(--gold); color: var(--text); padding: 14px 22px; margin-top: 8px; font-size: 13px; }

.site-footer { border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a { font-size: 13px; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--text-muted); }

@media (max-width: 992px) {
  .hero-split, .article-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-split-text { padding: 48px 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
  .cart-line-price, .qty-box { grid-column: 2; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg-card); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
}
