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

:root {
  --rose: #c9697b;
  --rose-dark: #8f4354;
  --rose-pale: #fbf0f2;
  --ink: #2f292a;
  --muted: #6f6567;
  --cream: #fffaf8;
  --line: #eadcdf;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.announcement {
  padding: 10px 20px;
  color: #fff;
  background: var(--rose-dark);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement span { color: #f8c5ce; margin: 0 10px; }

.site-header {
  min-height: 112px;
  padding: 18px clamp(22px, 6vw, 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--rose);
  line-height: 1;
}
.brand strong { font: 400 43px/1 Allura, cursive; }
.brand small { margin-top: 7px; font-size: 9px; letter-spacing: .34em; font-weight: 700; }
.brand i { margin-top: 7px; font-style: normal; font-size: 9px; }
.site-header nav, .site-footer nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; }
.site-header nav a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-header nav a:hover, .site-header nav a:focus { color: var(--rose-dark); }

main { min-height: 60vh; }
.breadcrumbs {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a { color: var(--rose-dark); }

.product-page {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}
.product-gallery { min-width: 0; }
.product-main-image {
  aspect-ratio: 1 / 1;
  padding: clamp(12px, 2vw, 24px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f1ee;
}
.product-main-image img { width: 100%; height: 100%; object-fit: contain; }
.product-thumbs { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.product-thumbs button {
  aspect-ratio: 1.2;
  padding: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f8f1ee;
  cursor: pointer;
}
.product-thumbs button.active { border-color: var(--rose); }
.product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow { margin: 0 0 14px; color: var(--rose-dark); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-copy h1, .content-card h1, .story-panel h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
}
.product-copy h1 { max-width: 620px; font-size: clamp(38px, 5vw, 64px); }
.product-lead { max-width: 620px; margin: 22px 0; color: var(--muted); font-size: 16px; }
.stock-price { margin: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.stock-price strong { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; }
.stock-badge {
  padding: 8px 11px;
  color: var(--rose-dark);
  border: 1px solid #e6b4be;
  background: var(--rose-pale);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stock-badge.sold-out { color: #6f6668; border-color: #d9d2d3; background: #f2eeee; }
.product-details { margin: 24px 0 28px; padding: 0; list-style: none; }
.product-details li { margin: 9px 0; padding-left: 25px; position: relative; color: #514a4b; }
.product-details li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 700; }
.buy-button, .text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 30px;
  color: #fff;
  background: var(--rose-dark);
  border: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.buy-button:hover, .buy-button:focus, .text-button:hover, .text-button:focus { background: #6f3040; }
.buy-button.disabled { color: #7c7375; background: #ddd6d7; pointer-events: none; }
.checkout-note { margin-top: 13px; color: var(--muted); font-size: 11px; }
.story-panel {
  padding: 70px max(24px, calc((100vw - 900px) / 2));
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.story-panel h2 { font-size: clamp(34px, 4vw, 48px); }
.story-panel > p:not(.eyebrow) { max-width: 780px; margin: 20px auto 28px; color: var(--muted); }
.story-panel div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.story-panel div span { padding: 8px 13px; color: var(--rose-dark); background: #fff; border: 1px solid var(--line); font-size: 11px; font-weight: 600; }

.content-main { padding-bottom: 80px; background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.content-card {
  width: min(850px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: clamp(30px, 6vw, 74px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(97, 58, 68, .08);
}
.content-card h1 { margin-bottom: 35px; font-size: clamp(40px, 6vw, 66px); }
.content-card h2 { margin: 36px 0 9px; color: var(--rose-dark); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; }
.content-card p, .content-card li { color: #5f5759; }
.content-card .lead { margin-top: -18px; font-size: 18px; }
.content-card a { color: var(--rose-dark); font-weight: 600; }
.steps { padding: 0; list-style: none; counter-reset: steps; }
.steps li { margin: 23px 0; padding: 0 0 22px 54px; position: relative; border-bottom: 1px solid var(--line); counter-increment: steps; }
.steps li::before { content: counter(steps); width: 35px; height: 35px; position: absolute; left: 0; top: -3px; display: grid; place-items: center; color: #fff; background: var(--rose); border-radius: 50%; font-weight: 700; }
.steps strong, .steps span { display: block; }
.steps strong { margin-bottom: 5px; color: var(--ink); }
.safety-note { margin: 30px 0; padding: 20px 23px; color: #5d4d50; background: var(--rose-pale); border-left: 4px solid var(--rose); }

.contact-form { margin-top: 34px; display: grid; gap: 20px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 700; }
.contact-form label span { color: var(--muted); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d9cacc;
  border-radius: 0;
  font: 400 15px/1.4 Montserrat, Arial, sans-serif;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid #e7acb8; outline-offset: 2px; }
.contact-form button { min-height: 52px; color: #fff; background: var(--rose-dark); border: 0; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
#form-status { margin: 0; font-size: 13px; }

.site-footer { padding: 50px 25px 36px; color: #f6e9ec; text-align: center; background: #33292c; }
.brand-light { margin: 0 auto; color: #f2a7b6; }
.site-footer > p { margin: 17px auto; }
.site-footer nav { margin: 24px auto; }
.site-footer nav a { color: #fff; font-size: 11px; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.site-footer > p:last-child { color: #cbbfc2; font-size: 11px; }
.site-footer > p:last-child a { color: inherit; }

@media (max-width: 820px) {
  .site-header { min-height: auto; padding: 15px 20px; flex-direction: column; gap: 15px; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 9px; }
  .brand strong { font-size: 38px; }
  .product-page { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .product-copy h1 { font-size: 42px; }
}

@media (max-width: 520px) {
  .announcement { font-size: 9px; }
  .site-header nav { display: grid; grid-template-columns: repeat(2, 1fr); text-align: center; }
  .product-page, .breadcrumbs, .content-card { width: min(100% - 24px, 850px); }
  .product-main-image { aspect-ratio: .92; }
  .stock-price { align-items: flex-start; flex-direction: column-reverse; gap: 10px; }
  .buy-button { width: 100%; }
  .content-card { padding: 28px 22px; }
  .content-card h1 { font-size: 39px; }
  .site-footer nav { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
