/* Vinos Personalizados - Premium Design System */
:root {
  --wine-deep: #4a0e0e;
  --wine-primary: #722f37;
  --wine-light: #9b2335;
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --cream: #faf6f0;
  --cream-dark: #f0e6d8;
  --charcoal: #1a1a1a;
  --gray: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(74, 14, 14, 0.15);
  --shadow-lg: 0 20px 60px rgba(74, 14, 14, 0.25);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wine-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--gray); }

a {
  color: var(--wine-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  color: var(--white);
  font-weight: 400;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--charcoal);
  min-width: 220px;
  border-radius: var(--radius);
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
}

.cta-nav {
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-deep));
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--gold);
}

.cta-nav:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
  transform: translateY(-2px);
}

.cta-nav::after { display: none !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(74,14,14,0.75)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1a1a" width="1200" height="800"/><circle fill="%234a0e0e" cx="200" cy="150" r="100" opacity="0.4"/><circle fill="%23722f37" cx="900" cy="600" r="150" opacity="0.3"/><circle fill="%23c9a227" cx="1000" cy="200" r="80" opacity="0.15"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 1.5rem 4rem;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: white;
  margin-bottom: 1.2rem;
  max-width: 800px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d4af37);
  color: var(--charcoal);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.5);
  color: var(--charcoal);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: Georgia, serif;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--wine-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1.15rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--wine-deep), var(--wine-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.card-body {
  padding: 1.6rem;
}

.card-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.card-body p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.card-link {
  font-weight: 600;
  color: var(--wine-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--gold);
}

/* Features */
.features {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--wine-primary), var(--wine-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: white;
}

.feature h3 {
  margin-bottom: 0.6rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--wine-deep), var(--wine-primary));
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🍷';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  background: var(--charcoal);
  color: white;
}

.testimonials h2 {
  color: white;
}

.testimonials .section-header p {
  color: rgba(255,255,255,0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--wine-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.author-info strong {
  display: block;
  color: var(--gold);
}

.author-info span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Contact / Form */
.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0d5c8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wine-primary);
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.15);
}

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

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  /* Extra bottom space so floating WhatsApp / PWA buttons don't cover footer content */
  padding: 4rem 1.5rem 5.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--wine-deep), var(--wine-primary));
  color: white;
  padding: 9rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--gold-light);
}

/* Content blocks */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-image {
  height: 360px;
  background: linear-gradient(135deg, var(--wine-deep), var(--wine-primary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
}

.content-text h2 {
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  margin: 1.5rem 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  color: var(--gray);
}

.benefits-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* SEO / Schema helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(201,162,39,0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.3);
    margin-top: 0.5rem;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .contact-grid,
  .content-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 7rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeUp 0.7s ease forwards;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
/* ===== PWA Install Modal ===== */
.pwa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pwa-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.pwa-modal {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d1518 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.pwa-modal-overlay.show .pwa-modal {
  transform: translateY(0) scale(1);
}
.pwa-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.pwa-modal-close:hover {
  color: #c9a227;
}
.pwa-modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, #722f37, #4a0e0e);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 2px solid #c9a227;
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.4);
}
.pwa-modal h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.pwa-modal p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.pwa-modal .highlight {
  color: #c9a227;
  font-weight: 600;
}
.pwa-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pwa-btn-install {
  background: linear-gradient(135deg, #c9a227, #d4af37);
  color: #1a1a1a;
  border: none;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}
.pwa-btn-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.45);
}
.pwa-btn-later {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}
.pwa-btn-later:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.pwa-benefits {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.2rem 0 1.5rem;
  flex-wrap: wrap;
}
.pwa-benefit {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}
.pwa-benefit span {
  font-size: 1rem;
}
/* iOS install tip */
.pwa-ios-tip {
  display: none;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.pwa-ios-tip.show {
  display: block;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1518 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding: 1.1rem 1.5rem;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: #c9a227;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #c9a227, #d4af37);
  color: #1a1a1a;
}
.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,162,39,0.4);
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn-reject:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Form checkbox */
.form-check {
  margin-bottom: 1.4rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 400 !important;
  color: var(--gray);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--wine-primary);
  cursor: pointer;
}
.checkbox-label a {
  color: var(--wine-primary);
  text-decoration: underline;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.8rem;
  margin-bottom: 0;
}
#submitBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.content-image img {
  display: block;
}

/* PWA mini button (after dismiss) */
.pwa-mini-btn {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 998;
  background: linear-gradient(135deg, #722f37, #4a0e0e);
  color: #c9a227;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pwa-mini-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.45);
  color: #e8d5a3;
}

/* Improved logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a227;
  font-style: normal;
  line-height: 1.15;
}
.logo-text em {
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.92em;
}
.footer .logo-text em {
  color: rgba(255,255,255,0.85);
}
@media (max-width: 600px) {
  .logo-text {
    font-size: 1.05rem;
  }
  .logo-img {
    width: 30px;
    height: 30px;
  }
}



@media (max-width: 600px) {
  .share-wrap {
    bottom: 88px;
    left: 14px;
  }
  .share-label {
    display: none;
  }
  .share-btn {
    padding: 0.75rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .share-icon {
    font-size: 1.25rem;
  }
}


/* Logo polish */
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #c9a227;
  line-height: 1.15;
}
.logo-text em {
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.92em;
}

/* ===== Share button (premium) — left side, no overlap ===== */
.share-wrap {
  position: fixed;
  bottom: 28px;
  left: 20px;
  right: auto;
  z-index: 990;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.5rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem 0.65rem 0.85rem;
  background: linear-gradient(135deg, #c9a227 0%, #e8d5a3 40%, #c9a227 100%);
  color: #1a0a0a;
  border: 1.5px solid #a88620;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), box-shadow 0.2s;
  font-family: inherit;
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5), 0 4px 12px rgba(0,0,0,0.25);
}
.share-btn:active {
  transform: translateY(0) scale(0.98);
}
.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a0a0a;
  color: #c9a227;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.share-label {
  padding-right: 0.1rem;
}
.share-menu {
  background: rgba(18, 8, 8, 0.97);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 14px;
  padding: 0.4rem;
  min-width: 190px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: shareIn 0.2s cubic-bezier(.2,.8,.2,1);
  backdrop-filter: blur(10px);
}
@keyframes shareIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.share-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #f0e6d8;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.share-option:hover {
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
}
.share-option::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a227;
  flex-shrink: 0;
  opacity: 0.75;
}
.share-toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  right: auto;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  animation: shareIn 0.25s ease;
}
/* When cookie banner is visible, push share up */
body:has(.cookie-banner.show) .share-wrap {
  bottom: 100px;
}
body:has(.cookie-banner.show) .share-toast {
  bottom: 160px;
}
@media (max-width: 600px) {
  .share-wrap {
    bottom: 24px;
    left: 12px;
    right: auto;
  }
  .share-label { display: none; }
  .share-btn {
    padding: 0;
    width: 48px;
    height: 48px;
    justify-content: center;
    border-radius: 50%;
  }
  .share-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227, #e8d5a3);
    color: #1a0a0a;
    font-size: 1.15rem;
    border: none;
  }
  body:has(.cookie-banner.show) .share-wrap {
    bottom: 110px;
  }
}

/* WhatsApp stays right — ensure no clash */
.whatsapp-float {
  right: 22px !important;
  left: auto !important;
  bottom: 25px !important;
  z-index: 991;
}
.pwa-mini-btn {
  right: 22px !important;
  left: auto !important;
  bottom: 95px !important;
  z-index: 990;
}

/* Extra footer clearance for floating buttons on mobile */
@media (max-width: 600px) {
  .footer {
    padding-bottom: 7.5rem;
  }
  .footer-bottom {
    padding-bottom: 0.5rem;
  }
}
