:root {
  --warm-beige: #edf4ed;
  --sage: #9bbf9c;
  --muted-brown: #2d5a46;
  --terracotta: #e5a9bb;
  --off-white: #fffdf9;
  --ink: #20352c;
  --shadow-soft: 0 22px 48px rgba(45, 90, 70, 0.14);
  --leaf-mist: #d8ead8;
  --leaf-deep: #1d4332;
  --petal-soft: #f7dbe5;
  --petal-deep: #cc879e;
  --surface-blush: #fdf4f7;
  --shadow-lift: 0 28px 58px rgba(29, 67, 50, 0.18);
  --text-soft: rgba(32, 53, 44, 0.76);
  --text-muted: rgba(32, 53, 44, 0.6);
  --ease-floral: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(204, 135, 158, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(155, 191, 156, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fcf7 0%, var(--warm-beige) 68%, #f8eef3 100%);
  color: var(--ink);
  line-height: 1.68;
  letter-spacing: 0.01em;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body[data-page='home'],
body[data-page='products'],
body[data-page='contact'] {
  background-image:
    linear-gradient(180deg, rgba(248, 252, 247, 0.92) 0%, rgba(237, 244, 237, 0.88) 62%, rgba(250, 239, 244, 0.9) 100%),
    url('assets/img/floralbg.jpeg');
  background-position: center top, center top;
  background-repeat: no-repeat, repeat;
  background-size: auto, 460px;
}

body.is-mobile-nav-open {
  overflow: hidden;
}

body[data-page='cart'] {
  background: linear-gradient(180deg, #fbfffb 0%, #f0f7f0 48%, #f9edf2 100%);
}

p,
li,
input,
textarea,
select {
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell {
  padding: clamp(2.4rem, 4vw, 4rem) 1.5rem;
}

.page-panel {
  width: min(1400px, 100%);
  margin: 0 auto 2.5rem;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(229, 169, 187, 0.12), transparent 22%),
    radial-gradient(circle at right top, rgba(155, 191, 156, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(243, 249, 243, 0.92));
  border-radius: 32px;
  border: 1px solid rgba(45, 90, 70, 0.08);
  box-shadow: var(--shadow-soft);
  padding: clamp(2.2rem, 4vw, 3.35rem);
  overflow: hidden;
}

.page-panel::after {
  content: '';
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(229, 169, 187, 0.24) 0 20%, transparent 21%),
    radial-gradient(circle at 28% 42%, rgba(155, 191, 156, 0.18) 0 14%, transparent 15%),
    radial-gradient(circle at 72% 42%, rgba(155, 191, 156, 0.18) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 74%, rgba(229, 169, 187, 0.18) 0 16%, transparent 17%);
  opacity: 0.65;
  pointer-events: none;
}

.page-panel:last-child {
  margin-bottom: 0;
}

.page-panel--hero {
  text-align: center;
}

.products-hero-panel {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, var(--leaf-deep), #35694f 58%, #91b58f 100%);
  color: var(--off-white);
  overflow: hidden;
  text-align: left;
}

.products-hero-panel::before {
  content: none;
}

.products-hero-panel::after {
  content: none;
}

.products-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--products-hero-image);
  background-position: 78% center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(30, 71, 52, 0.98) 0%, rgba(30, 71, 52, 0.98) 22%, rgba(36, 79, 57, 0.94) 36%, rgba(46, 92, 68, 0.82) 49%, rgba(63, 111, 83, 0.58) 61%, rgba(92, 139, 104, 0.3) 73%, rgba(145, 181, 143, 0.06) 84%, rgba(145, 181, 143, 0) 92%),
    linear-gradient(135deg, rgba(229, 169, 187, 0.06), transparent 55%);
  pointer-events: none;
}

.products-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.products-hero-copy h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
}

.products-hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.9rem;
  max-width: 34rem;
  font-size: 1.04rem;
}

.products-hero-panel .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.products-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.products-hero-panel .btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--leaf-deep);
  background: rgba(255, 248, 251, 0.92);
}

.products-hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.products-hero-stats li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.products-hero-stats strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.products-hero-stats span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.products-hero-visual {
  position: relative;
  justify-self: center;
  width: min(420px, 100%);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}

.products-hero-tag {
  position: relative;
  z-index: 1;
  background: rgba(255, 248, 251, 0.96);
  color: var(--leaf-deep);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 252, 247, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(45, 90, 70, 0.12);
  box-shadow: 0 12px 34px rgba(20, 48, 36, 0.08);
}

.cart-toast-container {
  position: fixed;
  top: 96px;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 120;
}

.cart-toast {
  background: var(--off-white);
  border-left: 4px solid var(--terracotta);
  border-radius: 20px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  min-width: 240px;
  animation: fade-slide 0.4s ease;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cart-toast-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.cart-toast strong {
  display: block;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
}

.cart-toast-body span {
  display: block;
  font-size: 0.95rem;
  color: rgba(47, 36, 26, 0.8);
}

.cart-toast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cart-toast-link {
  border: none;
  background: none;
  padding: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: underline;
  color: var(--terracotta);
}

.cart-toast-link.is-muted {
  color: rgba(47, 36, 26, 0.75);
}

.cart-toast-link.is-primary {
  background: var(--terracotta);
  color: var(--off-white);
  text-decoration: none;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-toast-remove {
  border: none;
  background: rgba(212, 163, 115, 0.18);
  color: var(--muted-brown);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-toast-remove span {
  font-size: 1.25rem;
  line-height: 1;
}

.cart-toast-remove:hover,
.cart-toast-remove:focus-visible {
  background: var(--terracotta);
  color: var(--off-white);
}

.cart-toast-remove.is-busy {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.cart-toast-remove.is-busy::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(47, 36, 26, 0.3);
  border-top-color: var(--muted-brown);
  animation: spin 0.8s linear infinite;
}

.cart-toast-remove.is-success {
  background: rgba(163, 177, 138, 0.4);
  color: var(--ink);
}

.cart-toast-remove.is-error {
  background: rgba(212, 116, 108, 0.3);
  color: var(--terracotta);
}

.cart-toast.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .cart-toast-container {
    left: 0.75rem;
    right: 0.75rem;
  }
}

.top-nav {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0.65rem clamp(1rem, 2.5vw, 1.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(107, 79, 58, 0.26);
  background: var(--off-white);
  color: var(--muted-brown);
  border-radius: 999px;
  min-height: 40px;
  padding: 0.35rem 0.9rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.mobile-menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
}

.mobile-menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.site-header.is-mobile-nav-open .mobile-menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-mobile-nav-open .mobile-menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-nav-open .mobile-menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  height: 98px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .brand-mark {
    justify-content: center;
  }

  .brand-logo {
    height: 72px;
    max-width: 160px;
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.6rem, 1.6vw, 1.2rem);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.3rem 0.1rem;
  white-space: nowrap;
}

.nav-links .nav-link-button {
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0.3rem 0.1rem;
  cursor: pointer;
  color: inherit;
  white-space: nowrap;
}

.nav-links a::after,
.nav-links .nav-link-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after,
.nav-links .nav-link-button:hover::after,
.nav-links .nav-link-button:focus-visible::after {
  transform: scaleX(1);
}

.cart-button {
  justify-self: end;
  border: none;
  background: linear-gradient(135deg, var(--leaf-deep), var(--muted-brown));
  color: var(--off-white);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  gap: 0.45rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--petal-deep), var(--terracotta));
  transform: translateY(-2px);
}

.cart-count {
  background: var(--petal-deep);
  color: var(--off-white);
  border-radius: 999px;
  padding: 0.05rem 0.55rem;
  font-size: 0.85rem;
}

.nav-utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.account-chip {
  border: 1px solid rgba(107, 79, 58, 0.25);
  background: var(--off-white);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
  min-height: 44px;
  max-width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.account-chip:hover,
.account-chip:focus-visible {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.account-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(107, 79, 58, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-avatar svg {
  width: 22px;
  height: 22px;
  stroke: var(--muted-brown);
  stroke-width: 1.6;
  fill: none;
}

.account-chip.is-authenticated .account-avatar {
  background: linear-gradient(135deg, rgba(155, 191, 156, 0.95), rgba(29, 67, 50, 0.95));
  color: var(--off-white);
  box-shadow: 0 8px 18px rgba(45, 90, 70, 0.22);
}

.account-chip.is-authenticated {
  border-color: rgba(45, 90, 70, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 239, 0.94));
  box-shadow: 0 10px 22px rgba(45, 90, 70, 0.1);
}

.account-avatar-initials {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: inherit;
}

.account-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.account-label {
  font-weight: 600;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-meta {
  font-size: 0.75rem;
  color: rgba(47, 36, 26, 0.65);
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-chip.is-authenticated .account-meta {
  color: rgba(47, 36, 26, 0.78);
}

.home-stage {
  position: relative;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
}

.home-stage::before,
.home-stage::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home-stage::before {
  width: 440px;
  height: 440px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(229, 169, 187, 0.26), rgba(229, 169, 187, 0));
}

.home-stage::after {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 140px;
  background: radial-gradient(circle, rgba(155, 191, 156, 0.28), rgba(155, 191, 156, 0));
}

.home-stage-shell,
.florist-feature-shell,
.home-story-intro {
  width: min(1400px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-stage-shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.home-stage-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-stage-copy .eyebrow {
  color: rgba(95, 70, 51, 0.72);
}

.home-stage-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.home-stage-lede {
  max-width: 760px;
  margin: 1.1rem auto 0;
  font-size: 1.08rem;
  color: rgba(47, 36, 26, 0.78);
}

.home-stage-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.home-stage-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-stage-highlight {
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(244, 250, 244, 0.82));
  border: 1px solid rgba(45, 90, 70, 0.1);
  box-shadow: 0 12px 28px rgba(45, 90, 70, 0.08);
  text-align: left;
}

.home-stage-highlight strong {
  display: block;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--muted-brown);
  margin-bottom: 0.35rem;
}

.home-stage-highlight span {
  display: block;
  color: rgba(47, 36, 26, 0.74);
  font-size: 0.95rem;
}

.home-stage-products {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(240, 248, 240, 0.92));
  border: 1px solid rgba(45, 90, 70, 0.1);
  box-shadow: 0 28px 60px rgba(45, 90, 70, 0.14);
  overflow: hidden;
}

.home-stage-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(229, 169, 187, 0.1), transparent 38%),
    radial-gradient(circle at top right, rgba(155, 191, 156, 0.22), transparent 28%);
  pointer-events: none;
}

.home-stage-products::after {
  content: '';
  position: absolute;
  inset: auto auto -68px -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(229, 169, 187, 0.22) 0 18%, transparent 19%),
    radial-gradient(circle at 30% 42%, rgba(247, 219, 229, 0.28) 0 15%, transparent 16%),
    radial-gradient(circle at 70% 42%, rgba(247, 219, 229, 0.28) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 74%, rgba(155, 191, 156, 0.24) 0 16%, transparent 17%);
  opacity: 0.8;
  pointer-events: none;
}

.home-stage-products-header,
.home-story-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.home-stage-products-header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.home-stage-products-header h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.home-inline-link,
.value-link {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--terracotta);
}

.home-stage-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-stage-grid .home-product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 250, 245, 0.92));
  border: 1px solid rgba(45, 90, 70, 0.12);
}

.home-stage-grid .home-product-media {
  aspect-ratio: 4 / 4.2;
}

.form-mode-picker {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.form-mode-legend {
  width: 100%;
  margin-bottom: 0.25rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: 1.15rem;
}
.form-mode-option {
  position: relative;
  flex: 1 1 180px;
}
.form-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-mode-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(95, 70, 51, 0.14);
  color: var(--muted-brown);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.form-mode-option input:checked + span {
  background: linear-gradient(135deg, rgba(202, 136, 82, 0.16), rgba(143, 164, 121, 0.12));
  border-color: rgba(202, 136, 82, 0.42);
  box-shadow: 0 12px 24px rgba(95, 70, 51, 0.08);
}
.form-mode-option span:hover {
  transform: translateY(-2px);
}
.home-section-actions--left {
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.form-grid--nested {
  margin-top: 1.25rem;
}

.value-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(243, 237, 226, 0.95));
}

.value-strip-inner--rich {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.value-item--actionable {
  gap: 0.55rem;
  padding: 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.86);
}

.florist-picks-section {
  padding-top: 1rem;
}

.florist-feature-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.florist-feature-copy {
  padding: clamp(1.4rem, 2.8vw, 2rem);
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(95, 70, 51, 0.96), rgba(143, 164, 121, 0.9));
  color: var(--off-white);
  box-shadow: 0 24px 52px rgba(47, 36, 26, 0.18);
}

.florist-feature-copy .eyebrow,
.florist-feature-copy p,
.florist-feature-copy li {
  color: rgba(255, 255, 255, 0.88);
}

.florist-feature-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.featured-flower-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.featured-flower-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-flower-summary {
  margin: 1.15rem 0 0;
  font-size: 1.04rem;
  line-height: 1.75;
}

.featured-flower-detail-copy {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.featured-flower-detail-copy p {
  margin: 0;
}

.florist-detail-list {
  margin: 1.5rem 0 0;
  padding-left: 1.15rem;
}

.florist-detail-list li + li {
  margin-top: 0.55rem;
}

.florist-feature-actions {
  justify-content: flex-start;
}

.featured-flower-actions {
  margin-top: 1.35rem;
}

.florist-feature-copy .btn-outline {
  background: rgba(255, 255, 255, 0.9);
}

.florist-feature-panel {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(95, 70, 51, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.25rem;
}

.featured-flower-gallery {
  width: 100%;
}

.featured-flower-gallery-inner {
  display: grid;
  gap: 0.85rem;
}

.featured-flower-primary {
  position: relative;
  margin: 0;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(143, 164, 121, 0.2), rgba(204, 135, 158, 0.18));
}

.featured-flower-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(47, 36, 26, 0.4));
  pointer-events: none;
}

.featured-flower-primary-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.featured-flower-primary-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.featured-flower-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 0.75rem;
}

.featured-flower-thumbnail {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(45, 90, 70, 0.06);
  box-shadow: 0 10px 18px rgba(45, 90, 70, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.featured-flower-thumbnail:hover,
.featured-flower-thumbnail:focus-visible,
.featured-flower-thumbnail.is-active {
  transform: translateY(-2px);
  border-color: rgba(204, 135, 158, 0.5);
}

.featured-flower-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.featured-flower-products-shell {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 243, 0.92));
  border: 1px solid rgba(45, 90, 70, 0.12);
}

.featured-flower-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.featured-flower-products-header .eyebrow {
  margin-bottom: 0.35rem;
}

.featured-flower-products-header h3 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--muted-brown);
}

.featured-flower-carousel-actions {
  display: flex;
  gap: 0.55rem;
}

.featured-flower-carousel-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(45, 90, 70, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted-brown);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(45, 90, 70, 0.08);
}

.featured-flower-carousel-button:disabled {
  opacity: 0.35;
  box-shadow: none;
}

.featured-flower-product-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 150px;
  gap: 0.85rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.featured-flower-product-grid::-webkit-scrollbar {
  display: none;
}

.featured-flower-product-card {
  appearance: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 243, 0.96));
  border: 1px solid rgba(45, 90, 70, 0.12);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  gap: 0.65rem;
  width: 150px;
  min-width: 150px;
  padding: 0.55rem;
  text-align: left;
  align-content: start;
  scroll-snap-align: start;
  box-shadow: 0 12px 26px rgba(45, 90, 70, 0.1);
}

.featured-flower-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(155, 191, 156, 0.18), rgba(45, 90, 70, 0.08));
}

.featured-flower-product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(47, 36, 26, 0.52));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.featured-flower-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.featured-flower-product-card:hover .featured-flower-product-media img {
  transform: scale(1.05);
}

.featured-flower-product-price {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 1;
  padding: 0.22rem 0.46rem;
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.94);
  color: var(--muted-brown);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.featured-flower-product-title {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: 0.98rem;
  line-height: 1.25;
}

.featured-flower-product-card:hover,
.featured-flower-product-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(45, 90, 70, 0.14);
}

.featured-flower-product-card:hover .featured-flower-product-media::after,
.featured-flower-product-card:focus-visible .featured-flower-product-media::after,
.featured-flower-product-card:hover .featured-flower-product-price,
.featured-flower-product-card:focus-visible .featured-flower-product-price {
  opacity: 1;
}

.featured-flower-product-card:hover .featured-flower-product-price,
.featured-flower-product-card:focus-visible .featured-flower-product-price {
  transform: translateY(0);
}

.home-story-section {
  padding-top: 3rem;
}

.home-story-intro {
  align-items: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.home-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: auto;
  margin-bottom: 25px;
  align-self: center;
  justify-content: center;
}

body[data-page='home'] .about-card,
body[data-page='home'] .contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body[data-page='home'] .about-card p,
body[data-page='home'] .contact-card p {
  margin: 0;
  color: rgba(47, 36, 26, 0.76);
}

body[data-page='home'] .about-card .btn,
body[data-page='home'] .contact-card .btn {
  margin-top: auto;
}

.home-contact-section {
  padding-top: 3rem;
}

@media (max-width: 1024px) {
  .home-stage-highlights {
    grid-template-columns: 1fr;
  }

  .florist-feature-shell {
    grid-template-columns: 1fr;
  }

  .home-stage-products-header,
  .home-story-intro,
  .featured-flower-products-header {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .home-stage-copy h1 {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  .home-stage-highlight {
    padding: 1rem;
  }

  .home-stage-actions,
  .home-story-actions,
  .florist-feature-actions,
  .featured-flower-actions {
    width: 100%;
  }

  .home-stage-actions .btn,
  .home-story-actions .btn,
  .florist-feature-actions .btn,
  .featured-flower-actions .btn,
  .home-section-actions--left .btn {
    width: 100%;
  }

  .home-stage-products,
  .florist-feature-copy,
  .florist-feature-panel,
  .featured-flower-products-shell {
    border-radius: 24px;
  }

  .featured-flower-primary,
  .featured-flower-primary-image,
  .featured-flower-product-card,
  .featured-flower-product-media {
    border-radius: 24px;
  }

  .home-stage-products-header,
  .home-story-intro,
  .featured-flower-products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-product-media-overlay {
    padding: 0.8rem;
  }

  .home-product-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-product-price {
    padding-inline: 0.7rem;
  }

  .home-product-action,
  .home-product-action .btn {
    width: 100%;
  }

  .home-product-action .btn {
    min-width: 0;
  }

  .home-product-details {
    gap: 0.4rem;
  }

  .featured-flower-carousel-button {
    width: 36px;
    height: 36px;
  }

  .product-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card-media-overlay {
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card-affordance {
    width: 100%;
    min-width: 0;
  }

  .form-mode-option {
    flex-basis: 100%;
  }

  .form-section {
    padding: 1rem;
  }

  .value-strip-inner--rich {
    grid-template-columns: 1fr;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 86vh, 860px);
  height: clamp(560px, 86vh, 860px);
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 86vh, 860px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem;
  background-size: cover;
  background-position: center;
  color: var(--off-white);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s ease;
  height: clamp(560px, 86vh, 860px);
}

.value-strip {
  background: linear-gradient(180deg, rgba(248, 252, 248, 0.96), rgba(253, 244, 247, 0.92));
  border-top: 1px solid rgba(45, 90, 70, 0.08);
  border-bottom: 1px solid rgba(45, 90, 70, 0.08);
  padding: 1rem 1.5rem;
}

.value-strip-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.96), rgba(239, 248, 239, 0.84));
  border: 1px solid rgba(45, 90, 70, 0.08);
}

.value-item strong {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--muted-brown);
}

.value-item span {
  font-size: 0.9rem;
  color: rgba(47, 36, 26, 0.78);
}

.value-link {
  margin-top: 0.1rem;
}

.home-products-shell {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(243, 249, 243, 0.92));
  border-radius: 30px;
  border: 1px solid rgba(45, 90, 70, 0.1);
  box-shadow: var(--shadow-soft);
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.home-product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 249, 242, 0.94));
  border: 1px solid rgba(45, 90, 70, 0.12);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 34px rgba(45, 90, 70, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.home-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(229, 169, 187, 0.06));
  pointer-events: none;
}

.home-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(45, 90, 70, 0.16);
  border-color: rgba(229, 169, 187, 0.4);
}

.home-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(155, 191, 156, 0.22), rgba(45, 90, 70, 0.12));
}

.home-product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%, rgba(42, 33, 24, 0.44));
  pointer-events: none;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.07);
}

.home-product-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.home-product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  line-height: 1.2;
}

.home-product-badge {
  padding: 0.5rem 0.8rem;
  background: rgba(255, 247, 250, 0.92);
  border: 1px solid rgba(45, 90, 70, 0.12);
  color: var(--muted-brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-product-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.home-product-body {
  position: relative;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.home-product-body .eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
}

.home-product-body h3 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: 1.28rem;
  line-height: 1.18;
}

.home-product-price {
  margin: 0;
  flex-shrink: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(229, 169, 187, 0.18);
  color: var(--muted-brown);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(204, 135, 158, 0.18);
}

.home-product-note {
  margin: 0;
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-product-copy {
  margin: 0;
  color: rgba(47, 36, 26, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-product-details span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(45, 90, 70, 0.08);
  color: rgba(32, 53, 44, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-product-action {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.home-product-action .btn {
  min-width: 180px;
}

.home-products-status {
  min-height: 1.2rem;
  margin: 0.85rem 0 0;
  color: rgba(47, 36, 26, 0.66);
}

.home-section-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.florist-picks-section .home-products-status,
.florist-picks-section .home-section-actions {
  width: min(1400px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.home-cta-band {
  padding-top: 0;
}

.home-cta-band-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(45, 90, 70, 0.12);
  background: linear-gradient(120deg, rgba(29, 67, 50, 0.96), rgba(113, 156, 117, 0.92), rgba(204, 135, 158, 0.5));
  color: var(--off-white);
  padding: clamp(1.4rem, 2.8vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.home-cta-band-inner h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.home-cta-band-inner p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.home-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.home-cta-band-actions .btn-outline {
  border-color: rgba(95, 70, 51, 0.48);
  color: var(--muted-brown);
  background: rgba(255, 255, 255, 0.92);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 36, 26, 0.85), rgba(163, 177, 138, 0.6));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide .slide-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.slide-label {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-slide h1,
.hero-slide h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
}

.hero-slide p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--petal-deep), var(--terracotta));
  color: var(--off-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--leaf-deep), var(--muted-brown));
}

.btn-outline {
  background: rgba(255, 250, 252, 0.94);
  border: 2px solid rgba(45, 90, 70, 0.36);
  color: var(--muted-brown);
  box-shadow: 0 10px 22px rgba(45, 90, 70, 0.08);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(247, 255, 247, 0.98);
  border-color: rgba(204, 135, 158, 0.54);
  color: var(--muted-brown);
}

.product-feed-panel .btn-outline,
.product-search-form .btn-outline,
.featured-store .btn-outline,
.about-card .btn-outline,
.contact-card .btn-outline {
  border-color: rgba(95, 70, 51, 0.35);
  color: var(--muted-brown);
}

.btn:hover {
  transform: translateY(-2px);
}

.slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  pointer-events: none;
}

.slider-controls button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 242, 231, 0.5);
  font-size: 1.2rem;
  color: var(--muted-brown);
}

.slider-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
}

.slider-indicators button.is-active {
  background: var(--terracotta);
}

.section {
  padding: 4rem 1.5rem;
}

.section--first-products {
  padding-top: 1.25rem;
}

.section-heading {
  width: min(1400px, 100%);
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.section-heading h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  margin-bottom: 0.5rem;
}

.section-heading p {
  margin: 0;
  color: rgba(47, 36, 26, 0.75);
}

.featured-store {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(243, 249, 243, 0.92));
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.featured-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(245, 242, 231, 0.65);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(47, 36, 26, 0.15);
}

.featured-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-card-body {
  padding: 1.75rem;
}

.featured-card-body h3 {
  margin: 0.35rem 0 0.75rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
}

.featured-card-body p {
  margin-bottom: 1.25rem;
}

.featured-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.product-feed-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(242, 249, 242, 0.9));
  border: 1px solid rgba(45, 90, 70, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-feed-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(229, 169, 187, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(155, 191, 156, 0.18), transparent 26%);
  pointer-events: none;
}

.product-feed-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-feed-header h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.product-feed-subtext {
  margin: 0.65rem 0 0;
  color: rgba(47, 36, 26, 0.7);
  font-size: 1rem;
  max-width: 46rem;
}

.product-feed-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-feed-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.product-feed-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 250, 252, 0.78);
  border: 1px solid rgba(45, 90, 70, 0.12);
  color: rgba(32, 53, 44, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-search-form {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 247, 0.94));
  border: 1px solid rgba(45, 90, 70, 0.12);
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 18px 34px rgba(45, 90, 70, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-search-heading {
  display: grid;
  gap: 0.25rem;
}

.product-search-kicker {
  margin: 0;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-search-note,
.product-search-footnote {
  margin: 0;
  color: rgba(47, 36, 26, 0.66);
  font-size: 0.92rem;
}

.product-search-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.75);
  font-weight: 700;
}

.product-search-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.55rem;
}

.product-search-input {
  border: 1px solid rgba(95, 70, 51, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.9rem 1.1rem;
  font: inherit;
  color: var(--ink);
}

.product-search-input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(229, 169, 187, 0.24);
}

.product-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-chip {
  border: 1px solid rgba(95, 70, 51, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted-brown);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-chip:hover,
.product-chip:focus-visible,
.product-chip.is-active {
  background: linear-gradient(135deg, var(--petal-deep), var(--terracotta));
  border-color: var(--terracotta);
  color: var(--off-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2.8vw, 1.75rem);
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 242, 0.94));
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(45, 90, 70, 0.1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  border: 1px solid rgba(45, 90, 70, 0.12);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(229, 169, 187, 0.05));
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(45, 90, 70, 0.16);
  border-color: rgba(229, 169, 187, 0.38);
}

.product-card-media {
  position: relative;
  padding-top: 68%;
  background: linear-gradient(135deg, rgba(155, 191, 156, 0.38), rgba(229, 169, 187, 0.34));
}

.product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(42, 33, 24, 0.42));
  pointer-events: none;
}

.product-card-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
}

.product-card-category,
.product-card-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  max-width: 100%;
}

.product-card-badge {
  background: rgba(47, 36, 26, 0.78);
  color: var(--off-white);
  padding: 0.4rem 0.74rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.product-card-category {
  padding: 0.5rem 0.8rem;
  background: rgba(255, 247, 250, 0.92);
  border: 1px solid rgba(45, 90, 70, 0.12);
  color: var(--muted-brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-badge.is-sold-out {
  background: rgba(177, 58, 45, 0.88);
}

.product-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.07);
}

.product-card-body {
  position: relative;
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.product-card-body .eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
}

.product-card-body h3 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: 1.28rem;
  line-height: 1.18;
}

.product-card-price {
  margin: 0;
  flex-shrink: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(229, 169, 187, 0.16);
  box-shadow: inset 0 0 0 1px rgba(204, 135, 158, 0.18);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted-brown);
}

.product-card-note {
  margin: 0;
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-copy {
  margin: 0;
  color: rgba(47, 36, 26, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-card-details span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(95, 70, 51, 0.06);
  color: rgba(47, 36, 26, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.product-card-affordance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 2px solid rgba(95, 70, 51, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(47, 36, 26, 0.08);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-brown) !important;
}

.product-grid-status {
  margin: 1rem 0 0;
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: rgba(47, 36, 26, 0.65);
}

.product-grid-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.product-grid-actions .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.product-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-grid-wrapper[hidden] {
  display: none;
}

.product-detail-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  border-top: 1px solid rgba(107, 79, 58, 0.12);
  background: transparent;
  box-shadow: none;
  display: none;
}

.product-detail-shell.is-active,
.product-detail-shell:not([hidden]) {
  display: block;
}

.product-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.55);
}

.breadcrumb-link {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-brown);
  cursor: pointer;
}

.product-detail-lede {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 1.75rem 0 1.5rem;
}

.product-detail-lede h2 {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
}

.product-detail-lede p {
  margin: 0;
  color: rgba(47, 36, 26, 0.75);
}

.product-detail-lede .btn {
  align-self: flex-start;
  border-color: rgba(107, 79, 58, 0.35);
  color: var(--muted-brown);
}

.product-detail-panel {
  margin-top: 1.75rem;
  border-radius: 32px;
  border: 1px solid rgba(107, 79, 58, 0.12);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--off-white);
  box-shadow: 0 25px 55px rgba(47, 36, 26, 0.12);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: start;
}

.product-detail-media {
  border-radius: 28px;
  background: rgba(245, 242, 231, 0.7);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 360px;
}

.product-detail-media-primary {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.05);
}

.product-detail-media-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-media-skeleton {
  flex: 1;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), rgba(222, 209, 185, 0.65));
  min-height: 360px;
}

.product-detail-media-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.5rem;
}

.product-detail-media-thumbs button {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 2px;
}

.product-detail-media-thumbs button.is-active {
  box-shadow: 0 0 0 2px rgba(212, 163, 115, 0.9);
}

.product-detail-media-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
}

.product-detail-price {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--muted-brown);
}

.product-detail-status {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.6);
}

.product-detail-status.is-error {
  color: #b13a2d;
  letter-spacing: normal;
  text-transform: none;
}

.product-detail-description {
  line-height: 1.7;
  color: rgba(47, 36, 26, 0.85);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-detail-description p {
  margin-top: 0;
}

.product-detail-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.product-detail-facts li {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  background: rgba(243, 237, 226, 0.65);
  border: 1px solid rgba(95, 70, 51, 0.1);
}

.product-detail-facts span {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.58);
}

.product-detail-facts strong {
  font-size: 0.92rem;
  color: var(--muted-brown);
  text-align: right;
}

.product-detail-longcopy {
  padding-top: 0.25rem;
}

.product-detail-description ul,
.product-detail-description ol {
  padding-left: 1.25rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.product-detail-gift-amount {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: rgba(243, 237, 226, 0.65);
  border: 1px solid rgba(95, 70, 51, 0.14);
}

.product-detail-gift-amount[hidden] {
  display: none !important;
}

.product-detail-gift-amount-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.68);
}

.product-detail-gift-amount-input {
  width: 100%;
  max-width: 220px;
  border: 1px solid rgba(95, 70, 51, 0.28);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-brown);
  background: #fff;
}

.product-detail-gift-amount-input:focus {
  outline: 2px solid rgba(95, 70, 51, 0.2);
  outline-offset: 1px;
}

.product-detail-gift-amount-hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(47, 36, 26, 0.62);
}

.product-detail-gift-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: rgba(243, 237, 226, 0.65);
  border: 1px solid rgba(95, 70, 51, 0.14);
}

.product-detail-gift-options[hidden] {
  display: none !important;
}

.product-detail-gift-options-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.68);
}

.product-detail-gift-options-fields {
  display: grid;
  gap: 0.55rem;
}

.product-detail-gift-option-field {
  display: grid;
  gap: 0.35rem;
}

.product-detail-gift-option-field label {
  font-size: 0.82rem;
  color: rgba(47, 36, 26, 0.72);
}

.product-detail-gift-option-field input {
  width: 100%;
  border: 1px solid rgba(95, 70, 51, 0.28);
  border-radius: 10px;
  padding: 0.52rem 0.68rem;
  font-size: 0.96rem;
  color: var(--muted-brown);
  background: #fff;
}

.product-detail-gift-option-field input:focus {
  outline: 2px solid rgba(95, 70, 51, 0.2);
  outline-offset: 1px;
}

.product-detail-actions .btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.ecwid-silent-host,
[data-ecwid-hidden] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
  pointer-events: none;
}

.ecwid-silent-host.is-visible {
  position: static;
  width: min(1400px, 100%);
  height: auto;
  overflow: visible;
  clip: auto;
  opacity: 1;
  pointer-events: auto;
  margin: 1.25rem auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--off-white);
  border: 1px solid rgba(107, 79, 58, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

[data-ecwid-hidden].is-visible {
  position: static;
  width: 100%;
  height: auto;
  overflow: visible;
  clip: auto;
  opacity: 1;
  pointer-events: auto;
}

.cart-hero-panel {
  background: linear-gradient(120deg, rgba(29, 67, 50, 0.96), rgba(113, 156, 117, 0.8), rgba(204, 135, 158, 0.45));
  color: var(--off-white);
}

.cart-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.cart-hero-panel h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin: 0 0 0.75rem;
}

.cart-hero-panel p {
  margin-top: 0;
}

.cart-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.cart-hero-panel .btn-outline {
  border-color: rgba(95, 70, 51, 0.5);
  color: var(--muted-brown);
  background: rgba(255, 255, 255, 0.9);
}

.cart-hero-panel .btn-outline::after {
  border-color: rgba(95, 70, 51, 0.5);
}

.cart-hero-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.cart-panel {
  background: var(--off-white);
  border: none;
  box-shadow: var(--shadow-soft);
}

.checkout-embed-panel {
  background: var(--off-white);
  border: 1px solid rgba(107, 79, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.checkout-embed-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkout-embed-header h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
}

.checkout-embed-header p {
  margin: 0.35rem 0 0;
  color: rgba(47, 36, 26, 0.72);
}

.checkout-embed-shell {
  background: rgba(245, 242, 231, 0.4);
  border: 1px solid rgba(107, 79, 58, 0.12);
  border-radius: 24px;
  padding: 0.75rem;
  min-height: 620px;
}

.cart-debug-panel {
  background: #111;
  color: #e7f8d4;
  border: 1px solid rgba(143, 164, 121, 0.45);
}

.cart-debug-output {
  margin: 0;
  background: #0a0a0a;
  color: #cdf5a6;
  border: 1px solid rgba(143, 164, 121, 0.25);
  border-radius: 14px;
  padding: 0.9rem;
  max-height: 420px;
  overflow: auto;
  font-size: 0.78rem;
  line-height: 1.45;
}

body.is-checkout-embed .cart-hero-panel,
body.is-checkout-embed .cart-panel {
  display: none;
}

.cart-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.cart-panel-header h2 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
}

.cart-panel-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-panel .btn-outline {
  border-color: rgba(107, 79, 58, 0.35);
  color: var(--muted-brown);
}

.cart-panel .btn-outline::after {
  border-color: rgba(107, 79, 58, 0.35);
}

.cart-panel-body {
  border: 1px solid rgba(107, 79, 58, 0.1);
  border-radius: 28px;
  padding: 1rem;
  background: rgba(245, 242, 231, 0.4);
}

.cart-panel-body > div {
  border-radius: 20px;
}

.cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 240px;
  text-align: center;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  border: 1px dashed rgba(107, 79, 58, 0.3);
}

.cart-state-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(107, 79, 58, 0.2);
  border-top-color: var(--terracotta);
  animation: spin 0.9s linear infinite;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  background: var(--off-white);
  padding: clamp(0.95rem, 2vw, 1.25rem);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 79, 58, 0.08);
}

.cart-item-body {
  display: flex;
  flex-direction: column;
}

.cart-item.is-busy {
  opacity: 0.6;
}

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 1fr;
  }
}

.cart-item-media {
  border-radius: 24px;
  overflow: hidden;
}

.cart-item-media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 22px;
}

.cart-item-heading {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
}

.cart-item-heading h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.cart-item-remove {
  border: none;
  background: none;
  color: var(--terracotta);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}

.cart-item-options {
  margin: 0.35rem 0 0;
  color: rgba(47, 36, 26, 0.65);
  font-size: 0.9rem;
}

.cart-item-controls {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(107, 79, 58, 0.3);
  border-radius: 999px;
  padding: 0.15rem 0.75rem;
}

.cart-item-qty button {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-item-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.cart-item-qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cart-item-amount {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cart-item-amount label {
  font-size: 0.82rem;
  color: rgba(47, 36, 26, 0.7);
}

.cart-item-amount input {
  width: 120px;
  border: 1px solid rgba(107, 79, 58, 0.3);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  font-size: 0.92rem;
}

.cart-item-amount button {
  border: 1px solid rgba(107, 79, 58, 0.32);
  background: transparent;
  color: var(--muted-brown);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-item-price {
  text-align: right;
}

.cart-item-price span {
  display: block;
  font-size: 0.85rem;
  color: rgba(47, 36, 26, 0.65);
}

.cart-summary {
  background: var(--off-white);
  border-radius: 32px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 79, 58, 0.12);
  position: sticky;
  top: 118px;
}

.cart-summary h3 {
  margin-top: 0;
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.cart-summary-row--total {
  font-size: 1.2rem;
  font-weight: 600;
}

.cart-summary-divider {
  height: 1px;
  background: rgba(107, 79, 58, 0.15);
}

.cart-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.cart-summary-actions .btn {
  width: 100%;
}

.cart-summary-note {
  font-size: 0.85rem;
  color: rgba(47, 36, 26, 0.65);
  margin-bottom: 0;
}

.cart-error {
  color: #b3261e;
  font-size: 0.85rem;
  min-height: 1.2rem;
}

.about-grid,
.contact-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-card,
.contact-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(244, 250, 244, 0.92));
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-card::after,
.contact-card::after,
.form-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -52px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(229, 169, 187, 0.22) 0 18%, transparent 19%),
    radial-gradient(circle at 28% 42%, rgba(247, 219, 229, 0.28) 0 15%, transparent 16%),
    radial-gradient(circle at 72% 42%, rgba(247, 219, 229, 0.28) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 74%, rgba(155, 191, 156, 0.22) 0 16%, transparent 17%);
  opacity: 0.72;
  pointer-events: none;
}

.hours-widget {
  display: grid;
  gap: 1rem;
}

.hours-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.hours-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(45, 90, 70, 0.08);
  color: var(--muted-brown);
}

.hours-status-badge.is-open {
  background: rgba(90, 134, 70, 0.16);
  color: #335c26;
}

.hours-status-badge.is-closed {
  background: rgba(120, 89, 64, 0.12);
}

.hours-status-badge.is-appointment,
.hours-status-badge.is-custom {
  background: rgba(229, 169, 187, 0.18);
  color: #8f4f63;
}

.hours-status-detail,
.hours-today,
.hours-note,
.hours-special-note {
  color: rgba(47, 36, 26, 0.76);
}

.hours-summary-list,
.hours-table,
.hours-special-list {
  display: grid;
  gap: 0.55rem;
}

.hours-summary-line,
.hours-table-row,
.hours-special-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(95, 70, 51, 0.12);
}

.hours-summary-line:first-child,
.hours-table-row:first-child,
.hours-special-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hours-summary-days,
.hours-day,
.hours-special-date {
  font-weight: 700;
}

.hours-summary-value,
.hours-value,
.hours-special-body {
  text-align: right;
}

.hours-table-row.is-today {
  margin: 0 -0.85rem;
  padding: 0.85rem;
  border-top: 0;
  border-radius: 18px;
  background: rgba(229, 169, 187, 0.14);
}

.hours-special-heading {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.55);
}

.hours-special-title {
  display: block;
  font-weight: 700;
}

.hours-special-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
}

.contact-card h3,
.about-card h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin-top: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-hours {
  flex: 1 1 320px;
  max-width: 420px;
  display: grid;
  gap: 0.7rem;
}

.footer-hours-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  background: linear-gradient(135deg, rgba(29, 67, 50, 0.98), rgba(45, 90, 70, 0.98));
  color: var(--off-white);
  padding: 2.5rem 1.5rem;
  margin-top: auto;
}

.site-footer .footer-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer .hours-status-badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--off-white);
}

.site-footer .hours-status-detail,
.site-footer .hours-today,
.site-footer .hours-day,
.site-footer .hours-summary-days,
.site-footer .hours-value,
.site-footer .hours-summary-value,
.site-footer .hours-special-heading,
.site-footer .hours-special-date,
.site-footer .hours-special-body,
.site-footer .hours-special-note,
.site-footer .hours-note {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer .hours-summary-line,
.site-footer .hours-table-row,
.site-footer .hours-special-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  color: rgba(45, 90, 70, 0.7);
}

.contact-meta-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-meta-list a {
  text-decoration: underline;
}

.contact-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  background: linear-gradient(135deg, rgba(29, 67, 50, 0.96), rgba(65, 110, 82, 0.92), rgba(204, 135, 158, 0.44));
  color: var(--off-white);
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: auto 6% -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(247, 219, 229, 0.24) 0 18%, transparent 19%),
    radial-gradient(circle at 28% 42%, rgba(247, 219, 229, 0.18) 0 15%, transparent 16%),
    radial-gradient(circle at 72% 42%, rgba(247, 219, 229, 0.18) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 74%, rgba(155, 191, 156, 0.18) 0 16%, transparent 17%);
  opacity: 0.8;
  pointer-events: none;
}

.contact-hero-content {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-hero-text h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-hero-text p {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.contact-hero-panel {
  display: grid;
  gap: 1.5rem;
}

.panel-card {
  background: rgba(255, 248, 251, 0.12);
  border-radius: 26px;
  padding: 1.75rem;
  box-shadow: 0 30px 50px rgba(16, 42, 31, 0.24);
  backdrop-filter: blur(6px);
}

.panel-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.panel-card li {
  margin-bottom: 0.35rem;
}

.panel-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.panel-card .hours-status-badge {
  background: rgba(255, 255, 255, 0.16);
  color: var(--off-white);
}

.panel-card .hours-status-detail,
.panel-card .hours-today,
.panel-card .hours-day,
.panel-card .hours-value,
.panel-card .hours-special-heading,
.panel-card .hours-special-date,
.panel-card .hours-special-body,
.panel-card .hours-special-note,
.panel-card .hours-note {
  color: rgba(255, 255, 255, 0.86);
}

.panel-card .hours-summary-line,
.panel-card .hours-table-row,
.panel-card .hours-special-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.panel-card .hours-table-row.is-today {
  background: rgba(255, 255, 255, 0.14);
}

.contact-info-section {
  background: linear-gradient(180deg, rgba(240, 248, 240, 0.94), rgba(252, 241, 246, 0.84));
}

.contact-form-section {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(243, 249, 243, 0.92));
}

.contact-form-grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form-copy {
  max-width: none;
}

.form-card {
  position: relative;
  background: linear-gradient(180deg, rgba(241, 248, 241, 0.98), rgba(253, 244, 247, 0.88));
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  width: 100%;
  overflow: hidden;
}

.form-mode-picker {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-mode-legend {
  width: 100%;
  margin-bottom: 0.25rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
  font-size: 1.15rem;
}

.form-mode-option {
  position: relative;
  flex: 1 1 180px;
}

.form-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-mode-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(45, 90, 70, 0.14);
  color: var(--muted-brown);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.form-mode-option input:checked + span {
  background: linear-gradient(135deg, rgba(229, 169, 187, 0.2), rgba(155, 191, 156, 0.14));
  border-color: rgba(204, 135, 158, 0.42);
  box-shadow: 0 12px 24px rgba(45, 90, 70, 0.08);
}

.form-mode-option span:hover {
  transform: translateY(-2px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.form-grid--nested {
  margin-top: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--muted-brown);
}

.form-field span {
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(47, 36, 26, 0.15);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif;
  background: var(--off-white);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(229, 169, 187, 0.28);
  outline: none;
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted-brown) 50%), linear-gradient(135deg, var(--muted-brown) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-section {
  border: 1px solid rgba(45, 90, 70, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  padding: 1.25rem;
}

.form-section-heading h3 {
  margin: 0;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--muted-brown);
}

.form-section-heading p {
  margin: 0.45rem 0 0;
  color: rgba(47, 36, 26, 0.72);
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.95rem;
}

.form-status[data-state='success'] {
  color: var(--sage);
}

.form-status[data-state='error'] {
  color: var(--terracotta);
}

.form-status[data-state='loading'] {
  color: rgba(47, 36, 26, 0.75);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  transition:
    opacity 0.7s var(--ease-floral),
    transform 0.85s var(--ease-floral),
    filter 0.7s var(--ease-floral);
  transition-delay: var(--reveal-delay, 0ms);
  filter: saturate(0.9);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-subtle {
  transform: translate3d(0, 28px, 0);
}

.reveal-on-scroll.reveal-left {
  transform: translate3d(-44px, 30px, 0);
}

.reveal-on-scroll.reveal-right {
  transform: translate3d(44px, 30px, 0);
}

.reveal-on-scroll.reveal-zoom {
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }
}

@media (max-width: 640px) {
  .hero-slide {
    padding: 2rem;
  }

  .products-hero-background {
    background-position: 72% center;
  }

  .products-hero-grid {
    gap: 1.75rem;
  }

  .products-hero-visual {
    min-height: 320px;
  }

  .contact-hero-content,
  .contact-form-grid {
    gap: 2rem;
  }

  .home-products-shell {
    padding: 1rem;
  }

  .home-cta-band-inner {
    padding: 1rem;
  }

  .home-cta-band-actions {
    width: 100%;
  }

  .home-cta-band-actions .btn {
    width: 100%;
  }

  .form-card {
    padding: 2rem;
  }
}

/* Ecwid overrides */
.ecwid {
  font-family: 'Lato', 'Segoe UI', Tahoma, sans-serif !important;
  color: var(--ink);
}

.ecwid-productBrowser,
.ecwid-productBrowser-head,
.ecwid-productBrowser-productsListProductNameLink,
.ecwid-productBrowser-sku {
  color: var(--ink) !important;
}

.ecwid-productBrowser-head {
  font-family: 'Playfair Display', 'Times New Roman', serif !important;
  letter-spacing: 0.08em;
  color: var(--muted-brown) !important;
}

.ecwid-productBrowser-productsGrid-productWrapper {
  background: rgba(245, 242, 231, 0.8) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-soft) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.ecwid-productBrowser-productsGrid-productWrapper:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 45px rgba(47, 36, 26, 0.18) !important;
}

.ecwid-productBrowser-productsGrid-productTopFragment,
.ecwid-productBrowser-productsGrid-productBottomFragment {
  background: transparent !important;
  padding: 1.5rem !important;
}

.ecwid-productBrowser-productsGrid-productTopFragment {
  border-bottom: 1px solid rgba(107, 79, 58, 0.15) !important;
}

.ecwid-productBrowser-productsGrid-productImage {
  margin: -1rem -1.5rem 1rem !important;
}

.ecwid-productBrowser-productsGrid-productImage img {
  border-radius: 24px !important;
  height: 220px !important;
  width: 100% !important;
  object-fit: cover !important;
}

.ecwid-productBrowser-productsGrid-productTitle a {
  font-family: 'Playfair Display', 'Times New Roman', serif !important;
  font-size: 1.3rem !important;
  color: var(--muted-brown) !important;
}

.ecwid-productBrowser-price {
  font-weight: 700 !important;
  color: var(--ink) !important;
  font-size: 1.05rem !important;
}

.ecwid-productBrowser-productsGrid-productBottomFragment {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.ecwid-btn--primary,
.ecwid-btn--secondary {
  border-radius: 999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em;
  font-weight: 700 !important;
  padding: 0.85rem 1.75rem !important;
  background: var(--terracotta) !important;
  border: none !important;
  color: var(--off-white) !important;
}

.ecwid-btn--primary:hover,
.ecwid-btn--primary:focus,
.ecwid-btn--secondary:hover,
.ecwid-btn--secondary:focus {
  background: var(--sage) !important;
}

.ecwid-productBrowser-search,
.ecwid-productBrowser-auth,
.ecwid-searchWidget {
  display: none !important;
}

.ecwid-popup--cart .ecwid-popup__container,
.ecwid-productBrowser-cart {
  background: var(--warm-beige) !important;
  border-radius: 32px !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .top-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      'menu brand utilities';
    text-align: left;
    row-gap: 0;
    column-gap: 0.6rem;
    position: relative;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-area: menu;
  }

  .brand-mark {
    grid-area: brand;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.25rem;
    width: min(88vw, 340px);
    max-height: min(70vh, 420px);
    background: var(--off-white);
    border: 1px solid rgba(95, 70, 51, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.45rem;
    overflow-y: auto;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li + li {
    border-top: 1px solid rgba(95, 70, 51, 0.12);
  }

  .nav-links a,
  .nav-links .nav-link-button {
    display: block;
    width: 100%;
    padding: 0.72rem 0.6rem;
    text-align: left;
    letter-spacing: 0.03em;
    border-radius: 10px;
  }

  .nav-links a::after,
  .nav-links .nav-link-button::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active,
  .nav-links .nav-link-button:hover,
  .nav-links .nav-link-button:focus-visible {
    background: rgba(243, 237, 226, 0.82);
  }

  .site-header.is-mobile-nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-utilities {
    grid-area: utilities;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.45rem;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    border: none;
    margin: 0;
    padding: 0;
    background: rgba(47, 36, 26, 0.45);
    z-index: 140;
  }

  .site-header.is-mobile-nav-open .mobile-nav-overlay {
    display: block;
  }
}

@media (max-width: 900px) {
  .top-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      'menu brand utilities';
    text-align: left;
    row-gap: 0;
    column-gap: 0.6rem;
    position: relative;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-area: menu;
  }

  .brand-mark {
    grid-area: brand;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.25rem;
    width: min(88vw, 340px);
    max-height: min(70vh, 420px);
    background: var(--off-white);
    border: 1px solid rgba(95, 70, 51, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.45rem;
    overflow-y: auto;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li + li {
    border-top: 1px solid rgba(95, 70, 51, 0.12);
  }

  .nav-links a,
  .nav-links .nav-link-button {
    display: block;
    width: 100%;
    padding: 0.72rem 0.6rem;
    text-align: left;
    letter-spacing: 0.03em;
    border-radius: 10px;
  }

  .nav-links a::after,
  .nav-links .nav-link-button::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active,
  .nav-links .nav-link-button:hover,
  .nav-links .nav-link-button:focus-visible {
    background: rgba(243, 237, 226, 0.82);
  }

  .site-header.is-mobile-nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-utilities {
    grid-area: utilities;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.45rem;
  }

  .cart-button {
    justify-self: auto;
    min-height: 38px;
    padding: 0.4rem 0.68rem;
    font-size: 0.82rem;
    gap: 0.3rem;
  }

  .cart-count {
    padding: 0.04rem 0.42rem;
    font-size: 0.74rem;
  }

  .account-chip {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }

  .account-chip .account-avatar {
    width: 24px;
    height: 24px;
    background: transparent;
  }

  .account-chip .account-avatar svg {
    width: 18px;
    height: 18px;
  }

  .account-chip .account-text {
    display: none;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    border: none;
    margin: 0;
    padding: 0;
    background: rgba(47, 36, 26, 0.45);
    z-index: 140;
  }

  .site-header.is-mobile-nav-open .mobile-nav-overlay {
    display: block;
  }

  .page-shell {
    padding-inline: 1rem;
  }

  .page-panel {
    border-radius: 26px;
    padding: clamp(1.2rem, 3vw, 2rem);
  }

  .section {
    padding: clamp(2.25rem, 6vw, 3.4rem) 1rem;
  }

  .about-grid,
  .contact-grid,
  .contact-form-grid,
  .product-grid {
    gap: 1.2rem;
  }

  .about-card,
  .contact-card,
  .form-card {
    padding: clamp(1.25rem, 3vw, 2rem);
  }

  .hours-summary-line,
  .hours-table-row,
  .hours-special-item {
    flex-direction: column;
  }

  .hours-summary-value,
  .hours-value,
  .hours-special-body {
    text-align: left;
  }

  .cart-item-controls {
    gap: 0.65rem;
    justify-content: flex-start;
  }

  .hero-slide {
    padding: 2.5rem;
  }

  .featured-flower-product-grid {
    grid-auto-columns: 136px;
  }

  .featured-flower-primary,
  .featured-flower-primary-image {
    min-height: 240px;
  }

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

  .product-detail-media {
    min-height: 280px;
  }

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

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

  .product-search-row .btn {
    width: 100%;
  }

  .products-hero-visual {
    width: min(420px, 100%);
    min-height: clamp(260px, 52vw, 380px);
  }

  .product-detail-lede {
    flex-direction: column;
  }

  .product-detail-lede .btn {
    align-self: stretch;
  }

  .cart-summary {
    position: static;
    top: auto;
  }

  .checkout-embed-header {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-embed-header .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 78vh;
    height: 78vh;
  }

  .hero-slide {
    height: 78vh;
    padding: 1.4rem;
  }

  .hero-slide .slide-content {
    max-width: 100%;
  }

  .slider-controls {
    padding-inline: 0.5rem;
  }

  .slider-controls button {
    width: 42px;
    height: 42px;
  }

  .top-nav {
    padding-inline: 0.75rem;
  }

  .brand-logo {
    height: 58px;
    max-width: 130px;
  }

  .mobile-menu-toggle {
    min-height: 36px;
    padding: 0.28rem 0.72rem;
    font-size: 0.84rem;
  }

  .nav-utilities {
    gap: 0.35rem;
  }

  .cart-button {
    padding-inline: 0.58rem;
    font-size: 0.78rem;
  }

  .page-panel {
    border-radius: 22px;
  }

  .product-card-body {
    padding: 1.1rem;
  }

  .product-detail-shell {
    padding: 1rem 0 0;
  }

  .product-detail-panel {
    border-radius: 22px;
    padding: 1rem;
  }

  .product-detail-media {
    min-height: 220px;
    padding: 0.75rem;
  }

  .product-detail-media-skeleton {
    min-height: 220px;
  }

  .featured-flower-products-shell {
    padding: 0.85rem;
  }

  .cart-item {
    border-radius: 22px;
  }

  .cart-item-media img {
    height: 190px;
  }

  .cart-summary {
    border-radius: 20px;
    padding: 1rem;
  }

  .contact-hero {
    padding-inline: 1rem;
  }

  .contact-hero-cta .btn {
    width: 100%;
  }

  .site-footer .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.order-success-panel {
  background: linear-gradient(160deg, #fffdf9 0%, #fff6ef 100%);
}

.order-success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.order-success-card {
  background: #fff;
  border: 1px solid rgba(95, 70, 51, 0.12);
  border-radius: 20px;
  padding: 1rem 1.1rem;
}

.order-success-card h2 {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.35rem;
}

.order-success-meta {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.order-success-meta dt {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(95, 70, 51, 0.8);
}

.order-success-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
  color: var(--ink);
}

.order-success-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.order-success-items li {
  list-style: none;
  color: rgba(42, 33, 24, 0.9);
}

.order-success-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.8rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(95, 70, 51, 0.12);
  border-radius: 14px;
  padding: 0.6rem;
}

.order-success-item-image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5efe6;
}

.order-success-item-content {
  display: grid;
  gap: 0.2rem;
}

.order-success-item-title {
  font-size: 0.95rem;
  line-height: 1.3;
}

.order-success-item-meta {
  font-size: 0.8rem;
  color: rgba(95, 70, 51, 0.9);
}

.order-success-item-detail-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.order-success-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  justify-self: end;
  text-align: right;
}

@media (max-width: 640px) {
  .order-success-item {
    grid-template-columns: 50px 1fr;
    gap: 0.65rem;
  }

  .order-success-item-image {
    width: 50px;
    height: 50px;
  }
}

.order-success-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}