@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --forest: #1a3c34;
  --forest-deep: #102924;
  --forest-mid: #24483f;
  --rose: #c45c76;
  --rose-deep: #a84660;
  --rose-soft: #f7e7eb;
  --rose-pale: #fbf6f7;
  --gold: #c4a35a;
  --gold-soft: #e8d7a8;
  --cream: #fffbfa;
  --paper: #f6f1ee;
  --ink: #1a3c34;
  --muted: #5c6d68;
  --line: #e8ddd8;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 60, 52, 0.06);
  --shadow-md: 0 10px 28px rgba(26, 60, 52, 0.1);
  --shadow-lg: 0 22px 50px rgba(26, 60, 52, 0.14);
  --radius: 10px;
  --ease: 220ms ease;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: 0; background: none; }
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; left: 12px; top: -40px; z-index: 100;
  background: var(--forest); color: #fff; padding: 8px 14px;
}
.skip-link:focus { top: 8px; }

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 26px; border-radius: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-deep); box-shadow: 0 8px 20px rgba(196, 92, 118, 0.28); }
.btn-forest { background: var(--forest); color: #fff; width: 100%; }
.btn-forest:hover { background: var(--forest-mid); }
.btn-ghost { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.btn-ghost:hover { background: var(--forest); color: #fff; }

.topbar {
  background: var(--rose-soft);
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 36px;
  gap: 12px;
}
.topbar-left { font-weight: 400; color: var(--muted); }
.topbar-center { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.topbar-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; min-height: 32px; }
.topbar a:hover { color: var(--rose); }
.topbar svg { width: 15px; height: 15px; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-main {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.logo-wrap {
  width: 86px; height: 86px; border-radius: 50%;
  overflow: hidden; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center;
}
.logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.brand-block { text-align: center; }
.brand-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: 0.01em;
  margin: 0;
}
.brand-tag {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.header-actions { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--forest); border-radius: 50%; position: relative;
  transition: background var(--ease), color var(--ease);
}
.icon-btn:hover { background: var(--rose-pale); color: var(--rose); }
.icon-btn svg { width: 22px; height: 22px; }
.badge-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 18px; height: 18px; border-radius: 99px;
  background: var(--rose); color: #fff;
  font-size: 10px; font-weight: 700;
  display: grid; place-items: center; padding: 0 4px;
}
.menu-toggle { display: none; }

.main-nav { background: var(--forest); }
.nav-inner {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  min-height: 48px;
}
.nav-inner a {
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 18px; min-height: 44px;
  display: inline-flex; align-items: center;
  position: relative;
}
.nav-inner a::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 8px;
  height: 1.5px; background: var(--rose); transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-inner a:hover::after,
.nav-inner a.active::after { transform: scaleX(1); }

.hero { position: relative; overflow: hidden; background: #d9cfc6; }
.hero-track { display: flex; transition: transform 700ms cubic-bezier(.22,.61,.36,1); }
.hero-slide {
  min-width: 100%; position: relative; height: min(78vh, 680px);
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,251,248,.82) 0%, rgba(255,251,248,.46) 38%, rgba(255,251,248,0) 62%);
}
.hero-copy {
  position: absolute; z-index: 2; left: max(40px, calc((100% - 1240px) / 2));
  top: 50%; transform: translateY(-50%);
  max-width: 520px;
}
.eyebrow {
  color: var(--rose); font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600; margin: 0 0 10px;
}
.hero-copy h1 {
  font-family: var(--serif); font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05; margin: 0 0 14px; color: var(--forest); font-weight: 600;
}
.hero-copy p {
  margin: 0 0 26px; color: var(--muted); font-size: 15px; letter-spacing: 0.04em;
}
.hero-nav {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: flex; align-items: center; justify-content: space-between; padding: 0 16px;
}
.hero-arrow {
  pointer-events: auto; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.78); color: var(--forest);
  display: grid; place-items: center; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm); transition: background var(--ease);
}
.hero-arrow:hover { background: #fff; }
.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 20px; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.55);
}
.hero-dots button.active { background: var(--rose); }

.section { padding: 72px 0; }
.section-head {
  text-align: center; margin-bottom: 42px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.section-head h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 38px);
  font-weight: 600; color: var(--forest); letter-spacing: 0.08em;
  text-transform: uppercase; margin: 0;
}
.flourish { color: var(--rose); flex: 0 0 auto; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}
.cat-card { display: block; }
.cat-photo {
  width: min(100%, 190px); aspect-ratio: 1; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid #f3c5d0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.cat-card:hover .cat-photo {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.cat-photo img { width: 100%; height: 100%; object-fit: cover; }
.cat-card h3 {
  margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--forest);
}
.cat-card span {
  color: var(--rose); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-media {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper);
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--forest); color: #fff;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 8px; font-weight: 600;
}
.wish-btn {
  position: absolute; top: 8px; right: 8px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--forest);
  display: grid; place-items: center;
}
.wish-btn:hover, .wish-btn.active { color: var(--rose); }
.product-body { padding: 14px 12px 16px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.product-body h3 {
  font-size: 14px; font-weight: 500; margin: 0 0 6px; color: var(--forest);
  min-height: 40px;
}
.price { font-weight: 700; color: var(--forest); margin: 0 0 12px; }
.price s { color: var(--muted); font-weight: 400; margin-right: 6px; font-size: 12px; }

.usp {
  background: var(--forest);
  color: #fff;
  padding: 28px 0;
}
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-item svg { width: 28px; height: 28px; color: var(--gold-soft); flex: 0 0 auto; }
.usp-item h3 { margin: 0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.usp-item p { margin: 2px 0 0; font-size: 12px; color: rgba(255,255,255,.72); }

.story {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.story-copy h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 46px);
  margin: 8px 0 16px; text-transform: none; letter-spacing: 0;
}
.story-copy p { color: var(--muted); margin: 0 0 14px; }
.story-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.story-photos img { width: 100%; height: 280px; object-fit: cover; }

.t-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.t-card {
  background: #fff; border: 1px solid var(--line); padding: 28px 22px;
  text-align: center; min-height: 220px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }
.t-card p { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--forest); margin: 0 0 16px; line-height: 1.45; }
.t-card cite { font-style: normal; font-size: 12px; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }

.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig-strip a { aspect-ratio: 1; overflow: hidden; display: block; }
.ig-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.ig-strip a:hover img { transform: scale(1.06); }

.site-footer { background: var(--forest); color: rgba(255,255,255,.86); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1.1fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.site-footer h3 {
  color: #fff; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 18px; font-weight: 600;
}
.site-footer p, .site-footer li { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.78); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; display: grid; place-items: center; color: #fff;
}
.socials a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.contact-row svg { width: 16px; height: 16px; color: #f3c5d0; margin-top: 3px; flex: 0 0 auto; }
.news-form { display: flex; flex-direction: column; gap: 10px; }
.news-form input {
  height: 44px; padding: 0 14px; border: 0; background: #fff; color: var(--forest);
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.65);
  gap: 16px; flex-wrap: wrap;
}
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-icons span {
  background: #fff; color: var(--forest); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; padding: 4px 8px; border-radius: 4px;
}

.overlay {
  position: fixed; inset: 0; background: rgba(16, 24, 22, .46);
  z-index: 80; opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.overlay.open { opacity: 1; pointer-events: auto; }
.search-panel, .cart-drawer, .mobile-drawer {
  position: fixed; z-index: 90; background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: transform var(--ease), opacity var(--ease);
}
.search-panel.open, .cart-drawer.open, .mobile-drawer.open {
  transform: none; opacity: 1; pointer-events: auto;
}
.search-panel {
  top: 0; left: 0; right: 0; padding: 28px 0 20px;
}
.search-row { display: flex; gap: 10px; align-items: center; }
.search-row input {
  flex: 1; height: 52px; border: 1px solid var(--line); padding: 0 16px; font-size: 16px;
}
.search-results { margin-top: 16px; display: grid; gap: 8px; max-height: 50vh; overflow: auto; }
.search-item { display: flex; gap: 12px; align-items: center; padding: 8px; }
.search-item img { width: 56px; height: 72px; object-fit: cover; }
.cart-drawer, .mobile-drawer {
  top: 0; right: 0; width: min(400px, 100%); height: 100%;
  display: flex; flex-direction: column;
}
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 24px; color: var(--forest);
}
.drawer-body { padding: 16px 20px; overflow: auto; flex: 1; }
.drawer-foot { padding: 16px 20px 24px; border-top: 1px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; margin-bottom: 14px; }
.cart-line img { width: 72px; height: 92px; object-fit: cover; }
.qty { display: inline-flex; border: 1px solid var(--line); }
.qty button, .qty span { width: 32px; height: 32px; display: grid; place-items: center; }
.empty-note { color: var(--muted); text-align: center; padding: 40px 10px; }

.toast {
  position: fixed; bottom: 92px; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--forest); color: #fff; padding: 12px 18px; border-radius: 6px;
  z-index: 100; opacity: 0; pointer-events: none; transition: all var(--ease);
  font-size: 13px;
}
.toast.show { opacity: 1; transform: translateX(-50%); }
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

.page-hero {
  background: linear-gradient(180deg, var(--rose-pale), var(--cream));
  padding: 48px 0 36px; text-align: center; border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 8px; color: var(--forest);
}
.crumb { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.crumb a:hover { color: var(--rose); }
.page { padding: 48px 0 72px; }
.prose { max-width: 820px; margin: 0 auto; color: var(--muted); }
.prose h2 { font-family: var(--serif); color: var(--forest); font-size: 28px; margin: 32px 0 10px; }
.prose h3 { color: var(--forest); font-size: 16px; margin: 22px 0 8px; letter-spacing: 0.04em; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.value-card { background: #fff; border: 1px solid var(--line); padding: 22px; }
.value-card h3 { margin: 0 0 8px; color: var(--forest); font-family: var(--serif); font-size: 22px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; }
.contact-card { background: #fff; border: 1px solid var(--line); padding: 28px; }
.form-grid { display: grid; gap: 14px; }
.form-grid label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; border: 1px solid var(--line); padding: 12px 14px; font-size: 15px; background: #fff;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--paper); }
.product-info h1 { font-family: var(--serif); font-size: 40px; margin: 0 0 8px; }
.product-info .sku { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.product-info .price { font-size: 24px; margin: 16px 0; }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 20px 0; }
.cart-table { width: 100%; border-collapse: collapse; background: #fff; }
.cart-table th, .cart-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-table img { width: 72px; height: 92px; object-fit: cover; }
.checkout-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; }
.summary-box { background: #fff; border: 1px solid var(--line); padding: 24px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  min-height: 40px; padding: 0 16px; border: 1px solid var(--line); background: #fff;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--forest);
}
.chip.active, .chip:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .topbar-inner { grid-template-columns: 1fr; text-align: center; padding: 8px 0; }
  .topbar-left, .topbar-right { display: none; }
  .header-main { grid-template-columns: auto 1fr auto; }
  .logo-wrap { width: 58px; height: 58px; }
  .brand-name { font-size: 22px; }
  .brand-tag { display: none; }
  .menu-toggle { display: grid; }
  .main-nav { display: none; }
  .hero-slide { height: 70vh; }
  .hero-copy { left: 24px; right: 24px; max-width: none; }
  .hero-slide::after {
    background: linear-gradient(180deg, rgba(255,251,248,.15), rgba(255,251,248,.82) 70%);
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .usp-grid, .t-grid, .ig-strip { grid-template-columns: 1fr 1fr; }
  .story, .contact-grid, .product-layout, .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 48px 0; }
  .values { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important; scroll-behavior: auto !important;
  }
}
