/* Mobile-First Responsive Design */

/* Base styles are mobile-first */
body {
  font-size: 16px;
}

.container,
.header-content,
.product-container,
.find-container,
.events-container,
.reviews-container,
.footer-container {
  padding: 0 15px;
}

/* Header - Mobile First */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(22, 219, 147, 0.2), transparent) 1;
  box-shadow: 0 0 10px rgba(22, 219, 147, 0.08), 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  height: 60px;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: #E63946;
  text-shadow:
    0 0 10px rgba(230, 57, 70, 0.6),
    0 0 20px rgba(230, 57, 70, 0.4);
  margin-right: 0;
}

/* Mobile Navigation - Hidden by default, hamburger menu */
.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(230, 57, 70, 0.3);
}

.nav.active {
  display: flex;
}

.nav a {
  text-decoration: none;
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px;
  transition: var(--transition);
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
}

.nav a:hover,
.nav a:active {
  color: #E63946;
  background: rgba(230, 57, 70, 0.15);
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.8), 0 0 30px rgba(230, 57, 70, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
  border: 1px solid rgba(230, 57, 70, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #16DB93;
  box-shadow: 0 0 5px rgba(22, 219, 147, 0.5);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switcher {
  display: flex;
  gap: 3px;
  font-weight: 500;
  font-size: 14px;
}

.lang-switcher span {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.cta-buy {
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

/* Hero Section - Mobile First */
.hero {
  height: auto;
  min-height: auto;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 15px 60px;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 0;
}

.hero-content {
  display: none;
  z-index: 2;
  width: 100%;
  max-width: 500px;
}

.hero-video-container {
  width: 90%;
  max-width: 350px;
  aspect-ratio: 9/16;
  height: auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 12vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1rem, 4vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  animation: fadeInUp 1s ease 0.4s both;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.btn {
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

/* Video placeholder - Mobile positioned */
.video-placeholder {
  position: static;
  width: 100%;
  max-width: 320px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
  padding: 15px;
}

/* Product Section - Mobile First */
.product {
  padding: 45px 0 60px 0;
  background: #1A1A2E;
  overflow: hidden;
}

.product-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
  padding: 0 15px;
  text-align: center;
}

.product-heading {
  font-size: clamp(2.5rem, 10vw, 3rem);
  font-weight: 800;
  margin-bottom: 0;
  color: #16DB93;
  text-shadow: 0 0 8px rgba(22, 219, 147, 0.3);
  text-align: center;
  width: 100%;
}

.product-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  position: relative;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  font-size: 30px;
  padding: 0;
  padding-bottom: 2px;
  line-height: 0;
  position: absolute;
  z-index: 10;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.product .product-container .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 15px;
  max-width: 100%;
  justify-self: center;
}

.product-info h2 {
  display: none;
  text-align: center;
  width: 100%;
}

.product-taste {
  /* Inherits all styles from .features li */
}

.product .product-info .btn {
  margin: 20px auto 0 auto;
  display: block;
  width: fit-content;
}

.product-container .product-visual {
  align-self: center;
}

.product-visual {
  position: relative;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(230, 57, 70, 0.8);
  box-shadow:
    0 0 20px rgba(230, 57, 70, 0.6),
    0 0 40px rgba(230, 57, 70, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.3);
  animation: neonBorderPulse 3s ease-in-out infinite alternate;
  flex-shrink: 0;
}

.product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-video.active {
  opacity: 1;
  pointer-events: auto;
}

.product-video-desktop {
  display: none;
}

.product-video-mobile {
  display: block;
}

.bottle-3d {
  width: 120px;
  height: 240px;
  background: var(--primary-gradient);
  border-radius: 15px 15px 50px 50px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.product-info h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #16DB93;
  text-shadow: 0 0 8px rgba(22, 219, 147, 0.3);
}

.product .product-info .features {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  width: 100%;
}

.features li {
  display: block;
  padding: 10px 18px;
  background: rgba(22, 219, 147, 0.1);
  border: 2px solid #16DB93;
  border-radius: 50px;
  color: #16DB93;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.features li:hover {
  background: rgba(22, 219, 147, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(22, 219, 147, 0.3);
}

/* Find Funju Section - Mobile First */
.find-funju {
  padding: 60px 0;
  background: transparent;
}

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

.find-container h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

/* Mobile: Single column layout */
.find-grid {
  display: flex;
  flex-direction: column-reverse; /* Form first, map second */
  gap: 20px;
  width: 100%;
}

/* Mobile: Hide map initially */
.map-container {
  display: none;
  width: 100%;
}

/* Show map after form submission */
.map-container.active {
  display: block !important;
}

#storeMap {
  height: 400px;
  min-height: 400px;
  width: 100%;
}

.form-card {
  padding: 25px 20px;
}

.form-card h3 {
  font-size: 20px;
}

.form-card p {
  font-size: 13px;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  font-size: 13px;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

.btn-primary {
  padding: 14px 20px;
  font-size: 15px;
}

.privacy-note {
  margin-top: 12px;
  padding: 10px;
  font-size: 11px;
}

.location-btn {
  bottom: 10px;
  right: 10px;
  padding: 12px 20px;
  font-size: 14px;
}

.store-panel {
  padding: 20px;
}

.success-message {
  font-size: 14px;
  padding: 12px 15px;
}

/* Event Section - Mobile First */
.events {
  padding: 60px 0;
  background: #1A1A2E;
  overflow: hidden;
}

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

.events h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  width: 100%;
  position: relative;
}

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

.event-image {
  height: 180px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.event-content {
  padding: 20px;
  position: relative;
  z-index: 1;
  background: var(--bg-white);
}

.event-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
  word-wrap: break-word;
}

.event-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.event-register {
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
}

/* Reviews Section - Mobile First (Masonry on Desktop) */
.reviews {
  padding: 60px 0;
  background: var(--bg-light);
}

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

.reviews h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.review-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Moments Section - Mobile First (Masonry on Desktop) */
.moments {
  padding: 60px 0;
  background: transparent;
}

.fans-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.moments h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #16DB93;
  text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
}

/* Mobile: single column - uses flex from base style.css */

/* Footer - Mobile First */
.footer {
  background: #1A1A2E;
  color: white;
  padding: 40px 0 20px;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: white;
  font-size: 18px;
}

.footer-section p {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px; /* Prevents zoom on iOS */
}

.newsletter button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  color: var(--text-lighter);
  font-size: 12px;
  line-height: 1.5;
}

/* Touch-friendly improvements */
@media (max-width: 767px) {
  /* Ensure all interactive elements are at least 44px */
  .btn,
  .cta-buy,
  .event-register,
  .form-input,
  .age-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improve spacing for thumb navigation */
  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Better form UX */
  .form-input {
    font-size: 16px; /* Prevents zoom on focus */
    -webkit-appearance: none;
    border-radius: var(--border-radius);
  }

  /* Mobile Modal Optimizations */
  .modal-overlay {
    padding: 10px;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    padding: 50px 15px 20px 15px !important;
    margin: 20px 0;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative !important;
  }

  .modal-content h2 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
    padding-right: 0px !important;
    padding-top: 0px !important;
    line-height: 1.3;
    display: block !important;
    margin-top: 0 !important;
    text-align: center !important;
  }

  .modal-content p {
    font-size: 13px !important;
    margin-bottom: 15px !important;
    line-height: 1.4;
  }

  .modal-content input,
  .modal-content select {
    font-size: 16px !important;
    padding: 12px !important;
    margin-bottom: 12px;
  }

  .modal-content button[type="submit"] {
    font-size: 15px !important;
    padding: 14px !important;
    width: 100%;
  }

  .modal-content .btn-secondary {
    padding: 12px !important;
    font-size: 14px !important;
    width: 100%;
    margin-top: 10px;
  }

  .modal-close {
    font-size: 28px !important;
    padding: 0 !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 10000 !important;
    line-height: 1 !important;
    color: #333 !important;
    position: absolute !important;
    background: none !important;
    border: none !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Event Modal specific */
  .modal-content form > div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .modal-content button {
    width: 100% !important;
    flex: none !important;
  }

  /* UGC Modal specific */
  .modal-content small {
    font-size: 11px !important;
  }

  /* Purchase Modal specific */
  .modal-content .store-btn {
    padding: 14px 15px !important;
    font-size: 14px !important;
  }
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .header-content {
    padding: 15px 20px;
    height: 70px;
  }

  .logo {
    font-size: 26px;
    margin-right: 40px;
  }

  .hamburger {
    display: none;
  }

  .nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 0;
    gap: 25px;
    border-top: none;
    align-items: center;
    justify-content: center;
  }

  .nav a {
    font-size: 16px;
    padding: 5px;
    color: rgba(255, 255, 255, 0.85);
    background: transparent !important;
    text-shadow: none;
    border: none;
    box-shadow: none;
    transform: none;
  }

  .nav a:hover {
    color: #16DB93;
    background: none;
    text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
    transform: none;
    box-shadow: none;
    border: none;
  }

  .hero {
    padding: 160px 0 120px;
  }

  .hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 100px 20px 100px 20px;
  }

  .hero-video-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    max-width: none;
    aspect-ratio: auto;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: 400px;
    gap: 20px;
  }

  /* Find Section - Desktop: Show grid layout */
  .find-container {
    padding: 0 20px;
  }

  .find-container h2 {
    margin-bottom: 60px;
  }

  .find-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
    align-items: stretch;
    max-width: 100%;
  }

  /* Always show map on desktop */
  .map-container {
    display: block !important;
    height: 100%;
    min-width: 0;
  }

  #storeMap {
    height: 100%;
    min-height: 500px;
  }

  .form-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    box-sizing: border-box;
  }

  .btn {
    width: auto;
    display: inline-block;
  }

  .video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 500px;
    margin-top: 0;
  }

  /* Product section - desktop horizontal layout */
  .product-container {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 80px;
    padding: 0 40px 0 40px;
    align-items: center;
  }

  .product-heading {
    display: none;
  }

  .product-carousel {
    justify-content: flex-start;
    gap: 20px;
  }

  .carousel-arrow {
    position: static;
    width: 50px;
    height: 50px;
    font-size: 36px;
    padding-bottom: 3px;
  }

  .carousel-prev {
    left: auto;
  }

  .carousel-next {
    right: auto;
  }

  .product-info {
    justify-self: start;
    max-width: 650px;
    padding-right: 40px;
    align-items: flex-start;
    text-align: left;
  }

  .product-info h2 {
    display: block;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #16DB93;
    text-shadow: 0 0 10px rgba(22, 219, 147, 0.5);
  }

  .product-taste {
    text-align: left;
    font-size: 1.1rem;
  }

  .product-visual {
    width: 450px;
    height: 450px;
    min-height: unset;
    max-height: unset;
  }

  .bottle-3d {
    width: 150px;
    height: 300px;
  }

  /* Old find-grid styles removed - now handled in @media (min-width: 768px) */

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

  .reviews-grid {
    column-count: 2;
    column-gap: 20px;
  }

  .review-card {
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
  }

  .fans-grid {
    display: block;
    column-count: 2;
    column-gap: 20px;
  }

  .fan-card,
  .social-card {
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
  }

  /* Footer - desktop 3 column layout */
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .footer-section {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .newsletter {
    flex-direction: row;
  }

  .newsletter input {
    flex: 1;
  }
}

/* Tablet-specific overrides (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Keep mobile hamburger menu on tablets */
  .hamburger {
    display: flex;
  }

  /* Center logo in header */
  .header-content {
    justify-content: center;
    position: relative;
  }

  .hamburger {
    position: absolute;
    left: 15px;
  }

  .logo {
    margin-right: 0;
  }

  .header-right {
    position: absolute;
    right: 15px;
  }

  .nav {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(26, 26, 46, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 15px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    border-top: 1px solid rgba(230, 57, 70, 0.3) !important;
  }

  .nav.active {
    display: flex !important;
  }

  .nav a {
    text-decoration: none;
    color: #E63946;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 15px;
    transition: var(--transition);
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05) !important;
    text-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
  }

  .nav a:hover,
  .nav a:active {
    color: #E63946;
    background: rgba(230, 57, 70, 0.15) !important;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.8), 0 0 30px rgba(230, 57, 70, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
    border: 1px solid rgba(230, 57, 70, 0.4);
  }

  /* Product section - stack vertically */
  .product-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
  }

  .product-carousel {
    width: 100%;
    max-width: 500px;
    justify-content: center;
  }

  .product-visual {
    width: 400px;
    height: 400px;
  }

  .product-info {
    width: 100%;
    max-width: 600px;
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }

  .product-info h2 {
    display: block;
    text-align: center;
  }

  .product .product-info .features {
    justify-content: center;
  }

  .product .product-info .btn {
    margin: 20px auto 0 auto;
  }

  .product-heading {
    display: block;
    text-align: center;
  }

  /* Footer - align social icons horizontally with email form */
  .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .footer-section {
    flex: 1;
    min-width: 250px;
  }

  .footer-section:first-child {
    display: flex;
    flex-direction: column;
  }

  .footer-section:first-child h3 {
    margin-bottom: 15px;
    margin-left: 20px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 65px;
    margin-bottom: 0;
    margin-left: 20px;
  }

  .footer-section:last-child {
    margin-right: 20px;
  }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
  .hero {
    height: 100vh;
    min-height: 700px;
    gap: 40px;
  }

  .hero-content {
    max-width: 600px;
  }

  .video-placeholder {
    min-height: 400px;
    max-height: 600px;
  }

  .product-container {
    width: 100%;
    grid-template-columns: auto 1fr;
    gap: 80px;
    padding: 0 40px 0 40px;
  }

  .product-info {
    justify-self: start;
    max-width: 650px;
    padding-right: 40px;
  }

  .product-visual {
    width: 550px;
    height: 550px;
    min-height: unset;
    max-height: unset;
  }

  .bottle-3d {
    width: 200px;
    height: 400px;
  }

  /* Old find-grid styles removed - now handled in @media (min-width: 768px) */

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

  .reviews-grid {
    column-count: 3;
    column-gap: 20px;
  }

  .review-card {
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
  }

  .fans-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    column-count: unset !important;
  }

  .fan-card,
  .social-card {
    break-inside: initial;
    margin-bottom: 0;
    display: block;
    width: 100%;
  }

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

/* Large Desktop Styles */
@media (min-width: 1440px) {
  .header-content,
  .find-container,
  .events-container,
  .reviews-container,
  .fans-container,
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .product-container {
    width: 100%;
  }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print styles */
@media print {
  .header,
  .sticky-buy,
  .age-gate {
    display: none !important;
  }

  .hero {
    height: auto;
    background: white !important;
    color: black !important;
  }

  .hero h1 {
    color: black !important;
  }
}

@media (max-width: 600px) {
  .cta-buy {
    display: none;
  }
  .lang-switcher span {
    height: 32px;
    line-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0 0.7em;
    border-radius: 1em;
  }
}
