* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #faf6fb;
  color: #222;
  line-height: 1.6;
}

a {
  color: #b30f7b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* navbar container: smaller vertical padding */
.navbar {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 1rem;
  /* was 0.75rem 1rem */
}

/* logo box: shorter height */
.logo {
  width: 300px;
  height: 70px;
  /* was 100px */
  display: flex;
  align-items: center;
}

/* keep logo scaling nicely inside */
.logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

/* nav items: fit nicely on one line */
.nav-links {
  display: flex;
  gap: 1.2rem;     /* adjust spacing as needed */
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.9rem;
}

.nav-links a {
  white-space: nowrap;
}

/* small screens: stack nav below logo */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .logo {
    width: 220px;
    height: 80px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.btn-primary {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #b30f7b;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #930a63;
}

.btn-outline {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #b30f7b;
  color: #b30f7b;
  font-weight: 500;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: #ffe7f5;
}

main {
  max-width: 1120px;
  margin: 1.5rem auto 2.5rem;
  padding: 0 1rem;
}

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

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: #b30f7b;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.hero-benefits {
  margin: 1rem 0 1.5rem;
  list-style: disc inside;
  font-size: 0.95rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* hero image container */
.hero-img {
  width: 100%;
  border-radius: 24px;
  /* remove fixed height & background so it can follow image size */
  height: auto;
  background: none;
  padding: 0;
  display: block;
}

/* responsive banner image */
.hero-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #b30f7b;
}

.section h3 {
  font-size: 1.1rem;
  margin: 0.75rem 0 0.4rem;
  color: #7a1060;
}

.section p {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.section ul {
  list-style: disc inside;
  font-size: 0.95rem;
  margin-left: 0.25rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid #f0d7eb;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #ffe7f5;
  color: #b30f7b;
  margin-bottom: 0.4rem;
}

.small {
  font-size: 0.85rem;
  color: #666;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #f2c2e5;
  background: #fff;
}

footer {
  border-top: 1px solid #eee;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

footer a {
  color: #b30f7b;
}

/* Forms */

form {
  display: grid;
  gap: 0.75rem;
  max-width: 480px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Size table */

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  background: #fff;
}

.size-table th,
.size-table td {
  border: 1px solid #eee;
  padding: 0.5rem 0.6rem;
  text-align: center;
}

.size-table th {
  background: #ffe7f5;
}

/* Shop */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0d7eb;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* product image wrapper (already there) */
.product-image {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  background: #f7d8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b30f7b;
  font-size: 0.9rem;
  text-align: center;
  overflow: hidden;      /* hide any overflow */
}

/* make product images scale nicely */
.product-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;   /* keep aspect ratio, no cropping */
}


.price {
  font-weight: 700;
  color: #b30f7b;
  font-size: 0.95rem;
}

.bundle-note {
  font-size: 0.85rem;
  color: #555;
}

/* FAQs */

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid #f0d7eb;
  margin-bottom: 0.6rem;
}

.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

/* Reviews */

.review {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0d7eb;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-img {
    order: -1;
    /* remove height: 220px; */
  }

  .nav-links {
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

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

/* toggle button (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #b30f7b;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9;
}

/* --- MOBILE NAV --- */
@media (max-width: 768px) {
  .navbar {
    max-width: 100%;
    padding: 0.4rem 1rem;
    flex-direction: row;
    align-items: center;
  }

  .logo {
    width: 200px;
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: 260px;
      height: 100vh;
      background: #ffffff;
      box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
      /* previously: padding: 5rem 1.25rem 1.5rem; */
      padding: 1.25rem 1.25rem 1.5rem;
      /* smaller top padding */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      /* push items to top */
      gap: 1rem;
      transform: translateX(100%);
      transition: transform 0.25s ease-out;
      z-index: 10;
    }

  .nav-links a {
    font-size: 0.95rem;
  }

  /* open state */
  .nav-links.open {
    transform: translateX(0);
  }

  .nav-overlay.show {
    display: block;
  }

  /* animate hamburger to "X" */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
