/* CSS Custom Properties */
:root {
  --background: #FFF9EC;
  --foreground: #333333;
  --primary: #D51522;
  --primary-foreground: #FFFFFF;
  --secondary: #F5F5F5;
  --accent: #FFD700;
  --border: #E0E0E0;
  --font-poppins: 'Poppins', sans-serif;
}


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

body {
  font-family: var(--font-poppins);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.italic {
  font-style: italic;
}

/* Header Styles */
.header {
  padding: 1.5rem;
  background-color: var(--background);
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: 90rem;
  margin: 0 auto;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2rem;
  width: auto;
}

.nav-cart-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.spacer {
  flex: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}







/* Mobile Navigation Styles */
.mobile-nav {
  /*display: none;*/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFF9EC;
  z-index: 1000;
  border-bottom: 1px solid rgba(213, 21, 34, 0.1);
  padding: 0.75rem 1rem;
}

.mobile-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

/* Hamburger Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #D51522;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-btn:hover .hamburger-line {
  background-color: #B91C1C;
}

/* Mobile Logo */
.mobile-logo-img {
  height: 1rem;
  width: auto;
}

/* Mobile Cart */
.mobile-cart-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-cart-btn .cart-icon {
  color: #D51522;
  font-size: 1.2rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

/* Mobile Menu Popup */
.mobile-menu-popup {
  width: 90%;
  max-width: 400px;
  height: auto;
  background-color: #FFF9EC;
  border-radius: 20px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-popup {
  transform: scale(1);
}

/* Close Button */
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #D51522;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu Content */
.mobile-menu-content {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mobile-menu-link {
  display: block;
  color: #D51522;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(213, 21, 34, 0.2);
  transition: opacity 0.3s ease;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

.mobile-menu-link:last-child {
  border-bottom: none;
}

/* Social Icons */
.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.mobile-social-icon {
  width: 32px;
  height: 32px;
  color: #D51522;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.mobile-social-icon svg {
  width: 100%;
  height: 100%;
}

/* Menu Logo */
.mobile-menu-logo {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.mobile-menu-logo-img {
  height: 2rem;
  width: auto;
}

/* Show mobile nav only on mobile devices */
@media (max-width: 768px) {
  .mobile-nav {
      display: block;
  }
  
  /* Add padding to body to account for fixed nav */
  body {
      padding-top: 70px;
  }
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
  .mobile-nav {
      display: none !important;
  }
}









.cart-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cart-btn {
  display: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-icon {
  display: none;
  color: var(--primary);
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: calc(100vh - 130px); /* Subtract approximate header height */
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.hero-title {
  font-size: clamp(1.75rem, 7vw, 3.5rem);
  font-weight: 300;
  margin-bottom: auto; /* Push title to top of available space */
  line-height: 1.2;
}

.cta-btn {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 10rem; /* Push button to bottom */
  margin-bottom: 5px; /* 20px from bottom */
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.25);
}

.hero-container {
  max-width: 90rem;
  margin: 0 auto;
}

.hero-text {
  font-weight: 300;
  color: var(--primary);
}

.hero-text-medium {
  font-weight: 500; /* Medium weight */
}

.cta-btn .arrow-spacing {
  margin-left: 0.75rem; /* Adjust this value to increase/decrease spacing */
}

.cta-btn:hover {
  opacity: 0.9;
}

/* Floating Products */
.floating-product {
  position: absolute;
  border-radius: 0.5rem;
  opacity: none;
  animation: float 6s ease-in-out infinite;
}

.product-1 {
  top: 10%;
  left: 10%;
  width: 14rem;  /* Increased from 9rem */
  height: 18rem; /* Increased from 12rem */
  animation-delay: 0s;
}

.product-2 {
  top: 16%;
  right: 10%;
  width: 11rem;  /* Increased from 8rem */
  height: 14rem; /* Increased from 12rem */
  animation-delay: 2s;
}

.product-3 {
  bottom: 11%;
  left: 13%;
  width: 17rem;  /* Increased from 13rem */
  height: 12rem; /* Increased from 9rem */
  animation-delay: 4s;
}

.product-4 {
  bottom: 12%;
  right: 20%;
  width: 15rem;  /* Increased from 10rem */
  height: 18rem; /* Increased from 13rem */
  animation-delay: 1s;
}

/* Stars */
.star {
  position: absolute;
  color: var(--accent);
  font-size: 1.5rem;
  animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
  top: 16%;
  left: 25%;
  animation-delay: 0s;
}

.star-2 {
  bottom: 32%;
  right: 33%;
  animation-delay: 1s;
}

.star-3 {
  top: 33%;
  right: 10%;
  animation-delay: 2s;
}

/* Video Section */
.video-section {
  width: 100%;
  background: linear-gradient(135deg, #E8D5C4 0%, #D4B5A0 100%);
}

.video-container {
  width: 100%;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* Standard video aspect ratio */
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay-content {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: white;
}

.play-button {
  width: 3rem;
  height: 3rem;
  margin: 0;
  background-color: #D51522;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 2rem;
  height: 2rem;
}


















/* Products Section */
.products-section {
  width: 100%;
  background-color: var(--primary);
}

.products-container {
  display: flex;
  height: auto;
}

/* Products Image Side */
.products-image-side {
  width: 40%;
  position: relative;
  background-color: var(--background);
}

.products-image-container {
  position: absolute;
  inset: 0;
}

/* Replace the placeholder styles with these */
.main-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Products Content Side */
.products-content-side {
  width: 60%;
  padding: 4rem 4.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.products-title {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}

.products-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}


/* Fix for arrow button underline */
.products-controls a {
  text-decoration: none; /* Remove underline from the link */
}

.products-controls a:hover {
  text-decoration: none; /* Ensure no underline on hover */
}

.arrow-btn {
  width: 3rem;
  height: 3rem;
  background-color: #B91C1C;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.arrow-btn:hover {
  background-color: #991B1B;
}

.arrow {
  color: white;
  font-size: 1.25rem;
}

/* Product Cards */
.product-cards {
  display: flex;
  gap: 1.8rem;
  margin-bottom: 2rem;
}




/* Product Cards with Hover Effect */
.product-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 28rem;
  width: 12rem;
  min-width: 330px;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  cursor: pointer;
}

/* Individual product card styles with hover effects */
.product-card.luna-nueva {
  background-image: url('assets/product/lunanueva.png');
}

.product-card.luna-nueva:hover {
  background-image: url('assets/product/lunanueva2.png');
}

.product-card.luna-de-sangre {
  background-image: url('assets/product/lunadesangre.jpg');
}

.product-card.luna-de-sangre:hover {
  background-image: url('assets/product/lunadesangre2.png');
}

.product-card.luna-llena {
  background-image: url('assets/product/lunallena.png');
}

.product-card.luna-llena:hover {
  background-image: url('assets/product/lunallena2.png');
}






.product-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.product-image-placeholder {
  width: 6rem;
  height: 6rem;
  background-color: #E5E7EB;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  text-align: center;
}

.product-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  width: 100%;
}

.product-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}

.product-name {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--primary);
  text-align: right;
  margin: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.phase-text {
  color: white;
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 300;
  text-align: left;
  margin-top: 1.5rem;
}


/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pagination-text {
  color: white;
  font-style: italic;
  font-size: 1.125rem;
}

.pagination-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--accent);
}

/* Logo Strip */
.logo-strip {
  padding: 2rem 0;
  overflow: hidden;
  background-color: var(--background);
}

.logo-strip-content {
  display: flex;
}

.logo-strip-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 33s linear infinite;
}

.logo-strip-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  height: 2rem;
  margin: 0 2rem;
}

/* Sustainability Section */
.sustainability-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}

.sustainability-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.sustainability-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative; /* Add this */
  z-index: 10; /* Add this */
}

.sustainability-title {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative; /* Add this */
  z-index: 10; /* Add this */
}

.sustainability-text {
  color: white;
}

.sustainability-text p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.sustainability-image {
  display: flex;
  justify-content: center;
}

.pad-image {
  width: 90%; /* 90% of its container */
  max-width: 45rem; /* But never bigger than 35rem */
  height: auto;
}

.sustainability-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.feature-dot {
  width: 0.35rem;
  height: 0.35rem;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-line {
  flex: 0.3;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.feature-text {
  color: white;
  font-size: 1rem;
  white-space: nowrap;
}

.sustainability-cta {
  text-align: center;
  margin-top: 4rem;
  position: relative; /* Add this */
  z-index: 10; /* Add this */
}

.sustainability-btn {
  padding: 1rem 2rem;
  border: 2px solid white;
  color: white;
  background: none;
  border-radius: 9999px;
  font-weight: 400;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.30); /* Subtle shadow */
  text-decoration: none; /* Add this line to remove underline */
}

.sustainability-btn:hover {
  background-color: white;
  color: var(--primary);
  text-decoration: none; /* Also remove underline on hover */
}

/* Sustainability Decorative Elements */
.sustainability-moon {
  position: absolute;
  top: 50%; /* Centers vertically */
  right: -16%; /* Half off the right edge */
  width: 30rem; /* Adjust size as needed */
  height: 30rem; /* Adjust size as needed */
  background-image: url('assets/circlemoon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1; /* Behind the content */
  transform: translateY(-50%); /* Perfect vertical centering */
}


/* Distribution Section */
.distribution-section {
  padding: 4rem 1.5rem;
  background-image: url('assets/LUA_64.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.distribution-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
}

.distribution-container {
  max-width: 55rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.distribution-card {
  max-width: 900px; /* Card won't exceed 900px */
  margin: 0 auto; /* Centers the card horizontally */
  background-color: var(--accent);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem; /* 2rem top/bottom, 1rem left/right */ ;
  display: flex;
  align-items: center; /* Centers content vertically inside card */
  justify-content: center; /* Centers content horizontally inside card */
  gap: 3rem;
}

.distribution-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
}

.distribution-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.distribution-btn:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  background-color: white;
}

.footer-container {
  max-width: 90rem;
  margin: 0 auto;
}

.footer-title {
  font-weight: 500; /* 600 = semibold */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center; /* Centers content horizontally -try- */
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #D51522;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem; /* Adjust this value to increase/decrease spacing */
  margin-top: .3rem; /* Add space above the icons */
}

.social-icon svg,
.social-icon img {
    width: 28px;
    height: 28px;
}

.social-icon:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: flex-start; /* Align to top instead of center */
  justify-content: space-between;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 2.2rem;
  width: auto;
}

.footer-info {
  font-size: 0.875rem;
  color: #D62126;
}

.footer-tagline {
  font-size: 1rem;
  color: #c03d35;
  font-style: italic;
  margin: 0;
  max-width: 600px;
}

.footer-legal {
  margin: 0;
  text-align: right; /* Align legal text to the right */
}

.footer-copyright {
  text-align: right;
  align-self: flex-end;
  padding-right: 2rem;
}

.footer-copyright p {
  font-size: 0.9rem;
  font-weight: 200;
  color: #676767;
  margin: 0;
  letter-spacing: 0.05em; 
}

.arbeth-link {
  color: #666666;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.arbeth-link:hover {
  opacity: 0.7;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-container {
    flex-direction: column;
    
    min-height: auto;
  }
  
  .products-image-side,
  .products-content-side {
    width: 100%;
  }




  .products-content-side {
    height: auto !important;
  }



  
  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .feature-line {
    display: none;
  }

  .sustainability-features {
    align-items: center;
    gap: 1rem;
  }
  
  .feature-item {
    justify-content: center;
  }
  
}

/* FAQ Section Styles - Add this to your styles.css */
.faq-main-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #D51522 0%, #B91C1C 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.faq-decorative-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.faq-bg-element-1 {
  position: absolute;
  right: -16rem;
  top: 25%;
  width: 48rem;
  height: 48rem;
  opacity: 0.8;
  background-image: url('assets/ovalstar.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-bg-element-2 {
  position: absolute;
  left: -12rem;
  bottom: 33%;
  width: 36rem;
  height: 36rem;
  opacity: 0.8;
  background-image: url('assets/circledot.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-decorative-star {
  position: absolute;
  bottom: 8rem;
  right: 8rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.faq-content-container {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
}

.faq-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.faq-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-section {
  margin-bottom: 2rem;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.faq-section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: white;
}

.faq-star-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-items-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.faq-question-button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 1rem;
}

.faq-question-text {
  color: white;
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  font-weight: 500;
  padding-left: 1.5rem;
  padding-right: 1rem;
  line-height: 1.6;
  flex: 1;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
  flex-shrink: 0;
  margin-top: 0.25rem;
  margin-right: 1.5rem;
  transition: transform 0.2s ease;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.6;
  display: none;
}

.faq-answer.open {
  display: block;
}

@media (max-width: 768px) {
  /* Make the nav links show in a column like historia/ */
  .header-content {
    gap: 1rem;
  }

  .header {
    display: none !important;
}


  
  .nav {
    display: none;
    /*flex-direction: column;
    gap: 0.5rem;
    text-align: center; */
  }
  
  .nav-link {
    font-size: 0.75rem;
  }
  
  .hero {
    min-height: 600px;
    /*height: calc(100vh - 100px); /* Smaller header on mobile */
    padding: 0 1rem;
  }
  



  .hero-content {
    justify-content: center; /* Change from flex-end to center */
    padding-top: 8rem !important; /* Add padding to push content down */
  }

  .hero-title {
    margin-bottom: 4rem !important; /* Increase space between title and button */
    top: 50%  !important;
  }

  .cta-btn {
    margin-top: 4rem !important; /* Reduce from 10rem to 2rem */
    margin-bottom: 1rem !important; /* Increase bottom margin */
    bottom: 5% !important;
  }





  .products-container {
    height: auto !important; /* Remove height constraint */

  }

  .product-cards {
    flex-direction: column;
    align-items: center;
    height: auto !important;
  }

  .products-section {
height: auto !important;
  }

    /* Make sure individual product types also get the mobile height */
    .products-content-side .product-cards .product-card.luna-nueva,
    .products-content-side .product-cards .product-card.luna-de-sangre,
    .products-content-side .product-cards .product-card.luna-llena {
      min-height: 400px !important;
    }

  


  .distribution-card {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Add this new rule to center the logo section */
  .footer-logo-section {
    align-items: center; /* Centers the logo and tagline */
  }
  
  .products-title {
    font-size: 2.8rem;
  }

  /* Sustainability section mobile styles */
  .sustainability-title {
    font-size: 2rem;
  }

  .feature-line {
    display: none;
  }

  .sustainability-features {
    align-items: center;
    gap: .8rem;
  }

  .feature-item {
    justify-content: center;
  }

  .sustainability-moon {
    width: 20rem;
    height: 20rem;
    right: -35%;
  }

  /* Floating products mobile adjustments */
  .product-1 {
      top: 14%;
      left: 10%;
    width: 9rem;
    height: 11rem;
  }

  .product-2 {
    top: 11%;
    right: 10%;
    width: 8rem;
    height: 12rem;
  }

  .product-3 {
    bottom: 11%;
    left: 10%;
    width: 9rem;
    height: 8rem;
  }

  .product-4 {
    bottom: 10%;
    right: 10%;
    width: 9rem;
    height: 12rem;
  }

  /* FAQ responsive adjustments */
  .faq-main-section {
      padding: 2rem 1rem;
  }

  .faq-main-title {
      margin-bottom: 2rem;
  }

  .faq-section-header {
      margin-bottom: 1.5rem;
  }

  .faq-question-text {
      padding-left: 1rem;
      padding-right: 0.5rem;
  }

  .faq-answer {
      padding-left: 1rem;
      padding-right: 1rem;
  }

  .faq-chevron {
      margin-right: 1rem;
  }

  .faq-bg-element-1 {
      right: -20rem;
      width: 40rem;
      height: 40rem;
  }

  .faq-bg-element-2 {
      left: -16rem;
      width: 32rem;
      height: 32rem;
  }

  .faq-decorative-star {
      bottom: 4rem;
      right: 4rem;
  }
}

@media (max-width: 480px) {

  .play-button {
    display: none;
  }

  .feature-line {
    display: none;
  }

  .sustainability-features {
    align-items: center;
    gap: .4rem;
  }

  .feature-item {
    justify-content: center;
  }
  
  .faq-main-section {
      padding: 1.5rem 0.75rem;
  }
   
    .nav {
display: none;
    }

    .header {
      display: none !important;
  }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-copyright {
      text-align: center;
      align-self: center;
      order: 2;
    }


      /* Add this to your existing 480px media query */
  .product-1 {
    width: 5.2rem;
    height: 7.7rem;
  }

  .product-2 {
    width: 4rem;
    height: 6rem;
  }

  .product-3 {
    width: 6rem;
    height: 4rem;
  }

  .product-4 {
    width: 5.5rem;
    height: 8rem;
  }

    /* Hero button */
    .hero {
      height: calc(100vh - 80px); /* Even smaller header on small mobile */
      padding: 0 0.75rem;
    }



    .hero-content {
      justify-content: center;
      padding-top: 6rem; /* Slightly less padding for small screens */
    }

    
    .hero-title {
      font-size: 1.8rem;
      margin-top: 2rem;
      margin-bottom: 4rem; /* Adjust spacing for smaller screens */
    }

    .cta-btn {
      padding: 0.5rem 1.5rem;
      font-size: 0.75rem;

      margin-top: 1.5rem;
      margin-bottom: 4rem; /* More bottom margin on small screens */
    }
  
    /* Sustainability button */
    .sustainability-btn {
      padding: 0.75rem 1.2rem;
      font-size: 1rem;
    }
    
    .sustainability-title {
      font-size: 1.5rem;
    }
    
    .products-title {
      font-size: 2.5rem;
    }

    .sustainability-moon {
      width: 23rem;
      height: 23rem;
      left: 50%; /* Move to center */
      top: -16%; /* This moves it up so 20% is cut off at the top */
      transform: translateX(-50%); /* Only center horizontally now */
    }
  
}

/* MOBILE NAV FIX - Add at end of styles.css */
@media (min-width: 769px) {
  .mobile-nav,
  .mobile-menu-overlay {
    display: none !important;
    visibility: hidden !important;
  }
  body {
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block !important;
  }
  body {
    padding-top: 70px !important;
  }
}
