/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --wine: #722F37;
  --wine-dark: #4A1C22;
  --wine-light: #9B4D55;
  --gold: #C9A96E;
  --gold-light: #E0C992;
  --cream: #FAF6F0;
  --dark: #1A1A1A;
  --text: #333;
  --text-light: #666;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114,47,55,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--wine);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
  transition: all var(--transition);
  filter: brightness(0) invert(1);
}
.header.scrolled .logo img {
  height: 32px;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.header.scrolled .nav-links a { color: var(--text); }
.header.scrolled .nav-links a:hover { color: var(--wine); }
.header.scrolled .nav-links a.btn-primary { color: var(--white); }

.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.header.scrolled .mobile-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(114,47,55,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
  padding-top: 80px;
}

.hero-content .section-label { color: var(--gold-light); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

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

/* ===== BOOKING HIGHLIGHT SECTION ===== */
.booking-highlight {
  padding: 100px 0;
  background: var(--cream);
}

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

.booking-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.booking-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.tasting-cards { display: flex; flex-direction: column; gap: 24px; }

.tasting-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.tasting-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tasting-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.tasting-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tasting-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.tasting-card h3 { margin-bottom: 4px; }
.tasting-card .duration {
  font-size: 0.85rem;
  color: var(--text-light);
}
.tasting-card .price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wine);
}
.tasting-card .price-unit {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

.tasting-card ul {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tasting-card ul li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}
.tasting-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== WINES SECTION ===== */
.wines-section {
  padding: 100px 0;
}

.wines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.wine-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.wine-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.wine-card-image {
  height: 360px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.wine-card-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.wine-card:hover .wine-card-image img {
  transform: scale(1.05);
}

.wine-card-body { padding: 24px; }
.wine-card-body .wine-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.wine-card-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.wine-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.wine-card-body .wine-meta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.wine-card-body .wine-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Wine category tabs */
.wine-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.wine-tab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--wine);
  background: transparent;
  color: var(--wine);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.wine-tab.active,
.wine-tab:hover {
  background: var(--wine);
  color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-images img {
  border-radius: 12px;
  object-fit: cover;
  height: 280px;
  width: 100%;
}
.about-images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.about-content .section-subtitle { margin-bottom: 24px; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.about-stat .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wine);
}
.about-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--wine-dark);
  color: var(--white);
}
.testimonials-section h2 { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-style: italic;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-source {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(0,0,0,0.2); }

.gallery-item.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== BOOKING FORM PAGE ===== */
.booking-page { padding-top: 120px; padding-bottom: 100px; }

.booking-form-section {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

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

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group label .required { color: var(--wine); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wine);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.phone-input {
  display: flex;
  gap: 0;
}
.country-code-wrapper {
  flex-shrink: 0;
  position: relative;
}
.country-code-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  height: 100%;
  transition: border-color var(--transition);
  white-space: nowrap;
}
.country-code-selected:hover,
.country-code-selected:focus { border-color: var(--wine); }
.selected-flag { font-size: 1.15rem; line-height: 1; }
.selected-code { font-weight: 500; color: var(--dark); }
.dropdown-arrow {
  margin-left: 4px;
  display: flex;
  align-items: center;
}
.dropdown-arrow svg {
  width: 12px;
  height: 8px;
  fill: #666;
}

.phone-input input[type="tel"] {
  border-radius: 0 var(--radius) var(--radius) 0 !important;
  border-left: none !important;
}

.country-code-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 320px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  z-index: 200;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.country-code-panel.open { display: block; }

.country-search-box {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.country-search-box input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
.country-search-box input:focus { border-color: var(--wine); }

.country-code-list {
  max-height: 220px;
  overflow-y: auto;
}

.country-code-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s;
}
.country-code-option:hover { background: var(--cream); }
.country-code-option .country-flag { font-size: 1.15rem; }
.country-code-option .country-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-code-option .dial-code {
  color: var(--text-light);
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.85rem;
}

.tasting-option {
  display: flex;
  gap: 16px;
}
.tasting-option input[type="radio"] { display: none; }
.tasting-option label {
  flex: 1;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.tasting-option label:hover { border-color: var(--wine-light); }
.tasting-option input[type="radio"]:checked + label {
  border-color: var(--wine);
  background: rgba(114,47,55,0.05);
}
.tasting-option label .option-title {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.tasting-option label .option-price {
  color: var(--wine);
  font-weight: 600;
}
.tasting-option label .option-detail {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; }

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

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wine);
  font-size: 1.2rem;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}
.contact-info-item a { color: var(--wine); }

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 180px 0 80px;
  background: var(--wine-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero/cover.jpg') center/cover;
  opacity: 0.15;
}
.page-header h1 { color: var(--white); position: relative; }
.page-header p {
  position: relative;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

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

.footer-logo {
  margin-bottom: 12px;
}
.footer-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc { font-size: 0.9rem; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  z-index: 2001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background var(--transition);
  z-index: 2001;
  user-select: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  z-index: 2001;
}

@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox img { max-width: 92vw; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { opacity: 0.9; margin-bottom: 32px; font-size: 1.1rem; }

/* ===== WINE DETAIL (inline) ===== */
.wine-detail-section { padding: 100px 0; }
.wine-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.wine-detail-image {
  background: var(--cream);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: center;
}
.wine-detail-image img {
  max-height: 500px;
  object-fit: contain;
}
.wine-detail-info h2 { margin-bottom: 8px; }
.wine-detail-info .wine-type-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--wine);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.wine-detail-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}
.wine-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.wine-spec {
  background: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius);
}
.wine-spec .spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.wine-spec .spec-value {
  font-weight: 700;
  color: var(--dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .booking-grid,
  .about-grid,
  .contact-grid,
  .wine-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--white) !important; font-size: 1.2rem; }
  .mobile-toggle { display: flex; z-index: 1001; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.span-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .about-stats { flex-direction: column; gap: 20px; }

  .tasting-option { flex-direction: column; }

  .booking-form { padding: 24px; }

  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
.whatsapp-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-bubble svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}
.whatsapp-tooltip {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--white);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}
