* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --pink-primary: #ff1f8e;
  --pink-dark: #e01b7f;
  --teal: #00c7d4;
  --brown-dark: #2d1b13;
  --cream: #fff9f4;
  --black: #000000;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* ===== HEADER & NAVIGATION ===== */
.top-bar {
  background: white;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.menu-icon:hover {
  transform: scale(1.1);
}

.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.1);
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.header-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}

.sign-up-btn,
.log-in-btn {
  color: #2d1b13;
}

.order-now-btn {
  background: var(--pink-primary);
  color: white;
  padding: 12px 28px;
  font-weight: 700;
}

.order-now-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

nav {
  background: white;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 100;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2d1b13;
  text-decoration: none;
  padding: 22px 0;
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}

.nav-link:hover {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  min-width: 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 18px 0;
  margin-top: 0;
}

.dropdown-content a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2d1b13;
  padding: 6px 28px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  line-height: 1.4;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #f8f8f8;
  color: var(--pink-primary);
}

.nav-dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.nav-dropdown:hover .nav-link {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0 50px;
  margin-bottom: 150px;
  z-index: 1;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: visible;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: block;
}

.slider-image.active {
  opacity: 1;
  z-index: 1;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(45, 27, 19, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: var(--brown-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.prev-slider {
  left: -45px;
}

.next-slider {
  right: -45px;
}

.hero-content-overlay {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(10%);
  background: var(--brown-dark);
  padding: 45px 40px;
  max-width: 480px;
  z-index: 5;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: -1px;
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: white;
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: -0.1px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.delivery-btn {
  background: var(--pink-primary);
  color: white;
}

.delivery-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 31, 142, 0.4);
}

.trademark-text {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: white;
  margin-top: 20px;
  line-height: 1.4;
}

/* ===== CONTENT SECTIONS ===== */
.content-sections {
  background: white;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.sections-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.bottom-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.section-card {
  background: white;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.section-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.section-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.section-card:hover .section-image img {
  transform: scale(1.1);
}

.section-content {
  padding: 40px 35px;
}

.section-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--brown-dark);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.section-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  letter-spacing: -0.1px;
}

.section-content .cta-link {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--brown-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--brown-dark);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.section-content .cta-link:hover {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

/* Love Potion Card Styles - FIXED */
.love-potion-card {
  background: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.love-potion-image {
  position: relative;
  background: linear-gradient(135deg, #ff1f8e 0%, #ff5faf 100%);
  height: auto;
  min-height: 400px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.love-potion-image picture {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.love-potion-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.love-potion-content {
  padding: 40px 35px;
  background: white;
}

.love-potion-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--brown-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.love-potion-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  letter-spacing: -0.1px;
}

.love-potion-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.love-potion-link {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--brown-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--brown-dark);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.love-potion-link:hover {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

/* ===== CELEBRATION SECTION ===== */
.celebration-section {
  background: white;
  padding: 0;
}

.celebration-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid #e0e0e0;
}

.celebration-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.celebration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.celebration-content {
  padding: 60px 80px 60px 60px;
}

.celebration-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--brown-dark);
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.celebration-content > p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  letter-spacing: -0.1px;
}

.celebration-buttons {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.celebration-link {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brown-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--brown-dark);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.celebration-link:hover {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

.celebration-disclaimer {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ===== FAVORITES SECTION ===== */
.favorites-section {
  background: white;
  padding: 80px 0;
}

.favorites-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.favorites-header {
  position: sticky;
  top: 100px;
}

.favorites-title {
  margin-bottom: 25px;
}

.favorites-america {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--pink-primary);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.favorites-flavorites {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--brown-dark);
  line-height: 1;
  letter-spacing: -1px;
}

.favorites-description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.view-menu-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 40px;
  background: var(--pink-primary);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-menu-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 31, 142, 0.3);
}

.favorites-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.flavor-card {
  min-width: 300px;
  background: white;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.flavor-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.flavor-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.flavor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.flavor-card:hover .flavor-image img {
  transform: scale(1.1);
}

.flavor-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--brown-dark);
  padding: 25px 25px 15px;
  letter-spacing: -0.3px;
}

.flavor-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 0 25px 25px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: var(--pink-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 31, 142, 0.4);
}

.carousel-arrow:hover {
  background: var(--pink-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 31, 142, 0.5);
}

.carousel-arrow svg {
  width: 28px;
  height: 28px;
}

.prev-arrow {
  left: -100px;
}

.next-arrow {
  right: -100px;
}

/* ===== NEW: FREEZER SECTION - FIXED ===== */
.freezer-section {
  background: white;
  padding: 0;
  margin: 80px 0;
}

.freezer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid #e0e0e0;
}

.freezer-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #f5f5f5;
}

.freezer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.freezer-content {
  padding: 60px 80px 60px 60px;
}

.freezer-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--brown-dark);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.freezer-content .with-fun {
  font-weight: 900;
  display: block;
}

.freezer-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--brown-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.freezer-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  letter-spacing: -0.1px;
}

.freezer-link {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brown-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--brown-dark);
  padding-bottom: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.freezer-link:hover {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--brown-dark);
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 15px;
}

.footer-column a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--pink-primary);
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-social svg {
  width: 32px;
  height: 32px;
}

.footer-signup p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 220px;
  width: 170px;
  padding: 15px 25px;
  background: var(--pink-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

/* ===== STICKY WHATSAPP BUTTON ===== */
.sticky-whatsapp {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-whatsapp.hidden {
  display: none;
}

.whatsapp-circle {
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.whatsapp-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  background: #128c7e;
}

.whatsapp-circle svg {
  width: 45px;
  height: 45px;
}

.close-whatsapp {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #25d366;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.close-whatsapp:hover {
  background: #128c7e;
  transform: rotate(90deg);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  transition: left 0.4s ease;
  overflow-y: auto;
}

.menu-overlay.active {
  left: 0;
}

.menu-overlay-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}

.menu-close {
  position: absolute;
  top: 30px;
  left: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-close svg {
  width: 40px;
  height: 40px;
}

.menu-close:hover {
  opacity: 0.7;
}

.menu-column h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--brown-dark);
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column li {
  margin-bottom: 15px;
}

.menu-column a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-column a:hover {
  color: var(--pink-primary);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons svg {
  width: 30px;
  height: 30px;
}

.menu-footer-image {
  grid-column: 1 / -1;
  margin-top: 40px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet & Medium Screens (1024px and below) */
@media (max-width: 1024px) {
  .header-container,
  .nav-container,
  .sections-container,
  .favorites-container {
    padding: 0 20px;
  }

  .hero-slider-section {
    padding: 0 20px;
    margin-bottom: 100px;
  }

  .image-slider {
    height: 500px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }

  .prev-slider {
    left: 10px;
  }

  .next-slider {
    right: 10px;
  }

  .hero-content-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -60px 20px 40px;
    max-width: calc(100% - 40px);
    padding: 30px 25px;
  }

  .hero-title {
    font-size: 42px;
  }

  .bottom-sections {
    grid-template-columns: 1fr;
  }

  .love-potion-image {
    min-height: 350px;
  }

  .celebration-container,
  .freezer-container {
    grid-template-columns: 1fr;
  }

  .celebration-image,
  .freezer-image {
    min-height: 400px;
  }

  .celebration-content,
  .freezer-content {
    padding: 40px;
  }

  .favorites-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .favorites-header {
    position: static;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .prev-arrow,
  .next-arrow {
    display: none;
  }

  .menu-overlay-content {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Mobile Landscape & Small Tablets (768px and below) */
  @media (max-width: 768px) {
    nav {
      position: relative;
      z-index: 200;
    }

    .nav-container {
      position: relative;
      gap: 15px;
      overflow-x: auto;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      padding: 0 20px;
    }

    .nav-dropdown {
      position: relative;
    }

    .dropdown-content {
      position: fixed;
      left: 50%;
      top: auto;
      transform: translateX(-50%);
      min-width: 280px;
      max-width: calc(100vw - 40px);
      margin-top: 10px;
      z-index: 9999;
    }

    .dropdown-content a {
      font-size: 14px;
      padding: 6px 24px;
      font-weight: 600;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    .header-btn {
      font-size: 13px;
      padding: 8px 15px;
    }

    .order-now-btn {
      padding: 10px 20px;
    }

    .sign-up-btn,
    .log-in-btn {
      display: none;
    }

    .logo {
      position: static;
      transform: none;
      flex: 1;
    }

    .nav-link {
      font-size: 14px;
      padding: 15px 0;
      white-space: nowrap;
    }

    .image-slider {
      height: 400px;
    }

    .slider-arrow {
      width: 35px;
      height: 35px;
    }

    .slider-arrow svg {
      width: 18px;
      height: 18px;
    }

    .hero-content-overlay {
      margin: -40px 15px 30px;
      padding: 25px 20px;
    }

    .hero-title {
      font-size: 32px;
    }

    .hero-description {
      font-size: 14px;
    }

    .hero-btn {
      font-size: 14px;
      padding: 14px 28px;
    }

    .content-sections {
      padding: 40px 0;
    }

    .section-image {
      height: 250px;
    }

    .section-content {
      padding: 30px 25px;
    }

    .section-content h3 {
      font-size: 24px;
    }

    .section-content p {
      font-size: 14px;
    }

    .love-potion-image {
      min-height: 300px;
      padding: 15px;
    }

    .love-potion-content {
      padding: 30px 25px;
    }

    .love-potion-content h3 {
      font-size: 26px;
    }

    .love-potion-content p {
      font-size: 14px;
    }

    .love-potion-actions {
      flex-direction: column;
      gap: 15px;
    }

    .celebration-content h2,
    .freezer-content h2 {
      font-size: 28px;
    }

    .celebration-content > p,
    .freezer-content p {
      font-size: 14px;
    }

    .celebration-buttons {
      flex-direction: column;
      gap: 15px;
    }

    .favorites-america {
      font-size: 32px;
    }

    .favorites-flavorites {
      font-size: 36px;
    }

    .favorites-description {
      font-size: 14px;
    }

    .view-menu-btn {
      width: 100%;
      font-size: 15px;
      padding: 14px 30px;
    }

    .flavor-card {
      min-width: 250px;
    }

    .flavor-image {
      height: 220px;
    }

    .flavor-card h3 {
      font-size: 20px;
      padding: 20px 20px 12px;
    }

    .flavor-card p {
      font-size: 13px;
      padding: 0 20px 20px;
    }

    .footer-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .scroll-top {
      right: 20px;
      width: 140px;
      padding: 12px 20px;
      font-size: 13px;
    }

    .sticky-whatsapp {
      bottom: 20px;
      right: 20px;
    }

    .whatsapp-circle {
      width: 50px;
      height: 50px;
    }

    .whatsapp-circle svg {
      width: 30px;
      height: 30px;
    }

    .close-whatsapp {
      width: 24px;
      height: 24px;
      font-size: 16px;
      top: -6px;
      right: -6px;
      border-width: 2px;
    }

    .menu-overlay-content {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 80px 20px 40px;
    }

    .menu-close {
      left: 20px;
      top: 20px;
    }

    .menu-close svg {
      width: 30px;
      height: 30px;
    }
  }

  /* Mobile Portrait (480px and below) */
  @media (max-width: 480px) {
    .dropdown-content {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      min-width: 260px;
      max-width: calc(100vw - 30px);
      padding: 15px 0;
      z-index: 9999;
    }

    .dropdown-content a {
      font-size: 13px;
      padding: 5px 20px;
      font-weight: 600;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    .image-slider {
      height: 350px;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-description {
      font-size: 13px;
    }

    .hero-btn {
      font-size: 13px;
      padding: 12px 24px;
    }

    .section-content h3 {
      font-size: 22px;
    }

    .love-potion-image {
      min-height: 250px;
      padding: 10px;
    }

    .love-potion-content h3 {
      font-size: 22px;
    }

    .celebration-content h2,
    .freezer-content h2 {
      font-size: 24px;
    }

    .freezer-content h3 {
      font-size: 20px;
    }

    .freezer-content {
      padding: 30px 25px;
    }

    .freezer-image {
      min-height: 300px;
    }

    .celebration-content {
      padding: 30px 25px;
    }

    .celebration-image {
      min-height: 300px;
    }

    .favorites-america {
      font-size: 28px;
    }

    .favorites-flavorites {
      font-size: 32px;
    }

    .sticky-whatsapp {
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-circle {
      width: 45px;
      height: 45px;
    }

    .whatsapp-circle svg {
      width: 28px;
      height: 28px;
    }

    .close-whatsapp {
      width: 22px;
      height: 22px;
      font-size: 14px;
      top: -5px;
      right: -5px;
    }
  }
}
