/** Shopify CDN: Minification failed

Line 797:0 Unexpected "`"

**/
/* 
  Glow Up Landing Page Styles
  Add this file to: assets/glow-up-landing.css
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */
.glow-up-landing * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.glow-up-landing {
  font-family: 'Harmonia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #303030;
  background-color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: linear-gradient(90deg, #3ceb78 0%, #ca91f6 100%);
  padding: 12px 20px;
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.hourglass-icon {
  width: 20px;
  height: 20px;
}

.announcement-text {
  color: white;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.announcement-light {
  font-weight: 400;
}

/* ========================================
   NAVIGATION
   ======================================== */
.top-nav {
  background-color: #fff7f9;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f4f4f4;
}

.nav-link {
  color: #303030;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f4235c;
}

.logo-link {
  margin: 0 auto;
}

.logo {
  height: 50px;
  width: auto;
}

/* ============================================
   FEATURED PRODUCT LANDING SECTION
   High-Converting Single Column Product Section
   ============================================ */

.featured-product-landing {
  padding: 80px 20px;
  background: var(--white);
}

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

/* ============================================
   GALLERY
   ============================================ */
.fpl-gallery {
  margin-bottom: 40px;
}

.fpl-main-image {
  margin-bottom: 16px;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.fpl-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fpl-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fpl-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.fpl-thumb:hover {
  border-color: var(--gold);
}

.fpl-thumb.active {
  border-color: var(--black);
}

/* ============================================
   PRODUCT INFO
   ============================================ */
.fpl-info {
  text-align: center;
}

/* Trust Badges */
.fpl-trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}

.trust-icon {
  color: var(--success-green);
  font-weight: 700;
  font-size: 14px;
}

.trust-badge:last-child .trust-icon {
  color: var(--gold);
}

/* Title */
.fpl-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* Rating */
.fpl-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.fpl-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
}

.fpl-rating-text {
  font-size: 14px;
  color: var(--charcoal);
}

/* Pricing */
.fpl-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.fpl-price-compare {
  font-size: 24px;
  color: var(--medium-gray);
  text-decoration: line-through;
  font-family: var(--font-heading);
}

.fpl-price-current {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-heading);
}

.fpl-savings {
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Urgency Banner */
.fpl-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--lavender);
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid var(--gold);
}

.urgency-icon {
  font-size: 28px;
}

.urgency-text {
  text-align: left;
}

.urgency-text strong {
  display: block;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.urgency-text p {
  margin: 0;
  font-size: 14px;
  color: var(--charcoal);
}

/* Benefits */
.fpl-benefits {
  background: var(--light-gray);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.benefits-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
  font-family: var(--font-heading);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  color: var(--success-green);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Variants */
.fpl-variants {
  margin-bottom: 24px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.variant-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--black);
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.variant-select:hover {
  border-color: var(--gold);
}

.variant-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Quantity */
.fpl-quantity {
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.quantity-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 150px;
}

.qty-btn {
  width: 50px;
  height: 50px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.qty-btn:hover {
  background: var(--gold);
}

.qty-btn:first-child {
  border-radius: 4px 0 0 4px;
}

.qty-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.qty-input {
  width: 80px;
  height: 50px;
  text-align: center;
  border: 2px solid var(--black);
  border-left: none;
  border-right: none;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
}

.qty-input:focus {
  outline: none;
}

/* Add to Cart Button */
.fpl-add-to-cart {
  width: 100%;
  max-width: 500px;
  padding: 20px 32px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 16px;
}

.fpl-add-to-cart:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.fpl-add-to-cart:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cart-icon {
  font-size: 20px;
}

/* Secondary CTA */
.fpl-secondary-cta {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  border-radius: 4px;
  margin-bottom: 32px;
}

.fpl-secondary-cta:hover {
  background: var(--black);
  color: var(--white);
}

/* Guarantee */
.fpl-guarantee {
  background: var(--light-gray);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: left;
}

.guarantee-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.guarantee-text strong {
  display: block;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.guarantee-text p {
  margin: 0;
  font-size: 14px;
  color: var(--charcoal);
}

/* Social Proof */
.fpl-social-proof {
  padding: 24px;
  background: var(--lavender);
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.social-proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.proof-text {
  display: block;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .featured-product-landing {
    padding: 60px 20px;
  }
  
  .fpl-title {
    font-size: 28px;
  }
  
  .fpl-price-current {
    font-size: 32px;
  }
  
  .fpl-trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .fpl-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .fpl-urgency {
    flex-direction: column;
    text-align: center;
  }
  
  .urgency-text {
    text-align: center;
  }
  
  .fpl-benefits {
    padding: 24px;
  }
  
  .benefits-list {
    padding-left: 0;
  }
}



/* ============================================
   MASKS EXPLAINER SECTION
   ============================================ */
.masks-explainer-section {
  padding: 80px 20px;
  background: var(--white);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--charcoal);
  max-width: 600px;
  margin: -40px auto 60px;
}

.masks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.mask-card {
  background: var(--light-gray);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.mask-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.mask-card.featured {
  border-color: var(--black);
  background: var(--lavender);
}

.mask-image-wrapper {
  position: relative;
  overflow: hidden;
}

.mask-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mask-card:hover .mask-image {
  transform: scale(1.05);
}

.mask-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.mask-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}

.mask-content {
  padding: 32px;
}

.mask-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
  font-family: var(--font-heading);
}

.mask-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.mask-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.mask-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.4;
}

.benefit-check {
  color: var(--success-green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.mask-cta {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--black);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.mask-cta:hover {
  background: var(--white);
  color: var(--black);
}

.mask-card.featured .mask-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.mask-card.featured .mask-cta:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Responsive for masks section */
@media (max-width: 1024px) {
  .masks-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .masks-explainer-section {
    padding: 60px 20px;
  }
}
```


/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000000;
}

.hero-description {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #303030;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
  background-color: #fffcfd;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 40px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 520px;
}

.customer-avatars {
  display: flex;
  margin-right: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.stars-rating {
  flex: 1;
}

.stars {
  color: #fcd933;
  font-size: 14px;
  margin-bottom: 5px;
}

.customer-count {
  font-size: 17px;
  color: #303030;
}

/* ========================================
   BENEFITS GRID
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #f4235c;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 16px;
  color: #303030;
  margin: 0;
}

/* ========================================
   BUNDLES SECTION
   ======================================== */
.bundles-section {
  background-color: #fff2f6;
  padding: 60px 40px;
  text-align: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.bundle-card {
  background-color: white;
  border: 1px solid #e0dedf;
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bundle-card.featured {
  border: 3px solid #fbcd5b;
  background: linear-gradient(to bottom, white 0%, white 90%, #fff9e6 100%);
}

.best-deal-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.star-icon {
  width: 28px;
  height: 28px;
}

.popular-badge,
.value-badge {
  background-color: #303030;
  color: white;
  padding: 8px 20px;
  border-radius: 7px 7px 0 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: -30px -20px 20px;
}

.bundle-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 150px;
}

.bundle-product-img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.bundle-product-img-small {
  width: 50px;
  height: auto;
  border-radius: 5px;
}

.bundle-product-img-tiny {
  width: 35px;
  height: auto;
  border-radius: 3px;
}

.bundle-details {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.bundle-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #303030;
}

.bundle-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #303030;
}

.bundle-btn {
  background-color: #f4235c;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  max-width: 300px;
}

.bundle-btn:hover {
  background-color: #d91e4e;
  transform: scale(1.05);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  margin-top: 50px;
  text-align: center;
}

.cta-primary {
  background-color: #f4235c;
  color: white;
  border: none;
  border-radius: 60px;
  padding: 20px 60px;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(244, 35, 92, 0.3);
}

.cta-primary:hover {
  background-color: #d91e4e;
  transform: scale(1.05);
}

.guarantee-text {
  margin-top: 20px;
  font-size: 17px;
  color: #303030;
}

.check-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #40e87b;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 15px;
  font-size: 10px;
  margin-right: 5px;
}

/* ========================================
   ACCORDION SECTION
   ======================================== */
.accordion-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 40px;
}

.accordion-item {
  background-color: white;
  border: 1px solid #f4f4f4;
  border-radius: 9px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #303030;
  text-align: left;
}

.accordion-icon {
  font-size: 14px;
  color: #303030;
  transition: transform 0.3s;
}

.accordion-content {
  display: none;
  padding: 0 30px 20px;
}

.accordion-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #303030;
}

/* ========================================
   GUARANTEE BANNER
   ======================================== */
.guarantee-banner {
  background: linear-gradient(90deg, #3ceb78 0%, #ca91f6 100%);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 60px 40px;
  border-radius: 10px;
}

.guarantee-icon {
  width: 90px;
  height: auto;
}

.guarantee-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section {
  background-color: #fadef4;
  padding: 80px 40px;
}

.results-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.result-card {
  background-color: white;
  border: 1px solid #f4f4f4;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.result-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #000000;
}

.before-after {
  display: flex;
  gap: 15px;
}

.ba-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.ba-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid white;
}

.ba-badge.before {
  background-color: #ff5252;
  color: white;
}

.ba-badge.after {
  background-color: #40e87b;
  color: white;
}

/* ========================================
   BODY AREAS SECTION
   ======================================== */
.body-areas-section {
  padding: 80px 40px;
  background-color: white;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 30px;
}

.area-card {
  background-color: white;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.area-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.area-name {
  padding: 15px 10px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #303030;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-footer {
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  color: #303030;
  margin-top: 40px;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
  background-color: #ffeeed;
  padding: 80px 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.step-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.step-badge {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #303030;
  color: white;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #303030;
  margin: 60px 20px 15px;
}

.step-description {
  font-size: 17px;
  line-height: 1.4;
  color: #585858;
  padding: 0 20px 30px;
}

/* ========================================
   SOCIAL SECTION
   ======================================== */
.social-section {
  padding: 80px 40px;
  background-color: white;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.social-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s;
}

.social-image:hover {
  transform: scale(1.05);
}

/* ========================================
   INGREDIENTS SECTION
   ======================================== */
.ingredients-section {
  background-color: #f5f5f5;
  padding: 80px 40px;
}

.ingredients-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
  align-items: center;
}

.ingredients-hero {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.ingredients-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #303030;
  margin-bottom: 30px;
}

.ingredient-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ingredient-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ingredient-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 70px;
  flex-shrink: 0;
}

.ingredient-name {
  font-size: 21px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.ingredient-benefits {
  list-style: none;
  padding: 0;
}

.ingredient-benefits li {
  font-size: 17px;
  color: #303030;
  margin-bottom: 5px;
}

/* Features Bar */
.features-bar {
  background-color: #000000;
  padding: 30px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 10px;
}

.feature-item {
  text-align: center;
  color: white;
}

.feature-icon {
  margin-bottom: 10px;
}

.feature-text {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-section {
  padding: 80px 40px;
  background-color: white;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-card.our-product {
  border: 2px solid #fcd933;
}

.comparison-card.alternatives {
  border: 2px solid #b9b9b9;
}

.comparison-product-image {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
}

.comparison-title {
  font-size: 21px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
}

.comparison-list {
  list-style: none;
  text-align: left;
  padding: 0;
}

.comparison-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #303030;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.comparison-list li.check::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #40e87b;
  font-weight: 700;
  font-size: 20px;
}

.comparison-list li.cross::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ff5252;
  font-weight: 700;
  font-size: 20px;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  background-color: #fadef4;
  padding: 80px 40px;
  text-align: center;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.review-card {
  background-color: white;
  border: 1px solid #ffe4eb;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
}

.review-stars {
  color: #fcd933;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 17px;
  line-height: 1.5;
  color: #303030;
  margin-bottom: 20px;
  min-height: 100px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.review-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #303030;
  margin-bottom: 5px;
}

.review-verified {
  font-size: 14px;
  color: #303030;
  display: flex;
  align-items: center;
  gap: 5px;
}

.verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #40e87b;
  color: white;
  border-radius: 50%;
  font-size: 10px;
}

.more-reviews-btn {
  background-color: white;
  color: #f4235c;
  border: 2px solid #f4235c;
  border-radius: 5px;
  padding: 15px 40px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 40px;
}

.more-reviews-btn:hover {
  background-color: #f4235c;
  color: white;
}

.customer-images {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.customer-image {
  width: 125px;
  height: 145px;
  object-fit: cover;
  border-radius: 10px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background-color: #ffecea;
  padding: 80px 40px;
}

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

.faq-item {
  background-color: #fff6f6;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 22px;
  font-weight: 400;
  color: #303030;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #ffeef0;
}

.faq-icon {
  font-size: 16px;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 30px 25px;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.6;
  color: #303030;
}

/* ========================================
   FOOTER
   ======================================== */
.landing-footer {
  background-color: white;
  padding: 40px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: #303030;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f4235c;
}

.copyright {
  color: #303030;
  font-size: 16px;
  margin: 0;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    max-width: 100%;
  }

  .ingredients-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 968px) {
  .bundles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .results-carousel {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .features-bar {
    flex-direction: column;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 36px;
  }

  .top-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .announcement-text {
    font-size: 14px;
  }

  .customer-images {
    gap: 10px;
  }

  .customer-image {
    width: 100px;
    height: 120px;
  }

  .hero-images-grid {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-primary {
    padding: 15px 40px;
    font-size: 18px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 18px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
