:root {
  --cream: #fff8e9;
  --cream-2: #f8ead1;
  --cream-3: #ead7b7;
  --brown: #4a1f10;
  --brown-soft: #65331f;
  --copper: #b15c2f;
  --olive: #79764b;
  --olive-dark: #66613e;
  --paper: rgba(255, 249, 237, .96);
  --paper-solid: #fff7e7;
  --shadow: 0 18px 45px rgba(80, 42, 20, .22);
  --soft-shadow: 0 10px 28px rgba(80, 42, 20, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--brown);
  background: #f1dfc3;
  font-family: "DM Serif Display", Georgia, serif;
  overflow-x: hidden;
}
button, a { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 23%, rgba(255,255,255,.86), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #f6e7d0 0%, #f8ead4 48%, #ead5b6 100%);
}

.site-header {
  position: relative;
  z-index: 30;
  height: 118px;
  background: rgba(255, 248, 235, .94);
  box-shadow: 0 2px 14px rgba(87, 51, 29, .08);
  border-bottom: 1px solid rgba(110, 65, 37, .10);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  height: 118px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: center;
  position: relative;
}

.brand {
  grid-column: 2;
  justify-self: center;
  align-self: start;
  margin-top: 4px;
  width: 166px;
  height: 148px;
  display: grid;
  place-items: center;
  z-index: 4;
  filter: drop-shadow(0 5px 5px rgba(80, 42, 20, .08));
  transition: transform .2s ease;
}
.brand:hover { transform: translateY(-2px); }
.brand img { width: 160px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 19px;
}
.nav-left { grid-column: 1; justify-self: end; padding-right: 18px; }
.nav-right { grid-column: 3; justify-self: start; padding-left: 18px; gap: 35px; }
.nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 0 9px;
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: #b76631;
}
.nav-heart { color: #c56d39; font-size: 15px; margin-left: 5px; }

.header-leaf {
  position: absolute;
  color: #6d7445;
  font-size: 62px;
  line-height: 1;
  opacity: .95;
  pointer-events: none;
}
.header-leaf-left { left: 0; transform: rotate(-18deg); }
.header-leaf-right { right: 118px; transform: scaleX(-1) rotate(-18deg); }

.icon-button {
  width: 36px;
  height: 36px;
  border: 0;
  padding: 6px;
  background: transparent;
  color: #4b2418;
  cursor: pointer;
  transition: transform .18s ease;
}
.icon-button:hover { transform: translateY(-2px); }
.icon-button svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-button.bag { margin-left: -24px; }

.mobile-menu-button, .mobile-menu { display: none; }

.maintenance-stage {
  min-height: calc(100vh - 118px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 42px 24px 28px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 253, 246, .94) 0 34%, rgba(255,247,230,.82) 58%, rgba(234,211,179,.50) 100%),
    linear-gradient(180deg, #f6e7d0, #eddbbd);
}

.maintenance-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .34;
  background-image:
    radial-gradient(circle at 8% 14%, rgba(185,127,74,.20) 0 1px, transparent 1.3px),
    radial-gradient(circle at 82% 34%, rgba(185,127,74,.13) 0 1px, transparent 1.3px);
  background-size: 26px 26px, 31px 31px;
}

.soft-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(90deg, rgba(77,42,22,.18), transparent 20%, transparent 80%, rgba(77,42,22,.16));
  opacity: .35;
}

.side-art {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 340px;
  z-index: -2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
}
.side-art-left {
  left: 0;
  background-image: linear-gradient(90deg, rgba(0,0,0,0) 0 78%, rgba(246,231,208,.98) 100%), url("assets/side-left.png");
  -webkit-mask-image: linear-gradient(90deg, #000 0 76%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 76%, transparent 100%);
}
.side-art-right {
  right: 0;
  background-image: linear-gradient(270deg, rgba(0,0,0,0) 0 78%, rgba(246,231,208,.98) 100%), url("assets/side-right.png");
  -webkit-mask-image: linear-gradient(270deg, #000 0 76%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0 76%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.maintenance-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 45px;
  padding: 6px 25px 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8c8a5b, #747448);
  color: #fffaf0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
  box-shadow: inset 0 1px rgba(255,255,255,.25), 0 7px 18px rgba(87,78,45,.13);
}
.maintenance-pill span { font-family: Georgia, serif; font-size: 15px; }

.hero-copy h1 {
  margin: 4px auto 0;
  max-width: 1030px;
  color: #4b1908;
  font-family: "Lilita One", "Cooper Black", Georgia, serif;
  font-size: clamp(54px, 5.5vw, 83px);
  line-height: .98;
  letter-spacing: .003em;
  font-weight: 400;
  text-shadow: 0 2px rgba(255,255,255,.40);
}
.hero-copy > p {
  margin: 8px auto 0;
  color: #432315;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  text-shadow: 0 1px rgba(255,255,255,.55);
}

.mini-divider {
  margin: 12px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #aa5b2f;
}
.mini-divider span { width: 58px; height: 1px; background: #b67e55; }
.mini-divider b { font-size: 23px; line-height: 1; }

.floating-decor {
  position: absolute;
  top: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .95;
  pointer-events: none;
}
.decor-left { left: 2%; transform: rotate(-8deg); }
.decor-right { right: 2%; transform: scaleX(-1) rotate(-8deg); }
.leaf-shape { color: #6f7647; font-size: 65px; line-height: .8; }
.heart-outline { color: #bf6a38; font-family: Georgia, serif; font-size: 58px; line-height: .75; }

.products-layout {
  position: relative;
  z-index: 4;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.product-card {
  position: relative;
  min-width: 0;
  height: 540px;
  padding: 16px 20px 15px;
  background: linear-gradient(180deg, rgba(255,249,237,.98), rgba(255,246,229,.96));
  border: 2px solid rgba(255,255,255,.76);
  border-radius: 26px;
  box-shadow: 0 7px 22px rgba(81,42,21,.16), inset 0 0 0 1px rgba(154,98,56,.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover-wrap {
  width: 100%;
  max-width: 352px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(65,35,17,.16);
  background: #fff;
}
.cover-wrap img { width: 100%; height: 100%; object-fit: cover; }

.product-info {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.product-info h2 {
  margin: 0;
  color: #4b2113;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(21px, 1.6vw, 26px);
  line-height: 1.02;
  font-weight: 400;
}
.product-info p {
  margin: 5px 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 17px;
  line-height: 1.15;
}
.product-info p span { color: #b56635; }

.amazon-button,
.coming-button {
  width: min(330px, 94%);
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 24px;
  text-decoration: none;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  box-shadow: inset 0 1px rgba(255,255,255,.25);
}
.amazon-button {
  background: linear-gradient(180deg, #bc6938, #aa572c);
  color: #fffaf2;
  transition: transform .18s ease, box-shadow .18s ease;
}
.amazon-button:hover { transform: translateY(-2px); box-shadow: 0 9px 18px rgba(123,64,31,.20); }
.amazon-mark {
  position: relative;
  width: 28px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: lowercase;
}
.amazon-mark::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 0;
  bottom: -4px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 50% 50%;
  transform: rotate(2deg);
}
.arrow { font-size: 25px; font-weight: 600; }

.coming-button {
  background: linear-gradient(180deg, #928d5d, #7e7b4e);
  color: #fffdf5;
  cursor: default;
}
.calendar-icon { font-size: 20px; }

.ornament-badge {
  position: absolute;
  z-index: 8;
  top: 24px;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #4c281a;
  background: #fff8e8;
  border: 2px solid #b77e52;
  border-radius: 46% 54% 50% 50% / 52% 45% 55% 48%;
  box-shadow: 0 4px 0 #f6e2c1, 0 7px 16px rgba(70,39,22,.10);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 18px;
  line-height: 1.05;
  transform: rotate(-3deg);
}
.ornament-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(145,94,54,.58);
  border-radius: inherit;
}
.ornament-badge span { color: #ad5e33; display: block; margin-top: 5px; }
.available-badge { left: -47px; }
.coming-badge {
  right: -45px;
  color: #59603d;
  border-color: #8e9164;
  transform: rotate(3deg);
}
.coming-badge span { color: #73774e; }

.center-note {
  align-self: start;
  margin-top: 38px;
  color: #49271a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-family: "Caveat", cursive;
  font-size: 26px;
  line-height: .92;
  text-align: center;
  transform: rotate(-2deg);
}
.center-note .sprig { color: #73774a; font-size: 45px; line-height: 1; transform: rotate(-32deg); }
.center-note .flipped { transform: scaleX(-1) rotate(-32deg); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #4b2418;
  color: #fff9ee;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(49,25,13,.28);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1360px) {
  .side-art { width: 270px; opacity: .78; }
  .header-inner { width: min(1120px, calc(100% - 36px)); }
  .nav { gap: 28px; }
  .nav-right { gap: 25px; }
  .header-leaf { display: none; }
  .products-layout { width: min(980px, calc(100% - 60px)); gap: 22px; grid-template-columns: minmax(0,1fr) 130px minmax(0,1fr); }
  .product-card { height: 515px; }
}

@media (max-width: 1120px) {
  .site-header { height: 96px; }
  .header-inner { height: 96px; grid-template-columns: 1fr auto 1fr; }
  .brand { width: 136px; height: 124px; }
  .brand img { width: 132px; }
  .nav { font-size: 16px; gap: 20px; }
  .nav-right { gap: 17px; }
  .icon-button.bag { margin-left: -10px; }
  .maintenance-stage { min-height: calc(100vh - 96px); padding-top: 46px; }
  .products-layout { grid-template-columns: repeat(2, minmax(0,1fr)); width: min(860px, calc(100% - 50px)); }
  .center-note { position: absolute; left: 50%; top: -45px; transform: translateX(-50%) rotate(-2deg); font-size: 22px; }
  .center-note .sprig { display: none; }
  .ornament-badge { width: 108px; height: 108px; font-size: 16px; }
  .available-badge { left: -28px; }
  .coming-badge { right: -28px; }
  .side-art { width: 230px; opacity: .55; }
}

@media (max-width: 820px) {
  .site-header { height: 86px; }
  .header-inner { height: 86px; width: calc(100% - 28px); display: flex; justify-content: space-between; }
  .brand { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 114px; height: 106px; margin: 0; }
  .brand:hover { transform: translateX(-50%); }
  .brand img { width: 108px; }
  .nav, .header-leaf { display: none; }
  .mobile-menu-button {
    margin-left: auto;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 8px;
  }
  .mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    border-radius: 20px;
    background: #4b2418;
  }
  .mobile-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 80px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,248,235,.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(110,65,37,.14);
    flex-direction: column;
    gap: 8px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { text-decoration: none; padding: 10px 12px; border-radius: 12px; }
  .maintenance-stage { min-height: calc(100vh - 86px); padding: 54px 18px 34px; }
  .side-art { display: none; }
  .floating-decor { display: none; }
  .hero-copy h1 { font-size: clamp(43px, 12vw, 64px); }
  .hero-copy > p { font-size: 20px; }
  .desktop-break { display: none; }
  .products-layout { width: min(500px, 100%); grid-template-columns: 1fr; gap: 26px; padding-top: 38px; }
  .center-note { top: -22px; margin: 0; }
  .product-card { height: auto; min-height: 530px; padding: 15px 16px 14px; }
  .ornament-badge { top: 17px; }
  .available-badge { left: -7px; }
  .coming-badge { right: -7px; }
}

@media (max-width: 480px) {
  .maintenance-stage { padding-left: 12px; padding-right: 12px; }
  .maintenance-pill { min-height: 40px; padding: 5px 18px; font-size: 16px; }
  .hero-copy h1 { margin-top: 8px; font-size: 44px; line-height: .96; }
  .hero-copy > p { font-size: 18px; line-height: 1.2; }
  .product-card { border-radius: 22px; }
  .ornament-badge { width: 96px; height: 96px; font-size: 14px; }
  .cover-wrap { max-width: 100%; }
  .product-info h2 { font-size: 22px; }
  .product-info p { font-size: 16px; }
  .amazon-button, .coming-button { width: 96%; min-height: 50px; font-size: 16px; }
}
