/* =========================================================
   OLEICO TAIWAN — Premium Spanish Olive Oil Boutique
   ========================================================= */

:root {
  --olive-deep: #2f3a22;
  --olive: #4a5a35;
  --olive-light: #7a8a5a;
  --gold: #b8924a;
  --gold-light: #d4b074;
  --cream: #f5efe2;
  --cream-soft: #fbf7ee;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --line: #e6dfd0;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --serif: 'Cormorant Garamond', 'Noto Serif TC', Georgia, serif;
  --sans: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Keep CJK phrases from breaking across lines in short labels.
   Headings, buttons, nav, badges, pills, trust strip, brand, tags — anywhere
   text is short enough that a mid-phrase break looks broken. Long-form
   paragraphs intentionally keep default behaviour. */
h1, h2, h3, h4, h5,
.brand, .brand-sub,
.btn, .pill, .add-btn, .cart-btn, .cart-checkout,
.product-badge, .product-tag, .product-variety,
.trust-item, .section-eyebrow, .hero-eyebrow,
.nav-links a,
.footer h5,
.option-label, .option-time,
.preorder-banner,
.hero-visual-inner .label, .hero-visual-inner .name {
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
}

/* Cart-icon pulse on add-to-cart */
@keyframes cartPulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 146, 74, 0.55); }
  60%  { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(184, 146, 74, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184, 146, 74, 0); }
}
.cart-pulse { animation: cartPulse 0.55s ease-out; }

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Pre-order banner ---------- */
.preorder-banner {
  background: var(--olive-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(212, 176, 116, 0.25);
}
.preorder-banner strong { color: var(--gold-light); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--olive-deep);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand .brand-a { color: var(--gold); }
.brand-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lang-switch button {
  background: transparent;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.lang-switch button.active { color: var(--olive-deep); border-bottom: 1.5px solid var(--gold); }
.lang-switch button:hover { color: var(--olive-deep); }

.cart-btn {
  position: relative;
  background: var(--olive-deep);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}
.cart-btn:hover { background: var(--olive); }

.cart-count {
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.7rem;
  padding: 2px 7px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--olive-deep);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--olive-deep);
  color: var(--cream);
}
.btn-primary:hover { background: var(--olive); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}
.btn-outline:hover { background: var(--olive-deep); color: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0807;
  box-shadow: var(--shadow-lg);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 176, 116, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero-visual-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
  color: var(--cream);
  padding: 0 28px;
  z-index: 2;
}

.hero-visual-inner .label {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.hero-visual-inner .name {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-style: italic;
  color: var(--cream);
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.trust-item .icon {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--gold-light);
}

/* ---------- Sections ---------- */
section { padding: 100px 0; }

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-head h2 {
  color: var(--olive-deep);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Featured products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
#featuredProducts.products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0807;
}

.product-visual.oleico-bg { background: #0a0807; }
.product-visual.remigio-bg { background: #0a0807; }
.product-visual.vizconde-bg { background: #0a0807; }

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-photo { transform: scale(1.04); }

.bottle {
  position: relative;
  width: 28%;
  height: 70%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.bottle::before {
  content: '';
  position: absolute;
  top: -14%;
  left: 38%;
  width: 24%;
  height: 14%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px 3px 0 0;
}

.product-visual.oleico-bg .bottle { background: rgba(74, 90, 53, 0.7); width: 24%; }
.product-visual.remigio-bg .bottle { background: rgba(58, 42, 30, 0.85); }
.product-visual.vizconde-bg .bottle { background: rgba(20, 25, 50, 0.9); border: 1px solid rgba(212, 176, 116, 0.5); }

.bottle-pack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: 60%;
  height: 60%;
  align-content: center;
}
.mini-bottle {
  background: rgba(74, 90, 53, 0.7);
  border-radius: 2px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.product-info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-info h3 {
  color: var(--olive-deep);
  margin-bottom: 8px;
}

.product-variety {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 14px;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  flex: 1;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--olive-deep);
}
.product-price .currency {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 4px;
}

.add-btn {
  background: var(--olive-deep);
  color: var(--cream);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--sans);
}
.add-btn:hover { background: var(--gold); }

/* ---------- Story / About ---------- */
.story {
  background: var(--olive-deep);
  color: var(--cream);
}

.story h2 { color: var(--cream); }
.story .section-eyebrow { color: var(--gold-light); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text p {
  margin-bottom: 18px;
  color: rgba(245, 239, 226, 0.85);
  font-size: 1.02rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 176, 116, 0.3);
}

.stat .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(245, 239, 226, 0.75);
  margin-top: 6px;
}

.story-visual {
  aspect-ratio: 4/5;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(135deg, #5a6a3d, #3a4a25);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-visual::after {
  content: 'JAÉN, ESPAÑA';
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.1em;
}

.story-visual::before {
  content: '🫒';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  opacity: 0.2;
}

/* ---------- Shipping ---------- */
.shipping-section {
  background: var(--cream);
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.ship-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s ease;
}

.ship-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.ship-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.ship-card h4 {
  color: var(--olive-deep);
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.ship-time {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.ship-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}

.ship-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.shipping-banner {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 30px 40px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
  font-size: 1.05rem;
}
.shipping-banner strong { color: var(--gold-light); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--olive-deep);
  text-align: center;
  padding: 80px 0;
  color: var(--cream);
}
.newsletter h2 { color: var(--cream); margin-bottom: 16px; }
.newsletter p { color: rgba(245, 239, 226, 0.8); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 226, 0.3);
  background: rgba(245, 239, 226, 0.1);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.newsletter input::placeholder { color: rgba(245, 239, 226, 0.5); }
.newsletter input:focus { outline: 2px solid var(--gold); }

/* ---------- Footer ---------- */
.footer {
  background: #1a1f15;
  color: rgba(245, 239, 226, 0.75);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer h5 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold-light); }

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}
.footer-brand .brand-a { color: var(--gold-light); }
.footer-brand .brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold-light);
  margin-top: 6px;
}

.footer-legal {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.6);
  line-height: 1.55;
}
.footer-legal-line { margin: 0 0 4px; }

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 226, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(245, 239, 226, 0.5);
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 460px;
  background: var(--cream-soft);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 { color: var(--olive-deep); font-family: var(--serif); }

.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink-soft);
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: #0a0807;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
}
.cart-item-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h5 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--olive-deep);
  margin-bottom: 4px;
}
.cart-item-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-control button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
}
.qty-control button:hover { border-color: var(--gold); }
.qty-control span { font-size: 0.9rem; min-width: 20px; text-align: center; }

.cart-item-price {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--olive-deep);
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.78rem;
  margin-top: 6px;
  text-decoration: underline;
}
.cart-item-remove:hover { color: #b54040; }

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.cart-row.total {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-checkout {
  width: 100%;
  background: var(--olive-deep);
  color: var(--cream);
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s ease;
  font-family: var(--sans);
}
.cart-checkout:hover { background: var(--gold); }

.cart-shipping-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
}

/* ---------- Pre-order note + success ---------- */
.preorder-note {
  background: rgba(184, 146, 74, 0.08);
  border: 1px solid rgba(184, 146, 74, 0.25);
  color: var(--ink-soft);
  font-size: 0.86rem;
  padding: 14px 16px;
  border-radius: 8px;
  margin-top: 18px;
  line-height: 1.55;
}

.reservation-success {
  text-align: center;
  max-width: 620px;
  margin: 60px auto 80px;
  padding: 60px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.reservation-success-icon { font-size: 3rem; margin-bottom: 18px; }
.reservation-success h2 { color: var(--olive-deep); margin-bottom: 14px; }
.reservation-success p { color: var(--ink-soft); margin-bottom: 28px; line-height: 1.7; }

/* ---------- Checkout / Inner pages ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--cream-soft) 0%, var(--cream) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--olive-deep); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.form-section {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-section h3 {
  color: var(--olive-deep);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream-soft);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.shipping-options,
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.option:hover { border-color: var(--gold-light); }
.option input[type="radio"] { accent-color: var(--olive-deep); }
.option.selected, .option input[type="radio"]:checked + .option-label-wrap { border-color: var(--gold); background: rgba(184, 146, 74, 0.06); }

.option-label-wrap { flex: 1; display: flex; justify-content: space-between; align-items: center; }
.option-label { font-weight: 500; color: var(--olive-deep); }
.option-time { font-size: 0.82rem; color: var(--ink-soft); display: block; margin-top: 2px; }
.option-price { font-family: var(--serif); font-weight: 600; color: var(--olive-deep); }

.summary-card {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.summary-card h3 { color: var(--olive-deep); margin-bottom: 20px; }

.summary-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.summary-item-img {
  width: 50px; height: 50px;
  border-radius: 6px;
  background: #0a0807;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}
.summary-item-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-item h6 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--olive-deep);
  margin-bottom: 2px;
}
.summary-item-meta { font-size: 0.78rem; color: var(--ink-soft); }

.summary-totals { padding-top: 20px; }
.summary-totals .cart-row.total { color: var(--olive-deep); }

/* ---------- Shop page ---------- */
.shop-section { padding: 70px 0 100px; }

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-header h2 { color: var(--olive-deep); }

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s ease;
}
.pill.active, .pill:hover {
  background: var(--olive-deep);
  color: var(--cream);
  border-color: var(--olive-deep);
}

/* ---------- About page ---------- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.about-content p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.85;
}
.about-content h3 {
  color: var(--olive-deep);
  margin-top: 40px;
  margin-bottom: 16px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--olive-deep);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .checkout-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shipping-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .summary-card { position: static; }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav { padding: 14px 16px; }
  .container { padding: 0 16px; }
  .cart-btn { padding: 8px 14px; font-size: 0.78rem; }
}
