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

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

:root {
  --black: #111;
  --white: #fff;
  --light: #f5f4f2;
  --accent: #b07d5b;
  --accent-light: #f0e8e0;
  --mid: #888;
  --border: #e0ddd8;
  --text-soft: #555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.6;
}



/* ── Header ── */
header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

nav.main-nav { display: flex; gap: 32px; }

nav.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a.active { color: var(--accent); }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-actions { display: flex; align-items: center; gap: 20px; }

.header-actions a {
  text-decoration: none;
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-actions a:hover { color: var(--accent); }

.cart-count {
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.btn:hover { background: transparent; color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── Email Signup ── */
.email-section {
  background: var(--light);
  padding: 72px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.email-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 10px;
}

.email-section p {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 28px;
}

.email-form {
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--black);
  border-right: none;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  outline: none;
  background: var(--white);
}

.email-form input::placeholder { color: #bbb; }

.email-form button {
  padding: 13px 24px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-form button:hover { background: #333; }

/* ── Footer ── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 24px;
  text-align: center;
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-badge {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #aaa;
}

.payment-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
}

.footer-copy { font-size: 12px; color: #555; letter-spacing: 0.04em; }
.footer-copy a { color: #777; text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ── Cart Drawer ── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 201;
  transition: right 0.32s ease;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-left: 1px solid var(--border);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}

.cart-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
  line-height: 1;
  padding: 4px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  gap: 14px;
  text-align: center;
}

.cart-empty p { font-size: 14px; font-weight: 300; }
.cart-empty a { color: var(--black); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; text-decoration: underline; }

/* ── Stars ── */
.stars { color: #e8a020; font-size: 15px; letter-spacing: 1px; }
.stars-sm { color: #e8a020; font-size: 13px; letter-spacing: 1px; }

/* ── Responsive ── */
@media (max-width: 680px) {
  nav.main-nav { display: none; }
  .logo { position: static; transform: none; }
  .header-inner { justify-content: space-between; }
}

/* ── Sliding Announcement Bar ── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding-right: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
