:root {
  --bg: #fff4ed;
  --card: #ffffff;
  --border: #ffd7e6;
  --text: #4a4a4a;
  --accent: #ff8fb6;
  --shadow: 0 6px 18px rgba(255, 153, 170, 0.25);
}

/* Base Reset */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Quicksand", sans-serif;
}
a {
  text-decoration: none;
  color: #5b2145;
  transition: 0.2s;
}
a:hover {
  color: #ff6fa8;
}

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  background: #ffdbe9cc;
  border-bottom: 2px dashed #ffc1d7;
  backdrop-filter: blur(6px);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.brand {
  font-family: "Baloo 2";
  font-size: 1.2rem;
  color: #5b2145;
}
.spacer {
  flex: 1;
}
.menu a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.menu a.active {
  background: #ffe1ed;
}
.cta {
  background: linear-gradient(90deg, #ff9fbe, #ffc1a6);
  box-shadow: var(--shadow);
  color: #5b2145;
}

/* General Card Style */
.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
}

/* HOME PAGE */
main {
  max-width: 1100px;
  margin: 18px auto;
  padding: 0 16px;
  display: grid;
  gap: 24px;
}

.hero {
  display: grid;
  gap: 16px;
  align-items: center;
}
.hero-left {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}
.hero-left img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 223, 240, 0.6),
    rgba(255, 240, 220, 0.5)
  );
}
.btn-transparent {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 12px 22px;
  font-weight: 800;
  color: #5b2145;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}
.hero-right h1 {
  font-family: "Baloo 2";
  color: #5b2145;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.hero-right p {
  line-height: 1.6;
}
.about {
  text-align: center;
}
.about h1 {
  font-family: "Baloo 2";
  color: #5b2145;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.about p {
  line-height: 1.7;
}

/* SHOP PAGE */
.product {
  max-width: 1100px;
  margin: 18px auto;
  padding: 0 16px;
  display: grid;
  gap: 18px;
}
@media (min-width: 960px) {
  .product {
    grid-template-columns: 1.05fr 1fr;
  }
}
.gallery img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}
.details {
  padding: 16px;
}
.price-range {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: #6b2d55;
}
.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 14px;
}
.pill {
  border: 2px dashed #ffc1d7;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill:hover {
  transform: translateY(-1px);
}
.pill.active {
  background: #ffe6ef;
  border-color: #ffb6d0;
  color: #5b2145;
  box-shadow: var(--shadow);
}
.purchase-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  background: #ff9fbe;
  color: #5b2145;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.btn-price {
  margin-left: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  border: 2px dashed #ffc1d7;
}
.pay-btn {
  background: linear-gradient(90deg, #ffc1a6, #ff9fbe);
}
.info {
  margin-top: 10px;
}
.accent {
  font-family: "Baloo 2";
  color: #5b2145;
  margin: 10px 0 6px;
}
.muted {
  opacity: 0.9;
  margin: 0 0 8px;
}
.bullets {
  padding-left: 18px;
  margin: 4px 0 12px;
}
.bullets li {
  margin: 4px 0;
}

/* CONTACT PAGE */
.contact {
  text-align: center;
}
.contact h1 {
  font-family: "Baloo 2";
  color: #5b2145;
  font-size: 2rem;
  margin-bottom: 12px;
}
.info-block {
  margin-top: 14px;
  text-align: left;
  display: inline-block;
}
.info-block p {
  margin: 10px 0 18px;
}
.cute-footer {
  margin-top: 22px;
  font-style: italic;
  font-weight: 600;
  color: #5b2145;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact h1 {
    font-size: 1.7rem;
  }
  .about h1 {
    font-size: 1.6rem;
  }
  .hero-right h1 {
    font-size: 1.5rem;
  }
}
/* ============================
   MOBILE NAVIGATION (Hamburger)
   ============================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #5b2145;
  border-radius: 8px;
  transition: 0.3s ease;
}

/* Hidden mobile menu by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffdbe9;
  border-bottom: 2px dashed #ffc1d7;
  padding: 12px 16px;
}

/* Mobile menu links */
.mobile-menu a {
  padding: 10px 0;
  font-weight: 700;
  color: #5b2145;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================
   RESPONSIVE BREAKPOINT
   ============================ */
@media (max-width: 850px) {
  /* Hide desktop menu */
  .menu {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Show mobile menu when active */
  .mobile-menu.show {
    display: flex;
  }
}

