:root {
  --dark-purple: #49148A;
  --light-purple: #AA76B6;
  --accent-pink: #E6A3C4;
  --background: #F2F2F4;
  --text-color: #3F3C45;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

/* ── NAV ── */
.navbar {
  background: #fff;
  border-bottom: 2px solid var(--accent-pink);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--dark-purple) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--accent-pink);
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--dark-purple) !important;
}

.btn-cart {
  background: var(--dark-purple);
  color: #fff !important;
  border-radius: 30px;
  padding: 0.4rem 1.2rem !important;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.btn-cart:hover {
  background: var(--light-purple);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--light-purple) 60%, var(--accent-pink) 100%);
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -60px;
  left: 5%;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-pink);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: #fff;
  color: var(--dark-purple);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--dark-purple);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-blob {
  width: 100%;
  max-width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  margin: 0 auto;
  animation: blobFloat 6s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 55%;
    transform: translateY(0);
  }

  50% {
    border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
    transform: translateY(-18px);
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-purple);
  color: #fff;
  padding: 1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.92;
  justify-content: center;
}

.trust-item i {
  color: var(--accent-pink);
  font-size: 1.1rem;
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  background: var(--accent-pink);
  color: var(--dark-purple);
  border-radius: 20px;
  padding: 0.25rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

/* ── PRODUCTS ── */
.products {
  background: #fff;
  padding: 6rem 0;
}

.products .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

.product-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(73, 20, 138, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--background);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(73, 20, 138, 0.15);
}

.product-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #f3eeff 0%, #fce8f3 100%);
}

.product-card .card-body {
  padding: 1.4rem;
}

.product-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark-purple);
  margin-bottom: 0.3rem;
}

.product-card .card-text {
  font-size: 0.85rem;
  color: #7a7585;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-price {
  font-weight: 700;
  color: var(--dark-purple);
  font-size: 1.15rem;
}

.btn-add {
  background: var(--dark-purple);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-add:hover {
  background: var(--light-purple);
  color: #fff;
}

/* ── STORY ── */
.story {
  background: var(--background);
  padding: 6rem 0;
}

.story-img-wrap {
  background: linear-gradient(135deg, var(--light-purple), var(--accent-pink));
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  font-size: 8rem;
  line-height: 1;
}

.story h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-purple);
  margin-bottom: 1rem;
}

.story p {
  line-height: 1.8;
  color: #5e5a68;
  margin-bottom: 1.2rem;
}

.story-stat {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--accent-pink);
  margin-bottom: 1rem;
}

.story-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark-purple);
  font-weight: 700;
  line-height: 1;
}

.story-stat .stat-label {
  font-size: 0.82rem;
  color: #9c96a8;
  margin-top: 0.2rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(135deg, var(--dark-purple), #6b2fa0);
  color: #fff;
  padding: 6rem 0;
}

.testimonials .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(6px);
}

.review-stars {
  color: var(--accent-pink);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.reviewer {
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: #fff;
  padding: 5rem 0;
}

.newsletter-box {
  background: linear-gradient(135deg, #fce8f3, #f3eeff);
  border-radius: 28px;
  padding: 3.5rem;
  text-align: center;
}

.newsletter-box h2 {
  color: var(--dark-purple);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.newsletter-box p {
  color: #7a7585;
  max-width: 440px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  border: 2px solid var(--light-purple);
  border-radius: 30px;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
  outline: none;
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--dark-purple);
}

.newsletter-form button {
  background: var(--dark-purple);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--light-purple);
}

/* ── FOOTER ── */
footer {
  background: var(--text-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

footer .footer-brand {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

footer p {
  font-size: 0.85rem;
  line-height: 1.7;
}

footer h6 {
  color: var(--accent-pink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--accent-pink);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  margin-right: 0.4rem;
  font-size: 0.95rem;
  transition: background 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-pink);
  color: var(--dark-purple);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.55;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .hero-blob {
    height: 280px;
    font-size: 6rem;
  }

  .hero {
    text-align: center;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .newsletter-box {
    padding: 2rem 1.5rem;
  }
}