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

:root {
  --wine: #6b1f2a;
  --wine-dark: #3d1015;
  --wine-deep: #1f0508;
  --gold: #c9a961;
  --gold-light: #e8c987;
  --cream: #faf6ee;
  --stone: #e8dfd0;
  --text: #2a1a15;
  --text-light: #6b5d50;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}

p { font-family: 'Lato', sans-serif; }

a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(31, 5, 8, 0.92);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  transition: padding 0.3s;
}

.navbar.scrolled { padding: 12px 0; }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

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

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

.nav-phone {
  display: none;
}

@media (min-width: 1025px) {
  .nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s;
  }
  .nav-phone:hover { color: var(--gold-light); }
  .nav-phone svg { stroke: var(--gold); }
}

.lang-toggle {
  color: #fff;
  border: 1px solid rgba(201, 169, 97, 0.5);
  padding: 6px 12px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.lang-toggle .lang-active { color: var(--gold); }

.cart-btn {
  color: #fff;
  position: relative;
  padding: 6px;
}

.cart-btn:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--wine-deep);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  color: #fff;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0508 0%, #3d1015 40%, #6b1f2a 100%);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  z-index: 2;
  background: transparent;
  pointer-events: all;
}

/* YouTube draws its own chrome (watermark, share/watch-later buttons, control
   bar) at the edges of the iframe, and nothing outside the frame can style it.
   Oversizing the iframe pushes those edges beyond the visible area instead. */
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.45);
  width: max(100vw, calc(100vh * 9 / 16));
  height: max(100vh, calc(100vw * 16 / 9));
  border: 0;
  pointer-events: none;
}

.hero-video-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Revealed only once the file has actually started playing. */
.hero-video-native.active { visibility: visible; }

/* The source is a 9:16 phone clip. On wide screens it must be scaled up and
   cropped hard, which reads as soft — a slight blur turns that into a
   deliberate depth-of-field instead. Phones show the frame untouched. */
@media (min-width: 900px) {
  .hero-video-native {
    filter: blur(4px) saturate(1.08);
    transform: scale(1.06);
  }
}

.hero-video-cover {
  position: absolute;
  inset: 0;
  background: #100205;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-video-cover.hidden {
  opacity: 0;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/texture-cellar.webp') center/cover no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 2.5s ease;
}

.hero-bg.visible {
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(31,5,8,0.65) 0%, rgba(107,31,42,0.2) 40%, rgba(31,5,8,0.75) 100%);
  z-index: 2;
}

.hero-particles { z-index: 3; }
.hero-content    { position: relative; z-index: 4; }
.hero-wave       { position: relative; z-index: 4; }

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(201, 169, 97, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(107, 31, 42, 0.4) 0%, transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 5, 8, 0.4) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  15% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 100px 24px 60px;
}

.hero-ornament,
.hero-kicker,
.hero-title span,
.hero-subtitle,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s ease forwards;
}

.hero-ornament { animation-delay: 0.2s; }
.hero-kicker { animation-delay: 0.5s; }
.hero-title span:first-child { animation-delay: 0.8s; }
.hero-title .hero-title-accent { animation-delay: 1.1s; }
.hero-subtitle { animation-delay: 1.4s; }
.hero-buttons { animation-delay: 1.7s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 7px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-title span { display: block; }

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #e8d5a3 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 8px;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  display: inline-block;
  margin-top: 40px;
  opacity: 0;
  animation: heroFadeIn 1s ease 2.2s forwards;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
  50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

/* ===== WAVE DIVIDERS ===== */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

.wave-top svg, .wave-bottom svg {
  width: 100%;
  height: 40px;
  display: block;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 40px;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid transparent;
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: #fff;
  color: var(--wine-deep);
  border-color: #fff;
}

.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--wine);
  font-style: italic;
  margin-bottom: 12px;
  display: block;
}

.section-kicker.light { color: var(--gold); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--wine-deep);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title.light { color: #fff; }

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  margin: 0 0 24px;
}

.section-header .divider { margin: 0 auto 20px; }

.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
}

/* ===== ABOUT ===== */
.section-about {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
}

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

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61, 16, 21, 0.25);
  aspect-ratio: 4/5;
}

.about-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,169,97,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(107,31,42,0.3) 0%, transparent 50%),
    linear-gradient(160deg, #1a0508 0%, #2a0e14 30%, #3d1015 60%, #1f0508 100%);
}

.wine-glass-art {
  position: relative;
  z-index: 1;
  width: 65%;
  max-width: 260px;
  filter: drop-shadow(0 10px 30px rgba(107,31,42,0.4));
}

.wine-fill {
  animation: wineFillSip 10s ease-in-out infinite;
}

.wine-surface {
  animation: wineSurfaceSip 10s ease-in-out infinite;
  transform-origin: center center;
}

.wine-shimmer {
  animation: wineFillSip 10s ease-in-out infinite;
}

@keyframes wineFillSip {
  0%, 5%   { transform: translateY(0); }
  26%      { transform: translateY(11px); }
  34%      { transform: translateY(11px); }
  57%      { transform: translateY(24px); }
  65%      { transform: translateY(24px); }
  100%     { transform: translateY(0); }
}

@keyframes wineSurfaceSip {
  0%, 5%   { transform: translateY(0) scaleX(1);        opacity: 0.8; }
  26%      { transform: translateY(11px) scaleX(0.93);   opacity: 0.9; }
  34%      { transform: translateY(11px) scaleX(1);      opacity: 0.82; }
  57%      { transform: translateY(24px) scaleX(0.91);   opacity: 0.9; }
  63%      { transform: translateY(24px) scaleX(1.02);   opacity: 0.82; }
  65%      { transform: translateY(24px) scaleX(0.97);   opacity: 0.82; }
  100%     { transform: translateY(0) scaleX(1);         opacity: 0.8; }
}

.about-visual-text {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.avt-big {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: 0.15;
}

.avt-small {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.2;
  margin-top: 4px;
}

.about-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 31, 42, 0.2);
}

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

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

/* ===== WINES ===== */
.section-wines {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(107, 31, 42, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #f0e6d2 100%);
  position: relative;
}

/* ===== WINE FILTERS ===== */
.wine-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.wf-btn {
  background: transparent;
  border: 1.5px solid rgba(139, 115, 85, 0.35);
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
}

/* Touch browsers leave :hover stuck on the last tapped element, so this is
   gated to devices that can genuinely hover. */
@media (hover: hover) {
  .wf-btn:hover {
    border-color: var(--gold);
    color: var(--wine-deep);
  }
}

/* :hover is one class more specific than the active class, so without the
   second selector it repaints the selected pill's label in that pill's own
   background colour and the text vanishes. */
.wf-btn--active,
.wf-btn--active:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  color: #fff;
}

.wine-card--hidden {
  display: none;
}

.wines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wine-card {
  position: relative;
  overflow: hidden;
  background: #080204;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 14px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.wine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  border-color: var(--gold);
}

.wine-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wine-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(8, 2, 4, 0.75) 45%,
    rgba(8, 2, 4, 0.97) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.wine-img-wrap img {
  height: 160%;
  width: auto;
  max-width: 160%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  position: relative;
  z-index: 0;
  opacity: 0.9;
}

.wine-card:hover .wine-img-wrap img {
  transform: scale(1.07) translateY(-18px);
  opacity: 1;
}

.wine-type-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8, 2, 4, 0.65);
  border: 1px solid rgba(201, 169, 97, 0.45);
  padding: 5px 14px;
  backdrop-filter: blur(8px);
}

.wine-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 0 22px 26px;
  text-align: left;
}

.wine-card h3 {
  font-size: 1.25rem;
  color: #f5ede0;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}

.wine-srb {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(201, 169, 97, 0.8);
  margin-bottom: 10px;
}

.wine-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(245, 237, 224, 0.72);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wine-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 169, 97, 0.22);
}

.wine-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.wine-price {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.wine-volume {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.5;
  border: 1px solid rgba(201, 169, 97, 0.25);
  padding: 3px 8px;
  border-radius: 20px;
}

.cart-volume {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--wine);
  opacity: 0.5;
  border: 1px solid rgba(107, 31, 42, 0.2);
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.wine-add {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.55);
  padding: 8px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.wine-add:hover {
  background: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}

/* ===== BUNDLES ===== */
.bundles-section {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.bundles-header {
  text-align: center;
  margin-bottom: 48px;
}

.bundles-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.bundles-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 10px;
}

.bundles-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-light);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.bundle-card {
  background: linear-gradient(160deg, #1a0508 0%, #2d1015 60%, #1a0508 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0 8px 32px rgba(61, 16, 21, 0.35);
}

.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(61, 16, 21, 0.55);
  border-color: var(--gold);
}

.bundle-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(61, 16, 21, 0.5), 0 0 0 1px rgba(201, 169, 97, 0.35);
  z-index: 1;
}

.bundle-card--featured:hover {
  transform: translateY(-8px);
}

.bundle-top-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: linear-gradient(90deg, #b8933a, #e8c96a, #b8933a);
  color: #1a0508;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 22px;
  white-space: nowrap;
}

.bundle-saving-tag {
  position: absolute;
  top: 58px;
  left: 20px;
  z-index: 4;
  display: inline-block;
  background: rgba(8, 2, 4, 0.65);
  border: 1px solid rgba(201, 169, 97, 0.45);
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  backdrop-filter: blur(8px);
}

.bundles-grid .wine-img-wrap::after {
  height: 58%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(8, 2, 4, 0.6) 42%,
    rgba(8, 2, 4, 0.96) 100%
  );
}

.bundles-grid .wine-img-wrap img {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  opacity: 1 !important;
  transform: none !important;
  transition: transform 0.45s ease !important;
}

.bundles-grid .wine-card:hover .wine-img-wrap img {
  transform: scale(1.07) !important;
}

/* Starter: landscape 2-bottle photo */
.bundle-starter .wine-img-wrap img {
  object-fit: cover !important;
}

/* Full Herceg: landscape 5-bottle photo — base zoom + hover zoom */
.bundle-full-herceg .wine-img-wrap img {
  transform: scale(1.3) !important;
}

.bundle-full-herceg.wine-card:hover .wine-img-wrap img {
  transform: scale(1.38) !important;
}

.bundle-bottles {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 20px;
  height: 100px;
}

.bundle-mini-bottle {
  width: 18px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 3px 3px 2px 2px;
  opacity: 0.88;
  transition: transform 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  position: relative;
}
.bundle-mini-bottle::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 10px;
  background: #c8a96a;
  border-radius: 2px 2px 0 0;
}

.bundle-card:hover .bundle-mini-bottle:nth-child(odd) { transform: translateY(-4px); }
.bundle-card:hover .bundle-mini-bottle:nth-child(even) { transform: translateY(4px); }

.bundle-count {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201, 169, 97, 0.6);
  margin-bottom: 8px;
}

.bundle-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5ede0;
  margin-bottom: 6px;
}

.bundle-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 14px;
}

.bundle-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.75);
  margin-bottom: 24px;
}

.bundle-pricing {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}

.bundle-original {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(245, 237, 224, 0.35);
  text-decoration: line-through;
}

.bundle-price {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
}

.bundle-add {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 13px 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.bundle-add:hover {
  background: var(--gold);
  color: #1a0508;
}

.bundle-card--featured .bundle-add {
  background: var(--gold);
  color: #1a0508;
  border-color: var(--gold);
}

.bundle-card--featured .bundle-add:hover {
  background: #e8c96a;
}

/* Cart bundle item */
.cart-item-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.cart-bundle-label {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.12);
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ===== VINEYARD ===== */
.section-vineyard {
  background: linear-gradient(135deg, #1a0508 0%, #3d1015 50%, #1f0508 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.vineyard-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/texture-vineyard.webp') center/cover no-repeat;
  opacity: 0.2;
}

.section-vineyard::before {
  content: '';
  position: absolute;
  top: -50%; left: 0; right: 0; bottom: -50%;
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(201, 169, 97, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(107, 31, 42, 0.3) 0%, transparent 60%),
    repeating-conic-gradient(rgba(201, 169, 97, 0.03) 0% 25%, transparent 0% 50%);
  background-size: 100% 100%, 100% 100%, 60px 60px;
  pointer-events: none;
  will-change: transform;
  transform: translateY(var(--parallax-y, 0));
  z-index: 1;
}

.section-vineyard .container {
  position: relative;
  z-index: 2;
}

.vineyard-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vineyard-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 50px;
}

.vineyard-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.vf-item { text-align: center; }

.vf-num {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.vf-lbl {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

/* ===== VISIT ===== */
.section-visit {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.visit-card {
  background: #fff;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(139, 115, 85, 0.22);
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(61, 16, 21, 0.06);
}

.visit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61, 16, 21, 0.15);
}

.visit-card.featured {
  background: var(--wine-deep);
  color: #fff;
  border-color: var(--gold);
}

.visit-card.featured h3 { color: var(--gold); }
.visit-card.featured p { color: rgba(255, 255, 255, 0.85); }
.visit-card.featured .visit-price { color: var(--gold); }

.visit-icon {
  margin: 0 auto 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
}

.visit-card.featured .visit-icon { background: rgba(201, 169, 97, 0.2); }

.visit-card h3 {
  font-size: 1.3rem;
  color: var(--wine-deep);
  margin-bottom: 14px;
}

.visit-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.75;
}

.visit-price {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wine);
}

/* ===== TOUR BANNER ===== */
.tour-banner {
  margin-top: 60px;
  background: var(--wine-deep);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(201, 169, 97, 0.3);
  position: relative;
  overflow: hidden;
}

.tour-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(31,5,8,0.85) 0%, rgba(31,5,8,0.7) 100%),
    url('images/texture-cellar.webp') center/cover no-repeat;
  pointer-events: none;
}

.tour-banner-content { position: relative; z-index: 1; }

.tour-banner h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 14px;
}

.tour-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.tour-banner .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.tour-banner .btn-outline:hover {
  background: var(--gold);
  color: var(--wine-deep);
}

/* ===== CONTACT ===== */
.section-contact {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(107, 31, 42, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #f0e6d2 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info .section-title { text-align: left; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(61, 16, 21, 0.1);
}

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--wine-deep);
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.checkout-modal input,
.checkout-modal textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(139, 115, 85, 0.3);
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.checkout-modal input:focus,
.checkout-modal textarea:focus {
  outline: none;
  border-color: var(--wine);
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--wine-deep);
  color: #fff;
  padding: 70px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(180deg, rgba(31,5,8,0.95) 0%, rgba(31,5,8,0.8) 100%),
    url('images/texture-cellar.webp') center/cover no-repeat;
  opacity: 0.6;
}

.footer > .container {
  position: relative;
  z-index: 2;
}

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

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
}

.footer-links h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links ul { list-style: none; }

.footer-links li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

.cart-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  background: #fff;
  z-index: 1100;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.4s;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.active { transform: translate3d(0, 0, 0); }

.cart-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.3rem;
  color: var(--wine-deep);
}

.cart-close {
  font-size: 1.4rem;
  color: var(--text-light);
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.08);
  transition: background 0.2s, color 0.2s;
}

.cart-close:hover {
  background: rgba(139, 115, 85, 0.18);
  color: var(--wine-deep);
}

.cart-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  margin-bottom: 12px;
  background: #faf6f0;
  border-radius: 12px;
  border: 1px solid rgba(139, 115, 85, 0.1);
}

.cart-item-img {
  width: 60px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #1a0a0e 0%, #0d0406 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-item-info { flex: 1; }

.cart-item-info h4 {
  font-size: 0.9rem;
  color: var(--wine-deep);
  margin-bottom: 2px;
  line-height: 1.3;
}

.cart-item-price {
  font-family: 'Cinzel', serif;
  color: var(--wine);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(139, 115, 85, 0.25);
  background: #fff;
  color: var(--wine);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.qty-val {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wine-deep);
}

.remove-btn {
  margin-left: auto;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.remove-btn:hover {
  opacity: 1;
  color: var(--wine);
}

.cart-footer {
  padding: 20px 28px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 16px));
  border-top: 1px solid rgba(139, 115, 85, 0.15);
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 16px;
}

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.checkout-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-modal {
  background: #fff;
  max-width: 580px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 56px 24px 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.checkout-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.4rem;
  color: var(--text-light);
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.08);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.checkout-close:hover {
  background: rgba(139, 115, 85, 0.18);
  color: var(--wine-deep);
}

.checkout-modal h2 {
  font-size: 1.7rem;
  color: var(--wine-deep);
  margin-bottom: 8px;
}

.checkout-modal > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.checkout-summary {
  background: var(--cream);
  padding: 18px;
  margin: 16px 0;
  border-left: 3px solid var(--gold);
}

.checkout-summary h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin-bottom: 10px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.95rem;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px solid rgba(139, 115, 85, 0.3);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 1.15rem;
}

#checkoutSuccess {
  text-align: center;
  padding: 20px 0;
}

#checkoutSuccess h2 {
  font-size: 2rem;
  color: var(--wine);
  margin: 20px 0 12px;
}

#checkoutSuccess > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.success-icon {
  display: flex;
  justify-content: center;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-bonus {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(107, 31, 42, 0.1) 100%);
  border: 1px solid var(--gold);
  padding: 16px 20px;
  margin: 20px 0 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* ===== CHECKOUT PROGRESS ===== */
.checkout-progress {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.cp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cp-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.12);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.cp-lbl {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.35s;
}

.cp-step--active .cp-num {
  background: var(--gold);
  color: var(--wine-deep);
  transform: scale(1.12);
}

.cp-step--active .cp-lbl {
  color: var(--wine-deep);
  font-weight: 700;
}

.cp-step--done .cp-num {
  background: var(--wine);
  color: #fff;
  transform: scale(1);
  font-size: 0;
}

.cp-step--done .cp-num::after {
  content: '✓';
  font-size: 0.85rem;
  font-weight: 700;
}

.cp-step--done .cp-lbl { color: var(--wine); }

.cp-line {
  flex: 1;
  height: 1px;
  background: rgba(139, 115, 85, 0.2);
  margin: 0 8px 22px;
  transition: background 0.4s;
}

.cp-line--done { background: var(--wine); }

.confirm-section {
  margin-bottom: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.confirm-section h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin-bottom: 5px;
}

.confirm-section p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.checkout-edit-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  padding: 10px 0 2px;
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s;
}

.checkout-edit-btn:hover { color: var(--wine); }

/* ===== CART PULSE ===== */
@keyframes cartPulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); color: var(--gold); }
  65%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

.cart-btn.cart-pulse { animation: cartPulse 0.5s ease forwards; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #fff;
  color: var(--wine-deep);
  padding: 14px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 24px rgba(61, 16, 21, 0.14), 0 1px 6px rgba(0,0,0,0.07);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  display: flex;
  align-items: center;
}

.toast-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--wine-deep);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  margin-right: 9px;
  animation: checkBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkBounce {
  0%   { transform: scale(0) rotate(-30deg); }
  60%  { transform: scale(1.35) rotate(8deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.stagger-1 { transition-delay: 0.1s; }
.fade-up.stagger-2 { transition-delay: 0.2s; }
.fade-up.stagger-3 { transition-delay: 0.3s; }
.fade-up.stagger-4 { transition-delay: 0.4s; }
.fade-up.stagger-5 { transition-delay: 0.5s; }
.fade-up.stagger-6 { transition-delay: 0.6s; }
.fade-up.stagger-7 { transition-delay: 0.7s; }

/* ===== COUNTER ANIMATION ===== */
.stat-num, .vf-num {
  transition: color 0.3s;
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.fab-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.fab-btn:hover { transform: scale(1.1); }

.fab-whatsapp { background: #25d366; }
.fab-phone { background: var(--wine); border: 2px solid var(--gold); }

/* ===== CHECKOUT PAYMENT ===== */
.checkout-payment {
  margin: 16px 0;
  padding: 16px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.payment-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.payment-info svg { flex-shrink: 0; }

.checkout-delivery-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.25);
  margin: 12px 0;
  font-size: 0.85rem;
}

.checkout-delivery-info svg { flex-shrink: 0; margin-top: 2px; }

.checkout-delivery-info strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin-bottom: 2px;
}

.checkout-delivery-info p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wines-grid, .visit-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .bundle-card--featured { transform: none; }
  .bundle-card--featured:hover { transform: translateY(-8px); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  z-index: 99998;
  pointer-events: none;
}


/* ===== FORM PRIVACY NOTE ===== */
/* Opacity on top of the muted colour dropped this below the 4.5:1 contrast
   floor; the darker tone at full opacity reads the same but passes. */
.form-privacy-note {
  font-size: 0.78rem;
  color: #6b6157;
  line-height: 1.6;
  margin-top: 10px;
  font-style: italic;
}

/* ===== FOOTER DISCLAIMER ===== */
.footer-disclaimer {
  margin-top: 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(201, 169, 97, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 65%, rgba(107, 31, 42, 0.45) 0%, transparent 55%),
    linear-gradient(155deg, #1a0508 0%, #2a0e14 40%, #3d1015 70%, #1f0508 100%);
}

.age-gate-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/texture-cellar.webp') center/cover no-repeat;
  opacity: 0.13;
}

.age-gate-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 520px;
  width: 100%;
  background: rgba(20, 4, 6, 0.82);
  border: 1px solid rgba(201, 169, 97, 0.28);
  padding: 56px 48px 44px;
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(201, 169, 97, 0.18);
}

.age-gate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.age-gate-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
}

.age-gate-ornament {
  margin-bottom: 20px;
  opacity: 0.8;
}

.age-gate-badge {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-shadow: 0 0 50px rgba(201, 169, 97, 0.45);
}

.age-gate-title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.age-gate-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.age-gate-confirm {
  width: 100%;
  max-width: 300px;
  padding: 16px 40px;
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.age-gate-decline {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  transition: color 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.age-gate-decline:hover { color: rgba(255, 255, 255, 0.65); }

.age-gate-denied {
  margin-bottom: 16px;
}

.age-gate-denied p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.98rem;
  line-height: 1.65;
}

.age-gate-legal {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
}

@media (max-width: 480px) {
  .age-gate-content {
    padding: 40px 24px 36px;
  }
  .age-gate-badge {
    font-size: 3.8rem;
  }
  .age-gate-title {
    font-size: 1.15rem;
  }
  .age-gate-sub {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 5, 8, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .wines-grid, .visit-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .vineyard-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
  /* Top padding must stay clear of the close button, which is absolutely
     positioned at the top-right and would otherwise sit on the step-2 circle. */
  .checkout-modal { padding: 58px 20px 28px; }
  .contact-form { padding: 28px 20px; }
  .container { padding: 0 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
}

/* ===== KEYBOARD FOCUS =====
   Visible focus ring for keyboard users only; mouse clicks stay clean. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.hero :focus-visible,
.section-vineyard :focus-visible,
.footer :focus-visible,
.age-gate :focus-visible {
  outline-color: #f0d9a0;
}

/* Skip link — first stop for keyboard and screen-reader users. */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--gold);
  color: #1f0508;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

/* ===== REDUCED MOTION =====
   Users who ask the OS to limit animation get a static, calm page. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero-particles { display: none; }
  .hero-video-native { display: none; }
  .hero-bg { opacity: 0.5 !important; }
}
