/* CSS for Laluna Landing Page */
:root {
  --laluna-bg: #0b1528;
  --laluna-gold: #c6a76c;
  --laluna-gold-light: #eaddbd;
  --laluna-text-light: #ffffff;
  --laluna-font-serif: 'Fahkwang', 'Playfair Display', serif;
  --laluna-font-sans: 'Fahkwang', 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0b1528; /* Fallback màu tối khi ảnh nền chưa tải */
  font-family: var(--laluna-font-sans);
}

.laluna-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.laluna-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.laluna-header .logo {
  font-family: var(--laluna-font-serif);
  font-size: 32px;
  color: var(--laluna-gold-light);
  font-style: italic;
  font-weight: 700;
  text-decoration: none;
}

.laluna-nav {
  display: flex;
  gap: 25px;
}

.laluna-nav a {
  color: var(--laluna-text-light);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.laluna-nav a:hover,
.laluna-nav a.active {
  color: var(--laluna-gold);
}

/* Sticky Button */
.laluna-sticky-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--laluna-gold-light);
  color: #000;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-family: var(--laluna-font-serif);
  text-transform: uppercase;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.laluna-sticky-btn:hover {
  transform: scale(1.05);
}

.laluna-form-box {
  background: #0f182d;
  border: 1px solid var(--laluna-gold-light);
  border-radius: 32px 0 32px 0;
  padding: 40px;
  max-width: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 99;
}

.laluna-form-title {
  text-align: center;
  font-family: var(--laluna-font-serif);
  color: var(--laluna-gold-light);
  margin-bottom: 20px;
}

.laluna-form-title h2 {
  font-size: 24px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.laluna-form-title h3 {
  font-size: 36px;
  margin: 0;
  font-style: italic;
}

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

.laluna-input {
  width: 100%;
  padding: 12px 15px;
  background-color: #5d460c;
  border: 1px solid var(--laluna-gold-light);
  border-radius: 25px !important;
  color: #ffffff !important; /* Force white text for filled inputs */
  font-family: var(--laluna-font-sans);
  box-sizing: border-box;
  transition: none !important;
  pointer-events: auto !important;
  user-select: auto !important;
  position: relative;
  z-index: 10;
}

.laluna-input:focus {
  outline: none !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 8px rgba(234, 221, 189, 0.5) !important;
}

.laluna-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important; /* Dim placeholder text */
}

.laluna-btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #c6a76c 0%, #7b5b1a 100%);
  color: #fff;
  border: 1px inset var(--laluna-gold-light);
  border-radius: 0 25px 0 25px;
  font-family: var(--laluna-font-sans);
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
}

/* Sections General */
.laluna-section {
  padding: 40px 0;
}

.laluna-section-title {
  text-align: center;
  font-family: var(--laluna-font-sans); /* Use sans-serif font like the screenshot */
  color: #ffffff; /* Pure white text */
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4); /* White glow */
}

/* Hero Section */
.laluna-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.laluna-hero-left {
  flex: 1;
}

.laluna-hero-right {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
}

.laluna-hero-image-wrapper {
  background: linear-gradient(145deg, #0f182d 0%, #162240 50%, #0f182d 100%);
  padding: 35px 0px 35px 35px;
  border-radius: 16px;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid rgba(198, 167, 108, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(234, 221, 189, 0.05);
  overflow: hidden;
}

.laluna-hero-img-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.laluna-hero-img {
  width: 100%;
  max-width: 420px;
  display: block;
  mix-blend-mode: screen;
  object-fit: fill;
  filter: drop-shadow(0 4px 25px rgba(198, 167, 108, 0.15));
  transition: transform 0.5s ease;
}

.laluna-hero-img:hover {
  transform: scale(1.03);
}

.laluna-hero-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 350px;
  flex-shrink: 0;
}

.laluna-hero-logo-box {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.laluna-hero-logo-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(198, 167, 108, 0.25));
}

.laluna-hero-divider {
  width: 4px;
  height: auto;
  min-height: 40px;
  background: linear-gradient(180deg, var(--laluna-gold-light), rgba(198, 167, 108, 1));
  border-radius: 2px;
  flex-shrink: 0;
}

.laluna-hero-desc-text {
  width: 100%;
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  padding: 0px 35px;
  border-left: 1px solid rgba(198, 167, 108, 0.2);
}

.laluna-hero-desc-text {
  max-width: 100%;
  font-size: 16px;
}
/* Features Grid */
.laluna-features-top {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.laluna-feature-item {
  text-align: center;
  color: #000;
}

.laluna-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--laluna-gold-light);
  border-radius: 50%;
  margin: 0 auto 10px;
}

.laluna-feature-text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

.laluna-features-bottom {
  display: flex;
  gap: 20px;
}

.laluna-feature-image-card {
  flex: 1;
  background: #000;
  border: 2px solid var(--laluna-text-light);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.laluna-feature-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laluna-feature-text-card {
  flex: 1;
  border: 2px solid var(--laluna-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: justify;
}

/* Video Section */
.laluna-video-wrapper {
  background: #0f182d;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.laluna-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 3;
}

.laluna-play-btn {
  width: 80px;
  height: 80px;
  background: var(--laluna-gold-light);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  cursor: pointer;
  z-index: 10;
}

/* Flavors Section */
.laluna-flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.laluna-flavor-item {
  text-align: center;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.laluna-flavor-box {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  /* Separates box and cake */
  display: flex;
  align-items: center;
  justify-content: center;
}

.laluna-flavor-cake {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fdfcf8;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laluna-flavor-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  border: 1.5px solid var(--laluna-gold-light);
  padding: 12px 20px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
  pointer-events: auto;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(234, 221, 189, 0.5), inset 0 0 10px rgba(234, 221, 189, 0.2);
  background: rgba(15, 24, 45, 0.6);
}

.laluna-flavor-cake:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.85);
}

/* Gallery Section */
.laluna-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.laluna-gallery-item {
  background: #0f182d;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.laluna-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laluna-gallery-desc {
  grid-column: 1 / -1;
  border: 1px solid var(--laluna-gold-light);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

/* Reviews Section */
.laluna-reviews-wrapper {
  display: flex;
  background: #0f182d;
  border-radius: 12px;
  overflow: hidden;
}

.laluna-review-image {
  flex: 1;
}

.laluna-review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laluna-review-content {
  flex: 1.5;
  border: 2px solid var(--laluna-text-light);
  margin: 20px;
  padding: 0;
}

/* News Section */
.laluna-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.laluna-news-item {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laluna-news-img {
  width: 100%;
  background: #1a253a;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.laluna-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laluna-news-text {
  background: #0a1120;
  color: #a9d5ff !important;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: justify;
  width: 90%;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Bottom Form */
.laluna-bottom-form-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.laluna-bottom-left {
  flex: 1.2;
  display: block;
  background: linear-gradient(135deg, #0f182d 0%, #162240 100%);
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(198, 167, 108, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.laluna-bottom-right {
  flex: 1;
  display: flex;
  align-items: stretch;
}

/* Base Classes Extracted from Inline Styles */
.laluna-discount-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.laluna-discount-text {
  text-align: right;
  line-height: 1.1;
  font-weight: bold;
  color: var(--laluna-gold);
}

.laluna-discount-number {
  font-size: 72px;
  font-weight: bold;
  color: #ffffff;
  font-family: var(--laluna-font-serif);
  font-style: italic;
  line-height: 0.8;
  padding-top: 5px;
}



.laluna-features {
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: center;
  margin: 0 auto;
  max-width: 1080px;
}

.laluna-feature-item {
  flex: 1;
  padding: 0 10px;
  text-align: center;
  color: #000;
}

.laluna-feature-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px auto; /* Centers the div horizontally and adds bottom margin */
  background-color: #f7eedc;
  padding: 22px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laluna-feature-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Filter to shift black to a gold/brown color */
  filter: invert(75%) sepia(24%) saturate(692%) hue-rotate(355deg) brightness(91%) contrast(88%);
}

.laluna-feature-title {
  color: #415364;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  max-width: 160px;
  margin: 0 auto;
}

.laluna-gallery-columns {
  display: flex;
  gap: 20px;
}

.laluna-gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.laluna-testimonial-track {
  display: flex;
  transition: transform 0.3s ease-out;
  width: 100%;
  flex: 1;
}

.laluna-testimonial-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
}


.laluna-testimonial-text {
  font-size: 16px;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
}

.laluna-testimonial-author {
  font-size: 18px;
  color: var(--laluna-gold-light);
  font-weight: bold;
  font-family: var(--laluna-font-serif);
  text-transform: uppercase;
}

.laluna-testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3); /* Dim arrows */
  font-size: 35px;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  transition: color 0.3s;
}

.laluna-testi-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.laluna-testi-btn.prev {
  left: 0;
}

.laluna-testi-btn.next {
  right: 0;
}

.laluna-bottom-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.laluna-bottom-product-img:hover {
  transform: scale(1.03);
}

.laluna-bottom-desc {
  border: 1px solid rgba(234, 221, 189, 0.25);
  border-radius: 8px;
  padding: 25px;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  background: rgba(15, 24, 45, 0.4);
  line-height: 1.8;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* Order Section Title */
.laluna-order-title {
  text-align: left;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.laluna-title-underline {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--laluna-gold-light), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Bottom Info Panel */
.laluna-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.laluna-bottom-info-header {
  display: flex;
  align-items: stretch;
  gap: 15px;
  margin-top: 50px;
}

.laluna-bottom-divider {
  width: 4px;
  height: auto;
  min-height: 40px;
  background: linear-gradient(180deg, var(--laluna-gold-light), rgba(198, 167, 108, 1));
  flex-shrink: 0;
  border-radius: 2px;
}

.laluna-bottom-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(198, 167, 108, 0.3));
}

.laluna-bottom-desc-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Slider Buttons */
.laluna-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--laluna-gold-light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.laluna-slider-btn.prev {
  left: 10px;
}

.laluna-slider-btn.next {
  right: 10px;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
  .laluna-hero {
    flex-direction: column;
    gap: 30px;
  }

  .laluna-hero-left,
  .laluna-hero-right {
    flex: unset;
    width: 100%;
  }

  .laluna-form-box {
    max-width: 100%;
  }

  .laluna-hero-image-wrapper {
    padding: 30px;
  }

  .laluna-hero-right-col {
    max-width: 200px;
    margin-left: 20px;
  }

  .laluna-features {
    flex-wrap: wrap;
    gap: 10px;
  }

  .laluna-feature-item {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }

  .laluna-features-bottom {
    flex-direction: column;
  }

  .laluna-feature-image-card {
    height: 280px;
  }

  .laluna-video-wrapper {
    height: 400px;
  }

  .laluna-flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .laluna-gallery-grid {
    grid-template-columns: 1fr;
  }

  .laluna-gallery-item {
    height: 250px;
  }

  .laluna-reviews-wrapper {
    flex-direction: column;
  }

  .laluna-review-image {
    height: 300px;
  }

  .laluna-review-content {
    margin: 0;
    border: none;
    padding: 30px;
  }

  .laluna-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .laluna-bottom-form-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .laluna-bottom-left {
    padding: 0;
  }

  .laluna-section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .laluna-gallery-columns {
    gap: 15px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  body.laluna-theme {
    background-attachment: scroll;
  }

  .laluna-container {
    padding: 0 15px;
  }

  .laluna-section {
    padding: 35px 0;
  }

  .laluna-section-title {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 25px;
  }

  /* Header */
  .laluna-header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  .laluna-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .laluna-nav a {
    font-size: 12px;
  }

  /* Sticky Button */
  .laluna-sticky-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 13px;
  }

  /* Hero Section */
  .laluna-hero {
    gap: 20px;
  }

  .laluna-form-box {
    padding: 25px;
    border-radius: 24px 0 24px 0;
  }

  .laluna-form-title h2 {
    font-size: 20px;
  }

  .laluna-form-title h3 {
    font-size: 28px;
  }

  .laluna-discount-number {
    font-size: 60px;
  }

  .laluna-btn-submit {
    font-size: 16px;
    padding: 12px;
  }

  .laluna-hero-image-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px;
  }

  .laluna-hero-img {
    max-width: 320px;
  }

  .laluna-hero-right-col {
    max-width: 100%;
    margin-left: 0;
    align-items: center;
  }

  .laluna-hero-logo-box {
    justify-content: center;
    align-self: center;
    align-items: stretch;
    margin-top: 0px;
  }

  .laluna-hero-divider {
    height: auto;
    min-height: 30px;
  }

  .laluna-hero-desc-text {
    max-width: 100%;
    font-size: 14px;
  }

  /* Features */
  .laluna-features {
    padding: 25px 15px;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 0;
  }

  .laluna-feature-item {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 0 5px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .laluna-feature-icon-wrapper {
    width: 68px;
    height: 68px;
    padding: 16px;
    margin-bottom: 16px;
  }

  .laluna-feature-title {
    font-size: 14px;
  }

  .laluna-feature-image-card {
    height: 220px;
  }

  .laluna-feature-text-card {
    padding: 25px;
  }

  /* Video */
  .laluna-video-wrapper {
    height: 280px;
  }

  .laluna-play-btn {
    width: 60px;
    height: 60px;
  }

  /* Flavors */
  .laluna-flavors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .laluna-flavor-box {
    height: 180px;
  }

  .laluna-flavor-cake {
    width: 140px;
    height: 140px;
  }

  .laluna-flavor-text {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Gallery */
  .laluna-gallery-columns {
    flex-direction: column;
  }

  .laluna-gallery-item {
    height: 220px;
  }

  .laluna-gallery-desc {
    padding: 15px;
    font-size: 14px;
  }

  /* Reviews */
  .laluna-testimonial-slide {
    padding: 25px 20px;
  }

  .laluna-testimonial-text {
    font-size: 14px;
  }

  .laluna-testimonial-author {
    font-size: 16px;
  }

  .laluna-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  /* News */
  .laluna-news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .laluna-news-text {
    padding: 20px 15px;
    font-size: 14px;
  }

  /* Bottom Order Section */
  .laluna-order-title {
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .laluna-bottom-form-wrapper {
    gap: 20px;
  }

  .laluna-bottom-left {
    padding: 0;
  }

  .laluna-bottom-product-img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .laluna-bottom-info {
    width: 100%;
  }

  .laluna-bottom-info-header {
    justify-content: center;
    align-self: center;
    align-items: stretch;
    margin-top: 20px;
  }

  .laluna-bottom-desc-image {
    padding: 20px;
    margin-top: 0;
  }

  .laluna-bottom-divider {
    height: auto;
    min-height: 30px;
  }

  .laluna-bottom-right {
    padding: 0;
  }

  .laluna-bottom-right .laluna-form-box {
    border-radius: 20px 0 20px 0;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .laluna-container {
    padding: 0 12px;
  }

  .laluna-section {
    padding: 25px 0;
  }

  .laluna-section-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  /* Header */
  .laluna-header .logo {
    font-size: 26px;
  }

  .laluna-nav a {
    font-size: 11px;
    letter-spacing: 0;
  }

  /* Hero */
  .laluna-hero-image-wrapper {
    padding: 20px;
    border-radius: 12px;
  }

  .laluna-hero-img {
    max-width: 260px;
  }

  .laluna-hero-logo-img {
    height: auto;
    max-width: 200px;
  }

  .laluna-hero-desc-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .laluna-form-box {
    padding: 20px;
  }

  .laluna-form-title h2 {
    font-size: 18px;
  }

  .laluna-form-title h3 {
    font-size: 24px;
  }

  .laluna-discount-number {
    font-size: 50px;
  }

  .laluna-discount-text {
    font-size: 14px;
  }

  .laluna-input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .laluna-btn-submit {
    font-size: 14px;
    padding: 10px;
  }

  /* Features */
  .laluna-features {
    padding: 20px 12px;
    flex-wrap: wrap;
    gap: 0;
  }

  .laluna-feature-item {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 0 5px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .laluna-feature-icon-wrapper {
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
    padding: 16px;
  }

  .laluna-feature-title {
    font-size: 13px;
  }

  .laluna-feature-image-card {
    height: 180px;
  }

  .laluna-feature-text-card {
    padding: 20px;
    font-size: 14px;
  }

  /* Video */
  .laluna-video-wrapper {
    height: 200px;
  }

  .laluna-play-btn {
    width: 45px;
    height: 45px;
  }

  /* Flavors */
  .laluna-flavors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .laluna-flavor-box {
    height: 150px;
    margin-bottom: 10px;
  }

  .laluna-flavor-cake {
    width: 110px;
    height: 110px;
    box-shadow: none;
  }

  .laluna-flavor-text {
    padding: 6px 12px;
    font-size: 11px;
  }

  /* Gallery */
  .laluna-gallery-item {
    height: 180px;
  }

  /* Reviews */
  .laluna-testimonial-slide {
    padding: 20px 15px;
  }

  .laluna-testimonial-text {
    font-size: 13px;
  }

  .laluna-testimonial-author {
    font-size: 14px;
  }

  .laluna-slider-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .laluna-slider-btn.prev {
    left: 5px;
  }

  .laluna-slider-btn.next {
    right: 5px;
  }

  /* News */
  .laluna-news-text {
    padding: 15px 12px;
    font-size: 13px;
    width: 85%;
    margin-top: -30px;
  }

  /* Bottom Section */
  .laluna-order-title {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .laluna-bottom-left {
    padding: 0;
  }

  .laluna-bottom-product-img {
    width: 100%;
    height: auto;
  }

  .laluna-bottom-desc-image {
    padding: 15px;
  }

  .laluna-bottom-logo {
    height: auto;
    max-height: 40px;
    max-width: 180px;
  }

  .laluna-bottom-right .laluna-form-box {
    padding: 20px;
  }

  /* Sticky Button */
  .laluna-sticky-btn {
    bottom: 10px;
    right: 10px;
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  /* Hiệu ứng scroll trên mobile cho hộp bánh và bánh */
  .laluna-flavor-item.is-active .laluna-flavor-cake {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.9);
  }
  .laluna-flavor-item.is-active .laluna-flavor-text {
    opacity: 1;
    transform: translateY(0);
  }
  .laluna-flavor-item.is-active .laluna-box-hover {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
    position: relative;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .laluna-hero-image-wrapper {
    padding: 15px;
  }

  .laluna-hero-img {
    max-width: 220px;
  }

  .laluna-form-box {
    padding: 15px;
  }

  .laluna-form-title h2 {
    font-size: 16px;
  }

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

  .laluna-discount-number {
    font-size: 42px;
  }

  .laluna-flavor-cake {
    width: 90px;
    height: 90px;
  }

  .laluna-bottom-product-img {
    width: 100%;
  }
}

.laluna-news-text p {
  margin: 0px;
}

/* ==============================================================
   CSS overrides moved from page.laluna.liquid
   ============================================================== */
/* Ẩn Banner & Breadcrumbs mặc định của theme */
#breadcrums, .breadcrumb-wrapper, .breadcrumb { display: none !important; }

/* Ghi đè CSS làm cho Header chung trong suốt để lộ nền sao, đồng thời đưa z-index lên cao nhất */
.mainHeader--height, #main-header, .inner-header {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 9999 !important;
  position: relative !important;
}

/* Đổi màu chữ thanh menu sang màu sáng (trắng) và hover màu vàng */
#main-header .inner-main-menu > li > a {
  color: #ffffff !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

#main-header .inner-main-menu > li:hover > a, 
#main-header .inner-main-menu > li.active > a {
  color: #c6a76c !important; /* Gold */
}

/* Hover effect cho hộp bánh */
.laluna-box-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}
.laluna-box-hover:hover {
  filter: brightness(1.2) drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
  transform: translateY(-10px) scale(1.03);
  z-index: 10;
  position: relative;
}
.harafunnel-mb{
  left: 5px;
  bottom: 5px;
}