/* ═══════════════════════════════════════════════
   Two Girls Wine & Garden — Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --cream: #FAF6EF;
  --cream-deep: #F0E8D8;
  --black: #1A1309;
  --gold: #9A7B3E;
  --gold-light: #E8D5A8;
  --charcoal: #2E2418;
  --gray: #524636;
  --gray-light: #D4CABC;
  --white: #FFFFFF;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--black);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── SKIP LINK (Accessibility) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--black);
  color: var(--gold-light);
  padding: 12px 24px;
  z-index: 1000;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce {
  background: var(--black);
  color: var(--gold-light);
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 400;
}

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

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-img {
  height: 58px;
  width: auto;
  filter: contrast(1.1);
}

/* ─── NAVIGATION ─── */
nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }
nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ─── HEADER ACTIONS ─── */
.header-actions { display: flex; gap: 20px; align-items: center; }

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}
.icon-btn:hover { color: var(--gold); }
.icon-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cart-btn {
  background: var(--black);
  color: var(--gold-light);
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  transition: background var(--transition);
}
.cart-btn:hover { background: var(--gold); color: var(--black); }
.cart-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── MOBILE MENU TOGGLE ─── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 19, 9, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ─── HERO ─── */
.hero {
  background: var(--cream-deep);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  opacity: 0.4;
  pointer-events: none;
}
.hero-ornament-2 {
  width: 400px; height: 400px;
  border: 1px solid var(--gold-light);
  opacity: 0.3;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-logo {
  width: 320px;
  height: auto;
  margin-bottom: 40px;
  filter: contrast(1.15);
  animation: fadeInDown 0.9s ease both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
  animation: fadeIn 1.1s ease 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.9s ease 0.5s both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--black);
  color: var(--gold-light);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); color: var(--black); }
.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── SECTION HEADERS ─── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* ─── CATEGORY TABS ─── */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--cream-deep);
}

.tab-btn {
  background: none;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 16px 32px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  font-weight: 400;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.tab-btn[aria-selected="true"] { color: var(--black); font-weight: 700; }
.tab-btn[aria-selected="true"]::after { width: 100%; }
.tab-btn:hover { color: var(--charcoal); }
.tab-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* ─── PRODUCT PANELS ─── */
.panel { display: none; }
.panel.active { display: block; }

/* ─── SUBCATEGORY GRID ─── */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.sub-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  padding: 48px 36px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 0;
}

.sub-card:hover::before { transform: scaleY(1); }

.sub-card:hover .sub-icon,
.sub-card:hover .sub-name,
.sub-card:hover .sub-desc { color: var(--gold-light); }
.sub-card:hover .sub-arrow { opacity: 1; transform: translateX(0); }
.sub-card:focus-within::before { transform: scaleY(1); }
.sub-card:focus-within .sub-icon,
.sub-card:focus-within .sub-name,
.sub-card:focus-within .sub-desc { color: var(--gold-light); }
.sub-card:focus-within .sub-arrow { opacity: 1; transform: translateX(0); }

.sub-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.sub-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  color: var(--black);
}

.sub-desc {
  font-size: 14px;
  color: var(--gray);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  font-weight: 400;
}

.sub-arrow {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

/* ─── FEATURED STRIP ─── */
.strip {
  background: var(--black);
  padding: 48px 40px;
  text-align: center;
}

.strip-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 12px;
}

.strip-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.strip-btn {
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.strip-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.strip-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 400;
}
.about-text p:last-child { margin-bottom: 0; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

/* ─── VALUES SECTION ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.value-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  transition: all 0.3s;
}
.value-item:hover .value-icon-wrap {
  background: var(--gold);
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--black);
}

.value-desc {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

/* ─── FAQ SECTION ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cream-deep);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  padding: 0 0 24px;
  font-weight: 400;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--cream-deep);
  padding: 80px 40px;
  text-align: center;
}

.newsletter-inner { max-width: 520px; margin: 0 auto; }

.nl-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--black);
}

.nl-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  font-weight: 400;
}

.nl-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.nl-input {
  flex: 1;
  border: 1px solid var(--charcoal);
  border-right: none;
  padding: 14px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  background: var(--white);
  outline: none;
  color: var(--black);
  font-weight: 400;
}
.nl-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-light);
}
.nl-input::placeholder {
  color: var(--gray);
}

.nl-submit {
  background: var(--black);
  color: var(--gold-light);
  border: 1px solid var(--black);
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-submit:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.nl-submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nl-message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  min-height: 22px;
}
.nl-message.success { color: #3a6b47; }
.nl-message.error { color: #913130; }

/* ─── PRODUCT MODAL ─── */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 19, 9, 0.6);
  overflow-y: auto;
  padding: 40px 20px;
}
.product-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-modal-inner {
  background: var(--cream);
  max-width: 960px;
  width: 100%;
  padding: 48px;
  margin-top: 40px;
  position: relative;
}

.product-modal-header {
  margin-bottom: 40px;
}

.product-modal-back {
  background: none;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  display: inline-block;
  transition: color 0.2s;
}
.product-modal-back:hover { color: var(--black); }
.product-modal-back:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.product-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--gold);
}

/* Product image with hover overlay */
.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-deep);
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 19, 9, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-overlay-desc {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  font-weight: 400;
}

.product-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.product-card-btn {
  background: var(--black);
  color: var(--gold-light);
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.product-card-btn:hover { background: var(--gold); color: var(--black); }
.product-card-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--cream-deep);
  padding: 64px 40px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .f-logo {
  height: 56px;
  width: auto;
  filter: invert(1) contrast(0.85);
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 400;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: #C4BAA8;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #2A261E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 12px; color: #A89E8E; font-weight: 400; }

.social-links { display: flex; gap: 16px; }
.social-links a {
  font-size: 12px;
  color: #A89E8E;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 1px;
  font-weight: 400;
}
.social-links a:hover { color: var(--white); }
.social-links a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 19, 9, 0.5);
  z-index: 199;
}
.cart-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
}
.cart-drawer.open { right: 0; }

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

.cart-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.cart-drawer-close:hover { color: var(--gold); }

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

.cart-empty {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  padding: 40px 0;
  font-weight: 400;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-deep);
}

.cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid var(--cream-deep);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cart-qty-btn {
  background: none;
  border: 1px solid var(--cream-deep);
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.2s;
  line-height: 1;
  padding: 0;
}
.cart-qty-btn:hover { border-color: var(--gold); }

.cart-qty {
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--black);
}

.cart-remove-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--gray);
  padding: 0 4px;
  margin-left: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: #913130; }

.cart-drawer-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--cream-deep);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.cart-checkout-btn {
  width: 100%;
  background: var(--black);
  color: var(--gold-light);
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-checkout-btn:hover { background: var(--gold); color: var(--black); }
.cart-checkout-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── ADDED-TO-CART TOAST ─── */
.added-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  width: min(360px, calc(100vw - 32px));
  background: var(--cream, #fff);
  color: var(--black, #1a1309);
  border: 1px solid var(--cream-deep, #e8dfd0);
  border-top: 3px solid var(--gold, #c9a961);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 18px 20px 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.added-toast.show { opacity: 1; transform: translateY(0); }
.added-toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--black, #1a1309);
  opacity: 0.6;
  padding: 4px 8px;
}
.added-toast-close:hover { opacity: 1; }
.added-toast-msg {
  margin: 0 0 12px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
}
.added-toast-actions {
  display: flex;
  gap: 8px;
}
.added-toast-btn {
  flex: 1;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 10px;
  border: 1px solid var(--black, #1a1309);
  background: transparent;
  color: var(--black, #1a1309);
  cursor: pointer;
  transition: all var(--transition, 0.2s ease);
}
.added-toast-btn.primary {
  background: var(--black, #1a1309);
  color: var(--gold-light, #f0d9a8);
}
.added-toast-btn.secondary:hover { background: var(--cream-deep, #e8dfd0); }
.added-toast-btn.primary:hover { background: var(--gold, #c9a961); color: var(--black, #1a1309); }
@media (max-width: 480px) {
  .added-toast { right: 12px; left: 12px; bottom: 12px; width: auto; }
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-info-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 400;
}
.contact-detail-value a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-value a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--cream-deep);
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  background: var(--white);
  color: var(--black);
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-light);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23524636' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea { resize: none; height: 120px; overflow-y: auto; }

.contact-submit { align-self: flex-start; }

.contact-message {
  font-size: 14px;
  font-weight: 400;
  min-height: 22px;
}
.contact-message.success { color: #3a6b47; }
.contact-message.error { color: #913130; }

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(26, 19, 9, 0.92);
  overflow-y: auto;
  padding: 0;
}
.search-overlay.active { display: flex; flex-direction: column; }

.search-overlay-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.search-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-shrink: 0;
}

.search-input-wrap { flex: 1; }

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gold);
  padding: 16px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  color: var(--cream);
  outline: none;
  caret-color: var(--gold);
}
.search-input::placeholder { color: rgba(232, 213, 168, 0.4); }

.search-close {
  background: none;
  border: none;
  font-size: 36px;
  color: var(--gray-light);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.search-close:hover { color: var(--white); }

.search-results {
  flex: 1;
}

.search-hint {
  color: rgba(232, 213, 168, 0.5);
  font-size: 15px;
  font-weight: 400;
  padding: 20px 0;
}

.search-no-results {
  color: var(--gray-light);
  font-size: 16px;
  padding: 20px 0;
  font-weight: 400;
}

.search-category-group {
  margin-bottom: 28px;
}

.search-category-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(154, 123, 62, 0.3);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  cursor: pointer;
  transition: opacity 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.search-result-item:hover { opacity: 0.8; }

.search-result-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-info { flex: 1; min-width: 0; }

.search-result-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2px;
}
.search-result-name mark {
  background: none;
  color: var(--gold-light);
  font-weight: 700;
}

.search-result-desc {
  font-size: 13px;
  color: rgba(196, 186, 168, 0.7);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-desc mark {
  background: none;
  color: var(--gold-light);
  font-weight: 700;
}

.search-result-price {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 100px 40px 40px;
    z-index: 99;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav a {
    font-size: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-deep);
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .section-wrap { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 70vh; padding: 60px 20px; }
  .tab-btn { padding: 14px 18px; font-size: 11px; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--charcoal); border-bottom: none; }
  .strip { padding: 40px 20px; }
  .newsletter { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-highlights { border-left: none; border-top: 3px solid var(--gold); }
  .product-modal-inner { padding: 32px 24px; }
  .product-modal-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 480px) {
  .header-inner { height: 64px; }
  .logo-img { height: 44px; }
  .hero { min-height: 60vh; padding: 40px 16px; }
  .hero-logo { width: 220px; margin-bottom: 24px; }
  .hero-title { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; }
  .section-wrap { padding: 48px 16px; }
  .sub-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .category-tabs { flex-wrap: wrap; }
  .tab-btn { padding: 12px 16px; font-size: 10px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cart-btn { padding: 8px 16px; font-size: 10px; }
  .product-modal { padding: 16px; }
  .product-modal-inner { padding: 24px 16px; margin-top: 16px; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-title { font-size: 26px; }
  .about-highlights { flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 28px 20px; }
  .about-stat { min-width: 120px; }
  .faq-question { font-size: 16px; }
  .contact-submit { width: 100%; text-align: center; }

  /* Touch: show overlay always on product cards */
  .product-card-overlay { opacity: 0; }
  .product-card:active .product-card-overlay { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   CHECKOUT RESULT MODAL (success after Stripe redirect)
   ═══════════════════════════════════════════════ */
.checkout-result-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 19, 9, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-result-modal {
  background: var(--cream);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  border-top: 4px solid var(--gold);
}

.checkout-result-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 20px;
}

.checkout-result-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.checkout-result-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 24px;
}

.checkout-result-text {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.checkout-result-text-muted {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 28px;
}

.checkout-result-text-muted a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.checkout-result-text-muted a:hover { border-bottom-color: var(--gold); }

.checkout-result-btn {
  background: var(--black);
  color: var(--cream);
  border: 0;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.checkout-result-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.checkout-result-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
