:root {
  --primary: #e14e6e;
  --secondary: #fff0f5;
  --accent: #ffd6e6;
  --cta: #ff6896;
  --cta-hover: #d13c60;
  --text: #222;
  --shadow: 0 4px 28px rgba(225,78,110,0.16);
  --magic: #fff7fb;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--secondary);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Magic sparkles (SVG) */
.magic-sparkles {
  position: fixed;
  z-index: 3;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  opacity: 0.6;
  animation: sparkle-move 8s linear infinite;
}
.sparkle-1 {
  top: 28px;
  left: 14vw;
  width: 38px;
  animation-delay: 0s;
}
.sparkle-2 {
  top: 180px;
  right: 44vw;
  width: 28px;
  animation-delay: 2.3s;
}
.sparkle-3 {
  bottom: 38px;
  left: 70vw;
  width: 22px;
  animation-delay: 4.3s;
}
@keyframes sparkle-move {
  0% { transform: scale(0.9) rotate(0deg);}
  13% { opacity: 1;}
  45% { opacity: 0.4;}
  60% { transform: scale(1.4) rotate(15deg);}
  100% { opacity: 0.6; transform: scale(0.8) rotate(-10deg);}
}

/* Background overlay with lips and pastel gradient */
.background-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #ffe3ec 0%, #f9c2d1 100%);
  background-image: url('https://png.pngtree.com/png-clipart/20220616/original/pngtree-cute-pink-lips-cartoon-clipart-png-image_8139456.png'), url('https://images.unsplash.com/photo-1519864600265-abb23847ef2c?auto=format&fit=crop&w=800&q=80');
  background-size: 170px, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: 95% 12%, center;
  background-blend-mode: lighten;
  opacity: 0.18;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 18px 18px 18px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CTA Button at the top */
.cta-top {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 14px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(225,78,110,0.13);
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  letter-spacing: 0.01em;
  border: none;
}
.cta-top i { margin-right: 8px; }
.cta-top:hover, .cta-btn:hover {
  background: var(--cta-hover);
  box-shadow: 0 4px 18px rgba(225,78,110,0.19);
  transform: scale(1.035);
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 26px;
}
.hero-icon img {
  width: 60px;
  margin-bottom: 7px;
  filter: drop-shadow(0 2px 10px #ffe6f4);
  animation: icon-pop 1.5s infinite alternate;
}
@keyframes icon-pop {
  0% { transform: scale(1);}
  100% { transform: scale(1.07);}
}
.headline-magic {
  color: #ffb3d6;
  margin-right: 7px;
  vertical-align: middle;
  font-size: 1.3em;
  animation: sparkle 1.5s infinite alternate;
}
@keyframes sparkle {
  0% { filter: drop-shadow(0 1px 7px #ffe6f4);}
  100% { filter: drop-shadow(0 2px 15px #fff6f9);}
}
.hero-section h1 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.subtitle {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.6;
}
.subtitle i {
  color: var(--primary);
  margin-right: 6px;
}
.highlight {
  background: #ffb3d6;
  color: #fff;
  padding: 0px 6px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  margin: 0 1px;
}
.hero-img {
  margin: 18px auto 0 auto;
  display: block;
  width: 88%;
  max-width: 330px;
  border-radius: 18px;
  box-shadow: 0 2px 22px #ffe9f5;
  border: 3px solid #fff0f5;
  object-fit: cover;
  transition: box-shadow 0.18s;
}

/* Locker Section */
.locker-section {
  text-align: center;
  width: 100%;
  background: #fff;
  /*border-radius: 15px; */
  box-shadow: var(--shadow);
  padding: 24px 20px 22px 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.locker-content h2 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
}
.locker-content h2 i {
  margin-right: 7px;
}
.locker-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 16px;
}
.locker-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.input-icon {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
}
.input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1em;
}
.locker-form input[type="email"] {
  padding: 12px 14px 12px 38px;
  border: 1.6px solid var(--accent);
  border-radius: 24px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  background: #f8f6f8;
  transition: border .18s;
}
.locker-form input[type="email"]:focus {
  border-color: var(--primary);
}
.cta-btn {
  background: var(--cta);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 11px 34px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  box-shadow: 0 2px 8px rgba(225,78,110,0.10);
}
.cta-btn i { margin-right: 7px; }
.cta-btn:active { transform: scale(0.98); }
.locker-success {
  text-align: center;
  color: var(--primary);
  font-size: 1.08rem;
  margin-top: 8px;
  position: relative;
}
.locker-success a {
  color: var(--cta);
  text-decoration: underline;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}
.magic-text {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--cta-hover);
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
}
.magic-animate {
  animation: magic-glow 1.2s cubic-bezier(.4,1.7,.9,-0.4) 1;
}
@keyframes magic-glow {
  0% { text-shadow: 0 0 0 #fff;}
  60% { text-shadow: 0 0 22px #fff, 0 0 8px #ff9dd1;}
  100% { text-shadow: 0 0 0 #fff;}
}

/* Testimonials */
.testimonials-section {
  margin-bottom: 18px;
  text-align: center;
}
.testimonials-section h3 {
  color: var(--primary);
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.testimonials-section h3 i { margin-right: 7px;}
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial {
  background: #ffff;
  border-radius: 10px;
  padding: 13px 11px 10px 11px;
  color: #3a3a3a;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(225,78,110,0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  box-shadow: 3px 2px 8px rgba(225, 78, 110, 0.08);
		
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff0f5;
  box-shadow: 0 1px 7px #ffe9f5;
}
.testimonial p {
  margin: 0;
  font-style: italic;
  font-size: 1em;
  flex: 1;
}
.testimonial span {
  display: block;
  color: var(--primary);
  font-size: 0.99rem;
  margin-top: 3px;
  font-weight: 600;
  min-width: 86px;
}
.testimonial span i { margin-right: 4px; }

/* Social Media */
.social-section {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  font-size: 1.05rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  transition: background 0.16s, color 0.16s, transform 0.13s;
  margin-right: 2px;
  box-shadow: 0 1px 6px rgba(225,78,110,0.07);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.18) rotate(-10deg);
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    max-width: 100vw;
    padding: 14px 2vw 8vw 2vw;
  }
  .hero-section h1 {
    font-size: 1.3rem;
  }
  .locker-section {
    padding: 18px 7px 16px 7px;
  }
  .hero-img {
    width: 99%;
    max-width: 99vw;
    min-width: 180px;
	height: 250px;
  }
  .testimonial {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 340px) {
  .cta-top {
    font-size: 1em;
    padding: 11px 10px;
  }
  .hero-section h1 { font-size: 0.98rem;}
}

/* Additional styles to enhance the landing page */

/* Header logo */
.site-header {
  text-align: center;
  padding: 16px 0;
}
.logo {
  height: 48px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

/* Fade-in animations */
.hero-section, .locker-section, .testimonials-section {
  animation: fadeInUp 0.9s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials enhancements */
.stars {
  color: gold;
  font-size: 1rem;
  margin: 2px 0;
}
.title {
  font-weight: 600;
  color: #d13c60;
  margin: 0 0 4px 0;
  font-size: 1.02rem;
}

/* Locker form note */
.form-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 6px;
  text-align: center;
  max-width: 300px;
}

/* Footer styles */
.footer {
  text-align: center;
  padding: 10px 10px;
  font-size: 0.9rem;
  color: #888;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  margin-top: 30px;
}
.footer a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 6px;
}
.footer a:hover {
  text-decoration: underline;
}

/* Visually hidden label for accessibility */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Adjustments for responsiveness */
@media (max-width: 480px) {
  .form-note {
    font-size: 0.78rem;
    margin-top: 13px;
  }
  .footer {
    font-size: 0.8rem;
  }
}


/* Additional styles to enhance the landing page */

/* Header logo */
.site-header {
  text-align: center;
  padding: 13px 0;
  background-color: #ff6896;;
  box-shadow: 0 2px 8px rgba(225, 78, 110, 0.08);
  margin-bottom: 10px;
}
.brand-header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  animation: fadeInDown 1s ease forwards;
}
.brand-icon {
  font-size: 1.6rem;
  color: var(--cta-hover);
}
.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.badge {
  background: #ffd6e6;
  color: #a00b4f;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keep previously added enhancements */
/* ... (existing styles from previous enhancement remain unchanged) */

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 1rem;
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.brand-header img {
  float: left;
  width: 100px;
  height: 50px;
  background: #555;
}
