@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;0,600;0,700;1,500&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --pink-900: #4a0e28;
  --pink-700: #d6336c;
  --pink-600: #e85d94;
  --pink-400: #f472b6;
  --pink-200: #fbcfe8;
  --pink-100: #fdf1f6;
  --rose-gold: #b76e79;
  --cream: #fffaf9;
  --ink: #2b1220;
  --grey: #8a7278;
  --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.3px; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 24px; }
.script { font-family: 'Fraunces', serif; font-style: italic; color: var(--pink-700); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 15px 30px; border-radius: 50px; transition: all 0.25s ease; border: 1px solid transparent; cursor: pointer;
}
.btn-solid { background: var(--pink-700); color: #fff; }
.btn-solid:hover { background: var(--pink-900); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--pink-900); border-color: var(--pink-700); }
.btn-outline:hover { background: var(--pink-700); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--pink-900); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 12.5px; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,250,249,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--pink-200); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 38px; height: 38px; }
.nav-logo-text { font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px; color: var(--pink-900); }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a { font-size: 13.5px; font-weight: 600; color: var(--ink); position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--pink-700); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.cart-link { position: relative; display: flex; align-items: center; }
.cart-link svg { width: 22px; height: 22px; stroke: var(--pink-900); }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--pink-700); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--pink-900); }

/* ---------- HERO (home) ---------- */
.hero { position: relative; overflow: hidden; padding: 100px 24px 130px; background: linear-gradient(160deg, var(--pink-100), var(--pink-200) 70%); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.55; z-index: 0; }
.hero-blob.b1 { width: 380px; height: 380px; background: var(--pink-400); top: -140px; right: -100px; }
.hero-blob.b2 { width: 280px; height: 280px; background: var(--rose-gold); bottom: -120px; left: -80px; opacity: 0.35; }
.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--pink-200); padding: 8px 18px; border-radius: 30px; font-size: 12.5px; font-weight: 700; color: var(--pink-700); margin-bottom: 26px; }
.hero h1 { font-size: clamp(36px, 6vw, 62px); line-height: 1.08; margin-bottom: 20px; color: var(--pink-900); }
.hero h1 em { color: var(--pink-700); font-style: italic; }
.hero p { color: var(--grey); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- PAGE HERO (interior) ---------- */
.page-hero { position: relative; padding: 70px 24px; text-align: center; background: linear-gradient(135deg, var(--pink-900), var(--pink-700)); color: #fff; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.page-hero span.tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink-200); display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 10px; }
.page-hero p { color: var(--pink-200); font-size: 14.5px; }
.crumb { font-size: 12px; color: var(--pink-200); margin-top: 14px; }
.crumb a { text-decoration: underline; }

/* ---------- SECTION HEAD ---------- */
.section-head { max-width: 580px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--pink-700); display: block; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); color: var(--pink-900); margin-bottom: 12px; }
.section-head p { color: var(--grey); font-size: 14.5px; }

/* ---------- CATEGORY TILES ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.cat-tile { border-radius: 24px; padding: 30px 20px; text-align: center; transition: transform 0.3s ease; }
.cat-tile:hover { transform: translateY(-6px); }
.cat-icon { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; }
.cat-icon svg { width: 26px; height: 26px; stroke: var(--pink-900); }
.cat-tile h3 { font-size: 15px; color: var(--pink-900); }
.ct1 { background: var(--pink-200); }
.ct2 { background: #ffe1ec; }
.ct3 { background: #f6d9e0; }
.ct4 { background: #fbe4e9; }
.ct5 { background: #ffeaf1; }

/* ---------- PRODUCT GRID / CARD ---------- */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-tab { padding: 10px 20px; border-radius: 30px; border: 1px solid var(--pink-200); background: #fff; font-size: 13px; font-weight: 600; color: var(--pink-900); cursor: pointer; transition: all 0.2s ease; }
.filter-tab:hover { border-color: var(--pink-700); }
.filter-tab.active { background: var(--pink-700); color: #fff; border-color: var(--pink-700); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.product-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--pink-200); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(214,51,108,0.14); }
.product-thumb { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.product-thumb svg { width: 38%; height: 38%; opacity: 0.9; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--pink-700); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-badge.new { background: var(--rose-gold); }
.product-body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.product-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--pink-700); }
.product-body h3 { font-size: 15.5px; color: var(--ink); font-weight: 600; font-family: 'DM Sans', sans-serif; }
.product-rating { font-size: 12px; color: var(--rose-gold); }
.product-price { font-size: 16px; font-weight: 700; color: var(--pink-900); margin-top: auto; }
.product-price span { font-size: 12px; color: var(--grey); font-weight: 400; text-decoration: line-through; margin-left: 6px; }
.add-cart-btn { margin-top: 8px; width: 100%; background: var(--pink-100); color: var(--pink-900); border: 1px solid var(--pink-200); border-radius: 30px; padding: 10px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; }
.add-cart-btn:hover { background: var(--pink-700); color: #fff; border-color: var(--pink-700); }

/* product thumb gradients */
.pg1 { background: linear-gradient(150deg, #f472b6, #d6336c); }
.pg2 { background: linear-gradient(150deg, #fbcfe8, #f472b6); }
.pg3 { background: linear-gradient(150deg, #ffe1ec, #b76e79); }
.pg4 { background: linear-gradient(150deg, #d6336c, #4a0e28); }
.pg5 { background: linear-gradient(150deg, #f6d9e0, #f472b6); }

/* ---------- VALUES STRIP ---------- */
.values-strip { background: var(--pink-900); padding: 46px 24px; }
.values-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; text-align: center; }
.values-grid div { color: #fff; }
.values-grid svg { width: 26px; height: 26px; stroke: var(--pink-200); margin: 0 auto 10px; }
.values-grid span { font-size: 12.5px; font-weight: 600; color: var(--pink-100); }

/* ---------- TESTIMONIALS / REVIEWS ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--pink-200); border-radius: 20px; padding: 26px 24px; }
.review-stars { color: var(--rose-gold); font-size: 13px; margin-bottom: 10px; }
.review-card p { font-size: 13.5px; color: var(--ink); margin-bottom: 16px; font-style: italic; }
.review-person { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--pink-400), var(--pink-700)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }
.review-person strong { font-size: 12.5px; display: block; }
.review-person span { font-size: 11px; color: var(--grey); }

/* ---------- NEWSLETTER ---------- */
.newsletter { background: linear-gradient(135deg, var(--pink-700), var(--pink-900)); border-radius: 28px; padding: 56px 40px; text-align: center; color: #fff; max-width: 900px; margin: 0 auto; }
.newsletter h2 { font-size: clamp(22px, 4vw, 32px); margin-bottom: 12px; }
.newsletter p { color: var(--pink-100); font-size: 14px; margin-bottom: 26px; }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 30px; border: none; font-family: 'DM Sans', sans-serif; font-size: 13.5px; }
.newsletter-msg { display: none; margin-top: 14px; font-size: 12.5px; color: var(--pink-100); }
.newsletter-msg.show { display: block; }

/* ---------- FORMS (generic) ---------- */
.form-panel { background: #fff; border: 1px solid var(--pink-200); border-radius: 20px; padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
label { font-size: 12px; font-weight: 700; color: var(--pink-900); text-transform: uppercase; letter-spacing: 0.4px; }
input, select, textarea {
  font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 12px 14px; border: 1px solid var(--pink-200); border-radius: 10px; background: var(--pink-100); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink-700); background: #fff; }
textarea { min-height: 90px; resize: vertical; }

/* ---------- CONFIRM / EMPTY STATES ---------- */
.confirm-box { display: none; background: var(--pink-100); border: 1px solid var(--pink-200); border-radius: 16px; padding: 26px; margin-top: 20px; }
.confirm-box.show { display: block; }
.confirm-box h3 { color: var(--pink-900); margin-bottom: 8px; }
.confirm-box p { font-size: 13px; color: var(--grey); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--grey); }
.empty-state svg { width: 60px; height: 60px; stroke: var(--pink-300); margin: 0 auto 16px; }

/* ---------- CART TABLE ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey); padding: 10px 8px; border-bottom: 1px solid var(--pink-200); }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--pink-100); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-thumb { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-thumb svg { width: 46%; height: 46%; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--pink-200); border-radius: 30px; overflow: hidden; }
.qty-control button { width: 28px; height: 28px; background: var(--pink-100); border: none; cursor: pointer; font-size: 15px; color: var(--pink-900); }
.qty-control span { width: 30px; text-align: center; font-size: 13px; font-weight: 600; }
.remove-btn { color: var(--pink-700); font-size: 12px; font-weight: 700; cursor: pointer; background: none; border: none; }
.cart-summary { background: var(--pink-100); border-radius: 16px; padding: 26px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 10px; color: var(--grey); }
.cart-summary-row.total { font-size: 17px; font-weight: 700; color: var(--pink-900); border-top: 1px solid var(--pink-200); padding-top: 14px; margin-top: 6px; }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; }
.blog-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--pink-200); transition: transform 0.3s ease; }
.blog-card:hover { transform: translateY(-6px); }
.blog-thumb { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
.blog-thumb svg { width: 30%; height: 30%; }
.blog-body { padding: 22px 22px 26px; }
.blog-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--pink-700); }
.blog-body h3 { font-size: 17px; margin: 8px 0 10px; color: var(--pink-900); }
.blog-body p { font-size: 13px; color: var(--grey); margin-bottom: 14px; }
.blog-body a { font-size: 12.5px; font-weight: 700; color: var(--pink-700); }

/* ---------- ACCORDION (FAQ) ---------- */
.accordion-item { border: 1px solid var(--pink-200); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.accordion-head { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--pink-900); }
.accordion-head svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.accordion-item.open .accordion-head svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 22px; }
.accordion-item.open .accordion-body { max-height: 200px; padding: 0 22px 20px; }
.accordion-body p { font-size: 13.5px; color: var(--grey); }

/* ---------- CTA BAND ---------- */
.cta-band { background: linear-gradient(135deg, var(--pink-700), var(--pink-900)); color: #fff; text-align: center; padding: 80px 24px; }
.cta-band h2 { font-size: clamp(24px,4vw,34px); margin-bottom: 14px; }
.cta-band p { color: var(--pink-100); margin-bottom: 28px; font-size: 14.5px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer { background: var(--pink-900); color: var(--pink-100); padding: 56px 24px 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; max-width: 1180px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 14px; }
.footer-logo svg { width: 32px; height: 32px; }
footer p { font-size: 12.5px; color: var(--pink-200); margin-bottom: 8px; }
footer h4 { font-family: 'DM Sans', sans-serif; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--pink-200); }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1180px; margin: 36px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11.5px; text-align: center; color: var(--pink-200); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--pink-200); padding: 10px 24px 20px; }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--pink-100); }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { border-bottom: 1px solid var(--pink-200); padding: 12px 0; }
}

/* ---------- FLOATER ---------- */
.fab-home {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.fab-home img { width: 60%; height: 60%; object-fit: contain; }
.fab-home:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 14px 30px rgba(0,0,0,0.35); }
.fab-tooltip {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  border: 5px solid transparent;
  border-top-color: #0a0a0a;
}
.fab-home:hover .fab-tooltip { opacity: 1; transform: translateY(0); }
@media (max-width: 600px) {
  .fab-home { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}
