/* ---------- Global reset-ish ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #3A3A3A;           /* Elegant charcoal */
  background: #FFF7FB;      /* very soft pink */
  line-height: 1.6;
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: #FF3FA6;   /* signature pink */
  color: #FFFFFF;
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  background: transparent;
  color: #FF3FA6;
  border: 1px solid #FF3FA6;
}

.btn-ghost:hover {
  background: #FFE0F1;
}

.btn-link {
  background: transparent;
  color: #FF3FA6;
  padding-left: 0;
  padding-right: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-disabled {
  background: #F5F5F5;
  color: #9CA3AF;
  border: 1px dashed #D1D5DB;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 251, 0.9);
  border-bottom: 1px solid #FFC8E0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

/* Brand in the nav */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  height: 40px;       /* adjust to make logo smaller or larger */
  width: auto;
  display: block;
}

.brand-mark {
  width: 25px;
  height: 15px;
  border-radius: 50%;
  background: #FF3FA6;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: #3A3A3A;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #E69BB2;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #3A3A3A;
}

.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  padding: 0 0.3rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #FF3FA6;
  color: #FFFFFF;
}

.nav-links a:hover {
  color: #FF3FA6;
}
.nav-cta {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  margin-left: 0.5rem;
}


/* ---------- Hero ---------- */
.hero {
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  color: #FF3FA6;
  margin: 0 0 0.4rem;
}

.hero h1 {
  margin: 0 0 0.7rem;
  font-size: 2.1rem;
}

.hero-body {
  margin: 0 0 0.7rem;
  color: #4B5563;
}

.hero-highlight {
  margin: 0 0 1rem;
  color: #FF3FA6;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #FFE6F3;
  color: #A21B5B;
}

/* hero image (kept under control so a logo doesn't fill the screen) */
.hero-image img {
  width: 100%;
  max-height: 320px;
  border-radius: 1.4rem;
  object-fit: cover;
  border: 1px solid #FFC8E0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

/* ---------- Sections ---------- */
.section {
  padding: 2.2rem 0;
}

.section-header {
  text-align: left;
  margin-bottom: 1.6rem;
}

.section-header h2 {
  margin: 0 0 0.3rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: #4B5563;
}

/* Highlights */
.section-highlights {
  background: #FFF0F6;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.highlight-card {
  background: #FFFFFF;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #FFC8E0;
  font-size: 0.93rem;
}

/* ---------- Shop / products ---------- */
.section-shop {
  background: #FFFFFF;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #FFE0F1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Product images inside cards */
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 0.6rem;
  border: 1px solid #FFE0F1;
}

.product-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A21B5B;
  margin: 0;
}

.product-card h3 {
  margin: 0.2rem 0;
  font-size: 1rem;
}

.product-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #4B5563;
}

.product-meta {
  margin: 0;
  font-size: 0.85rem;
  color: #4B5563;
}

.product-price {
  margin: 0.3rem 0 0.1rem;
  font-weight: 700;
  color: #3A3A3A;
}

.product-note {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  color: #6B7280;
}

.product-card .btn {
  margin-top: auto;
}

/* ---------- Featured products strip ---------- */
.featured-section {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #FFE0F1;
}

.featured-header {
  text-align: center;
  margin-bottom: 1.6rem;
}

.featured-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #FF3FA6;
  margin: 0 0 0.4rem;
}

.featured-header h3 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.featured-text {
  margin: 0;
  color: #4B5563;
  font-size: 0.95rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.featured-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid #FFE0F1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

/* Featured product images – default for all */
.featured-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Only for very tall images like the plumper photo */
.featured-card img.featured-img-tall {
  height: 260px;           /* a bit taller */
  object-position: center top; /* keep the applicator visible */
}


.featured-body {
  padding: 0.9rem 1rem 1rem;
}

.featured-body h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.featured-price {
  margin: 0;
  font-weight: 700;
  color: #FF3FA6;
}

/* Badges */
.featured-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
}

.featured-badge-bestseller {
  background: #E69BB2; /* dusty rose */
}

.featured-badge-new {
  background: #FF3FA6; /* signature pink */
}

.featured-actions {
  margin-top: 1.5rem;
  text-align: center;
}

/* ---------- Cart panel ---------- */
.cart-panel {
  margin-bottom: 2rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: #FFF0F6;
  border: 1px solid #FFE0F1;
}

.cart-panel h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.cart-intro {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #4B5563;
}

.cart-empty {
  font-size: 0.9rem;
  color: #6B7280;
}

.cart-content {
  margin-top: 0.6rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.cart-table th,
.cart-table td {
  padding: 0.45rem 0.4rem;
  text-align: left;
}

.cart-table thead {
  border-bottom: 1px solid #E5E7EB;
}

.cart-table tbody tr:nth-child(even) {
  background: #FFFFFF;
}

.cart-table tbody tr:nth-child(odd) {
  background: #FFF7FB;
}
.cart-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-qty-btn {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-qty-btn:hover {
  background: #FFE6F3;
  border-color: #FFC8E0;
}

.cart-qty-value {
  min-width: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
}


.cart-remove-btn {
  background: transparent;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-size: 0.8rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.bank-details {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.bank-line {
  margin: 0;
}

.cart-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cart-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #6B7280;
}

@media (max-width: 650px) {
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) {
    display: none; /* hide single-item price on small screens */
  }
}

/* Toast message for cart actions */
.cart-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  background: #3A3A3A;
  color: #FFFFFF;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- How it works ---------- */
.section-how {
  background: #FFF7FB;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.step-card {
  background: #FFFFFF;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #FFE0F1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #FFC8E0;
  color: #A21B5B;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

/* ---------- About ---------- */
.section-about {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
}

.about-text h3 {
  margin-bottom: 0.3rem;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #4B5563;
}

.about-image img {
  width: 100%;
  border-radius: 1.4rem;
  border: 1px solid #FFC8E0;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

/* ---------- Contact ---------- */
.section-contact {
  background: #FFF0F6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid #FFE0F1;
}

.contact-card ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
}

.contact-card li {
  margin-bottom: 0.4rem;
}

/* ---------- Legal ---------- */
.section-legal {
  background: #FFFFFF;
}

.legal-text p {
  color: #4B5563;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid #FFC8E0;
  background: #FFFFFF;
}

.footer-inner {
  padding: 1rem 0 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6B7280;
}

.footer-note {
  max-width: 520px;
  margin: 0.3rem auto 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2rem;
  }

  .highlights-grid,
  .product-grid,
  .steps-grid,
  .contact-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none; /* simple mobile nav behaviour */
  }
}

@media (max-width: 650px) {
  .highlights-grid,
  .product-grid,
  .steps-grid,
  .contact-grid,
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 1rem;
  }
}
