
  :root {
    --brand: #e85d8f;
    --brand-dark: #c64a78;
    --text: #1f2937;
    --light: #fff;
    --muted: #6b7280;
    --bg: #fff6f9;
  }

  .hero-lipfiller {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    overflow: hidden;
    padding: 0;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: clamp(16px, 3vw, 56px);
  }

  .hero-copy {
    font-family: Inter, sans-serif;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
  }

 .price-box {
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(232, 93, 143, 0.4); 
  max-width: 340px;
  transition: box-shadow 0.3s ease-in-out; 
}

.price-box .old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 16px;
}

.price-box .new-price {
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.price-box .cta {
  background: var(--brand);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  animation: pulse 1s infinite;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}



  .eyebrow {
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--brand);
  }

  .headline {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.1;
    margin: .2em 0 .4em;
    color: var(--text);
  }

  .subhead {
    font-size: clamp(15px, 1.2vw, 18px);
    color: #444;
    max-width: 50ch;
  }

  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    justify-content: center;
  }

  .badge {
    background: var(--brand);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    flex: 1 1 auto;
    text-align: center;
    min-width: 150px;
  }

  .hero-image {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
  }

  .hero-image img {
    height: 100%;
    width: auto;
    max-width: none;
    border-radius: 0;
    object-fit: cover;
    object-position: right center;
  }

  .countdown-timer {
    font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(232, 93, 143, 0.4); 
  display: inline-block;
  transition: box-shadow 0.3s ease-in-out;
  }

  .countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .offer-text {
    font-size: 18px;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 600;
  }

  .reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }

  .review-box {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none; 
    display: none;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(232, 93, 143, 0.4); 
  }

  .review-box:hover {
    transform: scale(1.02);
  }

  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .review-header .author {
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    margin-right: 10px;
  }

  .review-header .stars {
    color: #f39c12;
  }

  .review-body {
    font-size: 14px;
    color: var(--muted);
  }

  .review-footer {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
  }
	
  .brand-name {
    font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--brand);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  }

  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 0;
    }

    .hero-image {
      height: 60vh;
      width: 100%;
    }

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

    .price-box {
      margin: 0 auto;
    }

    .hero-copy {
      gap: 24px;
      padding: 20px;
      align-items: center;
    }

    .badges {
      flex-direction: column;
      align-items: center;
    }

	  .brand-name {
    position: relative; 
    top: auto; 
    left: 50%;
    transform: translateX(-50%); 
    margin-top: 0;
    margin-bottom: 10px; 
  }
	  

    .badge {
      min-width: auto;
      width: 80%;
    }

    .countdown-container {
      display: block;
      margin-top: 20px;
      text-align: center;
    }
  }
