@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --ink: #1c1830;
  --muted: #6d6583;
  --rose: #ff7da0;
  --rose-dark: #ff5d8d;
  --blush: #fff0f6;
  --champagne: #fff3df;
  --sage: #e9fff7;
  --ivory: #fffdfc;
  --paper: #ffffff;
  --line: #eddce7;
  --sale: #e94f73;
  --shadow: 0 12px 30px rgba(72, 38, 94, .10);
  --radius: 4px;
  --heading-font: Poppins, "Glacial Indifference", Montserrat, "Century Gothic", Arial, sans-serif;
  --body-font: Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body-font);
  line-height: 1.5;
}

.announcement-bar {
  min-height: 42px;
  padding: 8px 14px;
  color: #ffffff;
  background: linear-gradient(90deg, #ff5d8d 0%, #ff8b5c 100%);
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.announcement-bar span {
  flex: 0 1 auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 82px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.brand span,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 2px;
}

.mobile-search,
.mobile-drawer-links,
.drawer-backdrop {
  display: none;
}

.site-nav a {
  padding: 10px 9px;
  color: var(--ink);
  font-size: 13px;
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--rose-dark);
}

.header-action,
.button,
.newsletter button,
.product-card button,
.order-form button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-family: var(--heading-font);
  font-weight: 600;
}

.header-action {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding: 11px 18px;
  color: white;
  background: var(--rose-dark);
}

.mobile-cart {
  display: none;
}

.desktop-cart {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  place-items: center;
}

.desktop-cart img { width: 34px; height: 34px; object-fit: contain; }
.desktop-cart span {
  position: absolute;
  top: 0;
  right: -2px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #6856d8;
  font: 700 11px/1 var(--heading-font);
}

.menu-toggle {
  display: none;
  width: 82px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.menu-toggle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  min-height: calc(100vh - 114px);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, #fffaf7 45%, var(--champagne) 100%);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-dark);
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(50px, 8vw, 104px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--rose-dark) 0%, #ff7b63 100%);
  box-shadow: 0 10px 20px rgba(255, 93, 141, .18);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 22px);
  align-items: end;
}

.hero-showcase.single {
  display: block;
}

.hero-showcase img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(120, 70, 78, .14);
}

.hero-showcase img:first-child {
  grid-row: span 2;
}

.hero-showcase.single img {
  width: min(100%, 750px);
  margin-left: auto;
  aspect-ratio: 750 / 1021;
  object-fit: cover;
  border-radius: 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
}

.trust-strip div {
  min-height: 108px;
  padding: 24px clamp(16px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.category-band,
.products-section,
.feature-band,
.story-section,
.contact-section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading.row p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-grid a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.category-grid span,
.category-grid small {
  display: block;
}

.category-grid span {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 600;
}

.category-grid small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.products-section {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-products .section-heading.row p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.product-grid[data-view="home"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: white;
}

.product-card.compact {
  overflow: visible;
  background: transparent;
}

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #fff3f7 0%, #fffaf2 100%);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  transition: transform .28s ease;
}

.product-image-compact {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-grid[data-view="home"] .product-image img {
  aspect-ratio: 1 / 1.05;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--rose-dark);
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.wishlist-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 22px rgba(23, 23, 23, .12);
  font-size: 30px;
  line-height: 1;
}

.product-info {
  padding: 15px 0 0;
}

.product-info.compact {
  padding: 12px 2px 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
}

.product-info h3 {
  margin-top: 9px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.product-info.compact h3 {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.2;
  min-height: 42px;
}

.product-info p {
  min-height: 66px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.rating {
  color: #f0c120;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
}

.rating-count {
  color: var(--muted);
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
}

.product-price {
  margin: 12px 0 14px;
  color: #5f53c8;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
}

.product-options,
.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.product-options span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff8f7;
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 500;
}

.product-thumbs img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.product-specs {
  min-height: 0;
  margin: 0 0 16px;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

.product-specs li {
  margin: 5px 0;
}

.product-card button {
  width: 100%;
  color: white;
  background: var(--ink);
}

.compact-action {
  width: 100%;
  color: white;
  background: #6758cf;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.page-hero {
  padding: clamp(54px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.page-hero.compact {
  padding-bottom: clamp(36px, 5vw, 64px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.product-detail-page,
.order-section,
.contact-cards {
  padding: clamp(36px, 6vw, 80px) clamp(18px, 5vw, 72px);
}

.product-detail-page {
  background: #ffffff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.detail-main-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: #f8f3f0;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: #1f1f1f;
  font: 600 12px/1 var(--heading-font);
  text-transform: uppercase;
}

.detail-thumb-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: min(720px, calc(100vh - 150px));
  overflow-y: auto;
  scrollbar-width: thin;
}

.detail-thumb {
  border: 1px solid #dedede;
  border-radius: 0;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
}

.detail-thumb.is-active {
  border-color: #1f1f1f;
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-widget {
  margin-top: 24px;
  color: #222222;
  font-size: 14px;
}

.product-widget p {
  margin: 0 0 10px;
  color: #222222;
}

.product-widget ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #555555;
}

.product-widget li {
  margin: 5px 0;
}

.product-widget fieldset {
  margin: 0;
  border: 1px solid #d9d9d9;
  padding: 16px 14px 14px;
}

.product-widget legend {
  padding: 0 8px;
  color: #222222;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 500;
}

.product-widget img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.detail-summary {
  position: sticky;
  top: 96px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.detail-vendor,
.detail-tax,
.detail-label {
  margin: 0;
  color: #6b6b6b;
  font-size: 13px;
  font-family: var(--heading-font);
  font-weight: 500;
}

.detail-summary h1 {
  margin-top: 8px;
  color: #121212;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: none;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 12px;
}

.detail-rating a {
  color: #575757;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 4px;
}

.detail-price-row .detail-price {
  margin: 0;
}

.detail-price {
  color: #111111 !important;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
}

.detail-compare-price {
  color: #888888;
  font-size: 16px;
  text-decoration: line-through;
}

.detail-description {
  margin: 18px 0 0;
  color: #555555;
  font-size: 15px;
}

.detail-field {
  margin-top: 22px;
}

.detail-label {
  margin-bottom: 9px;
  color: #222222;
  font-size: 14px;
}

.detail-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-choices button {
  min-height: 42px;
  min-width: 76px;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  color: #222222;
  background: #ffffff;
  padding: 9px 14px;
  font: 500 14px/1.2 var(--heading-font);
  cursor: pointer;
}

.detail-choices button.is-selected {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 54px 42px;
  min-height: 44px;
  border: 1px solid #d7d7d7;
}

.quantity-control button,
.quantity-control span {
  display: grid;
  place-items: center;
}

.quantity-control button {
  border: 0;
  color: #111111;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.quantity-control span {
  border-right: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  color: #111111;
  font: 500 15px/1 var(--heading-font);
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.detail-actions .button {
  width: 100%;
  min-height: 52px;
  border-radius: 0;
  font-size: 15px;
}

.detail-cart-button {
  border: 1px solid #111111;
  color: #111111;
  background: #ffffff;
}

.detail-buy-button {
  color: #ffffff;
  background: #151515;
}

.detail-accordions {
  margin-top: 26px;
  border-top: 1px solid #e2e2e2;
}

.detail-accordions details {
  border-bottom: 1px solid #e2e2e2;
}

.detail-accordions summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  color: #111111;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.detail-accordions summary::-webkit-details-marker {
  display: none;
}

.detail-accordions summary::after {
  content: "+";
  color: #111111;
  font-size: 22px;
  font-weight: 400;
}

.detail-accordions details[open] summary::after {
  content: "−";
}

.detail-accordions ul,
.detail-accordions p {
  margin: 0;
  padding: 0 0 18px 18px;
  color: #555555;
  font-size: 14px;
}

.detail-accordions p {
  padding-left: 0;
}

.detail-accordions li {
  margin-bottom: 8px;
}

.detail-panel {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
}

.detail-panel h2,
.order-aside h2,
.contact-cards h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.detail-panel ul {
  columns: 2;
  padding-left: 18px;
  color: var(--muted);
}

.detail-panel li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.detail-review-panel {
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid #e5e5e5;
}

.detail-review-panel div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.detail-review-panel strong {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
}

.detail-review-panel p {
  margin: 8px 0 0;
  color: #666666;
  font-size: 14px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: start;
}

.cart-section { padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 72px) 0; }
.cart-items { display: grid; gap: 12px; max-width: 1100px; margin: 0 auto; }
.cart-row { display: grid; grid-template-columns: 88px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 16px; border: 1px solid var(--line); background: #fff; }
.cart-row > img { width: 88px; height: 88px; object-fit: cover; }
.cart-row-info h3 { margin: 0 0 6px; }
.cart-row-info p { margin: 0; color: var(--muted); }
.cart-row-controls { display: grid; justify-items: end; gap: 8px; }
.cart-row-controls .quantity-control { display: flex; align-items: center; gap: 14px; }
.cart-row-controls .quantity-control button { width: 32px; height: 32px; }
.cart-remove { border: 0; padding: 0; color: var(--rose-dark); background: transparent; cursor: pointer; font: 600 12px/1.2 var(--heading-font); }
.cart-empty { max-width: 1100px; margin: 0 auto; padding: 36px; border: 1px dashed var(--line); text-align: center; background: #fff; }
.cart-empty[hidden] { display: none; }
.checkout-note { color: var(--muted); }

.order-form,
.order-aside,
.contact-cards article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 10px;
}

.order-form label {
  font-family: var(--heading-font);
  font-weight: 600;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.order-form button {
  margin-top: 10px;
  color: white;
  background: var(--rose-dark);
}

.form-message {
  min-height: 24px;
  margin: 6px 0 0;
  color: var(--rose-dark);
  font-family: var(--heading-font);
  font-weight: 600;
}

.delivery-analysis {
  display: grid;
  gap: 4px;
  margin: 4px 0 8px;
  padding: 13px 14px;
  border-left: 3px solid var(--rose-dark);
  background: #fff6f3;
}

.delivery-analysis strong {
  color: var(--ink);
  font-family: var(--heading-font);
}

.delivery-analysis span {
  color: var(--muted);
  font-size: 13px;
}

.invoice-link {
  color: var(--rose-dark);
  font-family: var(--heading-font);
  font-weight: 700;
  text-decoration: underline;
}

.order-total-preview {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.order-total-preview div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.order-total-preview strong { color: var(--ink); }
.order-total-preview .order-grand-total { padding-top: 10px; border-top: 1px solid var(--line); color: var(--ink); font-size: 17px; }

.invoice-page,
.admin-content { max-width: 1100px; margin: 0 auto; padding: 34px 18px 80px; }
.invoice-toolbar,
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.invoice-sheet { padding: clamp(24px, 5vw, 58px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.invoice-header, .invoice-customer, .invoice-row { display: flex; justify-content: space-between; gap: 24px; }
.invoice-header { align-items: start; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.invoice-header h1 { margin: 4px 0 0; }
.invoice-number { display: grid; gap: 4px; text-align: right; }
.invoice-number span, .invoice-customer span { color: var(--muted); font: 600 12px/1.2 var(--heading-font); text-transform: uppercase; }
.invoice-number small { color: var(--muted); }
.invoice-customer { padding: 24px 0; border-bottom: 1px solid var(--line); }
.invoice-customer > div { max-width: 46%; }
.invoice-customer strong { display: block; margin-top: 7px; font-family: var(--heading-font); }
.invoice-customer p { margin: 5px 0 0; color: var(--muted); white-space: pre-line; }
.invoice-items { padding: 24px 0 0; }
.invoice-row { padding: 12px 0; border-bottom: 1px solid #eee; }
.invoice-row-heading { color: var(--muted); font: 600 12px/1.2 var(--heading-font); text-transform: uppercase; }
.invoice-row small { display: block; margin-top: 4px; color: var(--muted); }
.invoice-total { border-bottom: 0; color: var(--ink); font-size: 20px; }
.invoice-notes { margin-top: 26px; color: var(--muted); }
.invoice-footer { margin-top: 36px; color: var(--muted); text-align: center; }
.admin-header { padding-left: 18px; padding-right: 18px; }
.admin-hero { max-width: 1100px; margin: 0 auto; padding-left: 18px; padding-right: 18px; }
.orders-list { display: grid; gap: 14px; }
.order-record { padding: 22px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.order-record-main { display: flex; justify-content: space-between; gap: 20px; }
.order-record-main h2 { margin: 7px 0 4px; font-size: 24px; }
.order-record-main > strong { font: 700 20px/1.2 var(--heading-font); }
.order-number { color: var(--rose-dark); font: 700 12px/1.2 var(--heading-font); letter-spacing: .06em; }
.order-record p { color: var(--muted); }
.order-record-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 18px 0 8px; color: var(--muted); font-size: 13px; }
.order-address { margin: 0 0 16px; }
.empty-orders { padding: 34px; border: 1px dashed var(--line); background: #fff; text-align: center; }

@media print {
  .invoice-toolbar { display: none; }
  .invoice-page { padding: 0; }
  .invoice-sheet { border: 0; box-shadow: none; }
}

.order-aside {
  position: sticky;
  top: 96px;
}

.order-aside img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.order-aside p {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-cards p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(72, 38, 94, .10);
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.feature-copy ul {
  padding-left: 18px;
  color: var(--muted);
}

.feature-copy li {
  margin: 10px 0;
}

.story-section {
  color: white;
  background: linear-gradient(135deg, #1f1a35 0%, #3c2359 100%);
}

.story-section .eyebrow {
  color: var(--blush);
}

.story-section p:last-child {
  max-width: 820px;
  color: #ead9d7;
  font-size: 19px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 28px;
  align-items: center;
}

.contact-section p {
  color: var(--muted);
}

.newsletter {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.newsletter div {
  display: flex;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 14px;
  font: inherit;
}

.newsletter button {
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--rose-dark) 0%, #ff7b63 100%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px) 24px;
  color: #e7e2de;
  background: linear-gradient(135deg, #161222 0%, #221733 100%);
}

.footer-brand {
  color: #ffffff;
  font-size: 26px;
}

.site-footer p {
  color: #c8b6ba;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #c8b6ba;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    z-index: 100;
    background: transparent;
    border-bottom-color: transparent;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 88px;
    padding: 16px clamp(16px, 4vw, 28px);
  }

  .brand {
    position: absolute;
    left: 50%;
    grid-column: 1 / -1;
    grid-row: 1;
    transform: translateX(-50%);
    justify-self: center;
  }

  .brand span {
    font-size: 23px;
    font-weight: 700;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: block;
    justify-self: start;
    align-self: center;
    position: relative;
    z-index: 80;
    width: 82px;
    min-width: 0;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    overflow: hidden;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: 124px;
    right: 18px;
    width: 82px;
    height: 48px;
    background: transparent;
    min-width: 0;
    display: block;
    overflow: hidden;
  }

  .header-action {
    display: none;
  }

  .mobile-cart {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    display: block;
    justify-self: end;
    width: 42px;
    height: 42px;
  }

  .desktop-cart { display: none; }

  .mobile-cart img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .mobile-cart span {
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 2;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #6856d8;
    font: 700 13px/1 var(--heading-font);
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    border: 0;
    background: rgba(31, 24, 51, .46);
    backdrop-filter: blur(2px);
    cursor: pointer;
  }

  body.menu-open .drawer-backdrop {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: calc(-1 * clamp(16px, 4vw, 28px));
    z-index: 110;
    display: block;
    width: min(74vw, 680px);
    max-width: 680px;
    height: 100vh;
    padding: 0;
    overflow-y: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fffafc 100%);
    box-shadow: 16px 0 34px rgba(0, 0, 0, .18);
    transform: translateX(-103%);
    transition: transform .24s ease;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav.is-open a {
    display: block;
    padding: 22px clamp(18px, 5vw, 38px);
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-drawer-links a {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }

  .mobile-drawer-links svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-nav > a {
    display: none !important;
  }

  .mobile-search {
    display: flex;
    min-height: 78px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
  }

  .mobile-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    padding: 0 clamp(18px, 5vw, 38px);
    color: var(--ink);
    font: 700 18px/1.2 var(--heading-font);
    outline: 0;
  }

  .mobile-search input::placeholder {
    color: #6b6b6b;
    opacity: 1;
  }

  .mobile-search button {
    width: 68px;
    border: 0;
    color: #575757;
    background: transparent;
  }

  .mobile-search button svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-drawer-links {
    display: block;
  }

  .hero,
  .feature-band,
  .contact-section,
  .detail-layout,
  .order-section {
    grid-template-columns: 1fr;
  }

  .cart-section { padding: 30px 16px 0; }
  .cart-row { grid-template-columns: 64px minmax(0, 1fr); gap: 12px; }
  .cart-row > img { width: 64px; height: 64px; }
  .cart-row-controls { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }

  .detail-summary,
  .order-aside {
    position: static;
  }

  .product-detail-page {
    padding: 0 0 40px;
  }

  .detail-layout {
    gap: 0;
    max-width: none;
  }

  .detail-gallery {
    display: block;
    width: 100%;
  }

  .detail-main-image {
    background: #f7f2ef;
  }

  .detail-main-image img {
    height: 100%;
  }

  .detail-main-image {
    aspect-ratio: 1 / 1.12;
  }

  .detail-thumb-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    max-height: none;
    margin: 10px 0 0;
    padding: 0 16px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .detail-thumb-row::-webkit-scrollbar {
    display: none;
  }

  .detail-thumb {
    width: 64px;
    flex: 0 0 64px;
  }

  .detail-summary {
    padding: 20px 16px 0;
  }

  .detail-summary h1 {
    margin-top: 6px;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .detail-rating {
    margin-top: 12px;
  }

  .detail-price {
    font-size: 22px;
  }

  .detail-description {
    font-size: 14px;
    line-height: 1.55;
  }

  .detail-choices button {
    min-width: 68px;
  }

  .quantity-control {
    width: 142px;
  }

  .detail-review-panel {
    margin: 30px 16px 0;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 44px;
    background: linear-gradient(180deg, #fff6fb 0%, #fef9ef 100%);
  }

  .hero-showcase.single {
    order: 1;
    width: 100%;
    margin-top: 16px;
  }

  .hero-copy {
    order: 2;
    max-width: 720px;
    text-align: center;
    margin-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 10vw, 64px);
  }

  .hero-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.5;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 34px;
  }

  .hero-actions .secondary {
    display: none;
  }

  .hero-actions .primary {
    min-width: 220px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid[data-view="home"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.row {
    display: block;
  }

  .section-heading.row p:last-child {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .brand span {
    min-height: 40px;
    font-size: 22px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .hero-showcase.single {
    display: none;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-showcase img:first-child {
    grid-row: auto;
  }

  .hero-showcase.single img {
    width: 100%;
    margin: 0;
    aspect-ratio: 750 / 1021;
    border-radius: 8px;
  }

  .category-grid,
  .product-grid,
  .site-footer,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .product-grid[data-view="home"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter div {
    display: grid;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .detail-panel ul {
    columns: 1;
  }

  .invoice-header, .invoice-customer { display: grid; }
  .invoice-number { text-align: left; }
  .invoice-customer > div { max-width: none; }
  .order-record-main { display: grid; }
}
