:root {
  --pink-banner: #e88ea3;
  --pink: #e58aa0;
  --pink-deep: #d97690;
  --cream: #fdf5ec;
  --cream-soft: #fbeee4;
  --peach: #fbe7dd;
  --blush: #f9e4e7;
  --ink: #4a4441;
  --ink-soft: #7c736d;
  --gold: #c79a5c;
  --white: #fffdfb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.script { font-family: 'Dancing Script', cursive; }
.serif  { font-family: 'Playfair Display', serif; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- announcement ---------- */
.announce {
  background: var(--pink-banner);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 11px 12px;
  font-weight: 500;
}
.announce span { opacity: 0.85; margin: 0 10px; }

/* ---------- nav ---------- */
header { background: var(--cream); position: sticky; top: 0; z-index: 50; }
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 0;
}
.nav-left { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink-deep); }
.nav-links a.active { border-bottom: 1.5px solid var(--pink-deep); padding-bottom: 4px; }

.logo { text-align: center; line-height: 1; text-decoration: none; }
.logo .name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--pink);
  font-weight: 600;
}
.logo .name b { color: var(--pink-deep); }
.logo .sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--pink);
  margin-top: 2px;
  padding-left: 0.5em;
}

.nav-icons { display: flex; gap: 22px; justify-content: flex-end; align-items: center; }
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--ink);
  position: relative; line-height: 0;
}
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -8px; right: -9px;
  background: var(--pink); color: #fff; font-size: 0.6rem;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
}

/* ---------- hamburger + mobile menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 60;
}
.hamburger span {
  display: block; height: 2px; width: 24px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  padding: 10px 0;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--pink-deep); }
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 540px;
}
.hero-copy { padding: 40px 0; }
.hero-copy .kicker {
  font-size: 2.2rem; color: var(--pink); display: block; margin-bottom: -6px;
}
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5.2rem;
  line-height: 0.98;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-copy .lead {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 26px 0 30px;
  line-height: 1.9;
}
.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  padding: 15px 34px;
  border-radius: 3px;
  transition: background 0.25s, transform 0.25s;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--pink-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--pink-deep);
  border: 1.5px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: #fff; }

.hero-img {
  position: relative;
  height: 100%;
  min-height: 540px;
}
.hero-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 40% 30px;
}

/* ---------- feature strip ---------- */
.features {
  background: var(--peach);
  padding: 34px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature .fi { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.feature .fi svg { width: 30px; height: 30px; }
.feature h4 {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 3px;
}
.feature p { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }

/* ---------- section headings ---------- */
section { padding: 70px 0; }
.sec-head { text-align: center; margin-bottom: 46px; }
.sec-head .eyebrow { font-size: 1.9rem; color: var(--pink); display: block; line-height: 1; }
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.heart { color: var(--gold); }

/* ---------- collections ---------- */
.collections { background: var(--cream-soft); }
.col-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.col-card {
  border-radius: 8px 8px 4px 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(180,120,120,0.08);
}
.col-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(180,120,120,0.16); }
.col-thumb { aspect-ratio: 3/4; }
.col-body { text-align: center; padding: 16px 6px 18px; }
.col-body .cname {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; line-height: 1.15; font-weight: 600;
  text-transform: uppercase; margin-bottom: 8px;
}
.col-body .shop {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- favorites / product grid ---------- */
.fav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product { text-align: center; }
.product .pthumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}
.product .pthumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(0,0,0,0.05));
}
.like {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: #fff; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.like svg { width: 15px; height: 15px; color: var(--pink); }
.product .pname {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.78rem; font-weight: 500;
}
.product .price { color: var(--ink-soft); font-size: 0.85rem; margin-top: 2px; }
.center-btn { text-align: center; margin-top: 44px; }

/* ---------- story ---------- */
.story { background: var(--blush); padding: 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: stretch; }
.story-img {
  background: linear-gradient(135deg, #f3c6cf, #e9a6b6);
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.story-img .polaroid {
  background: #fff; padding: 12px 12px 40px; border-radius: 2px;
  box-shadow: 0 16px 40px rgba(150,80,90,0.25);
  transform: rotate(-5deg);
  width: 210px;
}
.story-img .polaroid .ph {
  aspect-ratio: 1;
  background: linear-gradient(150deg, #f6b8b0, #d98a8f);
  display: flex; align-items: center; justify-content: center;
}
.story-img .polaroid .ph svg { width: 48px; height: 48px; color: rgba(255,255,255,0.85); }
.story-copy { padding: 70px 60px; }
.story-copy .eyebrow { font-size: 2rem; color: var(--pink); display: block; margin-bottom: 10px; }
.story-copy p { max-width: 460px; margin-bottom: 26px; color: var(--ink); }

/* ---------- inner page banner ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
  text-align: center;
  padding: 70px 0 60px;
}
.page-hero .eyebrow { font-size: 1.9rem; color: var(--pink); display: block; line-height: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
}
.page-hero p { color: var(--ink-soft); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 16px; }
.breadcrumb a { color: var(--pink-deep); text-decoration: none; }

/* ---------- placeholder (to be filled later) ---------- */
.placeholder {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 50px 28px 10px;
}
.placeholder .badge {
  display: inline-block;
  background: var(--peach);
  color: var(--pink-deep);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px; margin-bottom: 22px;
}
.placeholder h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 14px; color: var(--ink); }
.placeholder p { color: var(--ink-soft); margin-bottom: 26px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ecd9cd; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; font-family: 'Jost', sans-serif; font-size: 1rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { color: var(--pink); font-size: 1.4rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 940px; margin: 0 auto; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid #e3cfc4; border-radius: 5px;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; background: #fff; color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--pink); }
.field textarea { min-height: 140px; resize: vertical; }
.contact-info .ci-item { margin-bottom: 24px; }
.contact-info h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 5px; }
.contact-info p, .contact-info a { color: var(--ink-soft); font-size: 0.9rem; text-decoration: none; }

/* ---------- footer ---------- */
footer { background: var(--cream); padding: 60px 0 0; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 46px; }
.foot-news .eyebrow { font-size: 1.6rem; color: var(--pink); display: block; margin-bottom: 8px; }
.foot-news p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; max-width: 240px; }
.news-form { display: flex; max-width: 280px; border: 1px solid #e3cfc4; border-radius: 4px; overflow: hidden; background: #fff; }
.news-form input { flex: 1; border: none; padding: 12px 14px; font-family: inherit; font-size: 0.8rem; outline: none; background: transparent; }
.news-form button { background: var(--pink); border: none; color: #fff; padding: 0 16px; cursor: pointer; font-size: 1rem; }
.news-form button:hover { background: var(--pink-deep); }
.foot-col h5 { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; color: var(--pink-deep); margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { text-decoration: none; color: var(--ink-soft); font-size: 0.82rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--pink-deep); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--peach);
  display: flex; align-items: center; justify-content: center; color: var(--pink-deep);
  transition: background 0.2s, color 0.2s;
}
.socials a:hover { background: var(--pink); color: #fff; }
.socials svg { width: 16px; height: 16px; }
.foot-logo .name { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--pink); font-weight: 600; }
.foot-bar-wrap { background: var(--pink-banner); }
.foot-bar-wrap .wrap { display: flex; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.foot-bar-wrap span { font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.9); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy h1 { font-size: 3.6rem; }
  .hero-img { min-height: 360px; order: -1; }
  .hero-img img { position: static; border-radius: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .col-grid { grid-template-columns: repeat(3, 1fr); }
  .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { padding: 50px 28px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .page-hero h1 { font-size: 2.6rem; }
}
@media (max-width: 560px) {
  .hero-copy h1 { font-size: 2.9rem; }
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .fav-grid { grid-template-columns: 1fr 1fr; }
  .sec-head h2 { font-size: 2.1rem; }
}

/* ---------- add to bag button ---------- */
.add-btn {
  margin-top: 10px;
  background: transparent;
  color: var(--pink-deep);
  border: 1.5px solid var(--pink);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-family: 'Jost', sans-serif;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.add-btn:hover { background: var(--pink); color: #fff; }

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(74,68,65,0.4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 70;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 90vw;
  background: var(--cream);
  z-index: 71;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -12px 0 40px rgba(150,100,100,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid #eeddd2;
}
.cart-head h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink);
}
.cart-head h3 .script { color: var(--gold); font-size: 1.2rem; }
.cart-close {
  background: none; border: none; font-size: 1.8rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer;
}
.cart-close:hover { color: var(--pink-deep); }

.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--ink-soft); }
.cart-empty p { margin-bottom: 18px; }

.cart-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid #eeddd2; position: relative; }
.cart-thumb {
  width: 64px; height: 64px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(150deg,#f6cdd6,#e79fb0);
  background-size: cover; background-position: center;
}
.cart-line-info { flex: 1; }
.cart-line-title { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.cart-line-price { font-size: 0.85rem; color: var(--ink-soft); margin: 3px 0 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid #e3cfc4; border-radius: 4px; overflow: hidden; }
.qty button {
  background: none; border: none; width: 26px; height: 26px; cursor: pointer;
  color: var(--ink); font-size: 0.95rem; line-height: 1;
}
.qty button:hover { background: var(--peach); color: var(--pink-deep); }
.qty span { min-width: 26px; text-align: center; font-size: 0.82rem; }
.cart-remove {
  position: absolute; top: 18px; right: 0;
  background: none; border: none; font-size: 1.1rem; color: var(--ink-soft); cursor: pointer;
}
.cart-remove:hover { color: var(--pink-deep); }

.cart-foot { padding: 20px 24px 24px; border-top: 1px solid #eeddd2; background: var(--cream-soft); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.cart-subtotal span:first-child { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; }
.cart-subtotal-val { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--ink); }
.cart-note { font-size: 0.72rem; color: var(--ink-soft); margin-bottom: 16px; }
.cart-checkout { width: 100%; text-align: center; }
.cart-checkout:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ---------- preview toast ---------- */
.cart-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 6px;
  font-size: 0.8rem; max-width: 88vw; text-align: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s, transform 0.25s; z-index: 90;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cart-toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- form confirmation note ---------- */
.form-note { display: none; margin-top: 10px; font-size: 0.82rem; color: var(--pink-deep); }
