/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --primary:   #111111;
  --accent:    #c9a84c;
  --err:       #d63031;
  --oos:       #d63031;
  --muted:     #6c757d;
  --light:     #f0f0f0;
  --border:    #e0e0e0;
  --card:      #ffffff;
  --radius:    10px;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Announcement Bar ─────────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.2px;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary);
  cursor: default;
  user-select: none;
}
.logo-tm { font-size: 12px; vertical-align: super; letter-spacing: 0; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 6px;
  display: flex;
  align-items: center;
}
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--err);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: #333; border-color: #333; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: #f5f0e8;
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
}
.hero-inner { max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }

.hero-footnote {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  font-size: 18px;
  color: var(--muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Trust Bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 18px 0 4px;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.trust-asterisk {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  padding-bottom: 10px;
  text-align: center;
}

/* ── Product Section ──────────────────────────────────────────────────────── */
.product-section { padding: 80px 0; background: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Image */
.product-image-wrap {}
.product-image {
  position: relative;
  background: #f5f0e8;
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-badge-oos {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--oos);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 1;
}

.product-visual { display: flex; align-items: center; justify-content: center; }

.product-box {
  width: 180px;
  height: 220px;
  perspective: 800px;
}
.product-box-face {
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  box-shadow: 4px 8px 32px rgba(0,0,0,0.35);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-box-face::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.box-label {
  font-family: 'Playfair Display', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}
.box-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}
.box-edition {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}
.thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: #f5f0e8;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
.thumb.active { border-color: var(--primary); }
.thumb:hover { border-color: var(--muted); }

.product-img-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Details */
.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.product-category {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.product-sku { font-size: 11px; color: var(--muted); }

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.stars { color: #f4b942; font-size: 15px; }
.rating-count { font-size: 13px; color: var(--primary); font-weight: 500; }
.rating-note { font-size: 12px; color: var(--muted); font-style: italic; }

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.product-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
.price-vat { font-size: 13px; color: var(--muted); }

.stock-status-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff5f5;
  border: 1px solid #ffd5d5;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 14px;
}
.stock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stock-dot.out { background: var(--oos); box-shadow: 0 0 0 3px rgba(214,48,49,0.2); }
.stock-text { display: flex; flex-direction: column; }
.stock-text strong { font-size: 14px; color: var(--oos); }
.stock-text span { font-size: 12px; color: var(--muted); }

.restock-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 20px;
  font-size: 13px;
}
.restock-icon { font-size: 18px; }
.restock-notice strong { display: block; font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.restock-notice span { color: var(--primary); font-weight: 600; }

.product-description {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-attributes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.attr { display: flex; justify-content: space-between; font-size: 13px; }
.attr-label { color: var(--muted); }
.attr-val { font-weight: 500; }

.btn-group {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 18px;
}
.btn-add { font-size: 15px; padding: 16px 28px; }
.btn-notify { font-size: 14px; }

.product-guarantees {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.guarantee-note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}

/* ── Features ─────────────────────────────────────────────────────────────── */
.features-section {
  padding: 80px 0;
  background: #f5f0e8;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.section-title.left { text-align: left; }
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 15px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 30px; margin-bottom: 14px; }
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.reviews-section { padding: 80px 0; background: #fff; }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}
.rating-number {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}
.stars-large { font-size: 24px; color: #f4b942; margin-bottom: 4px; }
.rating-total { font-size: 14px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-name span { font-weight: 400; color: var(--muted); }
.review-stars { font-size: 12px; color: #f4b942; margin-top: 2px; }
.verified-badge {
  margin-left: auto;
  font-size: 11px;
  color: #27ae60;
  font-weight: 600;
  flex-shrink: 0;
}
.review-text { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 12px; }
.review-date { font-size: 12px; color: var(--muted); }

/* ── About ────────────────────────────────────────────────────────────────── */
.about-section { padding: 80px 0; background: #f5f0e8; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about-visual { display: flex; align-items: center; justify-content: center; }
.about-graphic {
  width: 280px;
  height: 280px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.about-year {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.about-year-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  text-align: center;
  padding: 0 20px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.about-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-quote {
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  margin: 24px 0 0;
  background: rgba(201,168,76,0.06);
  border-radius: 0 8px 8px 0;
}
.about-quote cite { display: block; font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: #fff; }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 22px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-a p { color: var(--muted); }
.faq-a.open { display: block; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-section { padding: 80px 0; background: #f5f0e8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-list { margin: 24px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
}
.contact-item span:first-child { font-size: 20px; margin-top: 2px; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item span:last-child { color: var(--muted); font-size: 13px; }
.contact-note { font-size: 12px; color: var(--muted); font-style: italic; }

.contact-form-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
  color: var(--primary);
  transition: border-color 0.15s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-logo span { font-size: 11px; vertical-align: super; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Modal ────────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease-out;
}
@keyframes modalIn {
  from { transform: scale(0.9) translateY(12px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s;
}
.modal-close:hover { background: var(--light); }
.modal-emoji { font-size: 48px; text-align: center; margin-bottom: 16px; }
.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}
.modal p { font-size: 14px; color: var(--muted); text-align: center; line-height: 1.7; margin-bottom: 16px; }
.modal .modal-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ── Toast ────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s;
  z-index: 2000;
  pointer-events: none;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-graphic { width: 200px; height: 200px; }
  .about-year { font-size: 54px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .trust-bar-inner { justify-content: center; gap: 24px; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .product-name { font-size: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .modal { padding: 28px 20px; }
}
