@font-face {
  font-family: "Cormorant";
  src: url("./assets/cormorant-normal-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("./assets/cormorant-italic-500.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("./assets/dm-sans-normal-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --paper: #fff;
  --ink: #233d33;
  --forest: #244b3d;
  --forest-dark: #183c2e;
  --muted: #69736c;
  --rose: #eedddd;
  --rose-light: #f8f1f0;
  --rose-deep: #885258;
  --sage: #eef2ed;
  --line: #dce2dc;
  --display: "Cormorant", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 20px 80px rgb(16 37 27 / 17%);
  --header-height: 116px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body:has(
  .product-drawer:not([hidden]),
  .order-drawer:not([hidden]),
  .chat-panel:not([hidden]),
  .mobile-nav.is-open,
  .store-filters.is-open
) {
  overflow: hidden;
}
[hidden] {
  display: none !important;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
input,
textarea,
select {
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
}
button {
  border: 0;
}
a,
button,
input,
textarea,
select {
  outline-offset: 5px;
}
:focus-visible {
  outline: 2px solid var(--rose-deep);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}
h2 {
  font-size: 52px;
}
h3 {
  font-weight: 500;
}
h1 em,
h2 em {
  font-weight: 500;
}
p {
  color: var(--muted);
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--forest);
  margin-bottom: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--forest);
  color: white;
}
.skip-link:focus {
  top: 12px;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 50%;
  transition:
    background 0.2s,
    color 0.2s;
}
.icon-button:hover {
  background: var(--sage);
}
.icon-button svg {
  width: 21px;
  height: 21px;
}
.button,
.nav-action,
.store-primary-action,
.store-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid var(--forest);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
  text-align: center;
}
.button.primary,
.store-primary-action {
  background: var(--forest);
  color: #fff;
}
.button.primary:hover,
.store-primary-action:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}
.button.secondary,
.store-secondary-action {
  background: transparent;
  color: var(--forest);
}
.button.secondary:hover,
.store-secondary-action:hover {
  background: var(--sage);
}
.button svg {
  width: 18px;
  height: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 8px 0;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link:hover svg {
  transform: translateX(3px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: white;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
}
.notice {
  background: var(--forest);
  color: #f7f8f1;
  min-height: 31px;
  font-size: 10px;
}
.notice-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 31px;
}
.notice a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.notice svg {
  width: 12px;
  height: 12px;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-symbol {
  display: block;
  width: 37px;
  height: 44px;
  overflow: hidden;
}
.brand-symbol img {
  width: 49px;
  max-width: none;
  transform: translate(-5px, -1px);
  mix-blend-mode: multiply;
}
.brand-wordmark {
  width: 138px;
  height: auto;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
  white-space: nowrap;
}
.nav-links a {
  font-size: 12px;
  padding-block: 31px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-links a:hover::after,
.nav-links a[aria-current]::after {
  transform: scaleX(1);
}
.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-action {
  min-height: 42px;
  padding: 10px 16px;
  gap: 10px;
  font-size: 11px;
  background: var(--forest);
  color: white;
}
.nav-action:hover {
  background: var(--forest-dark);
}
.nav-action svg {
  width: 16px;
  height: 16px;
}
.mobile-menu-toggle {
  display: none;
}
.site-search {
  border-top: 1px solid var(--line);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 12px 20px #233d330a;
}
.site-search form {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}
.site-search input {
  flex: 1;
  width: 0;
  border: 0;
  background: none;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
}
.site-search input:focus-visible {
  outline: 2px solid var(--line);
}
.mobile-menu-backdrop,
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: #17281d66;
  z-index: 80;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 81;
  width: min(400px, 100%);
  height: 100dvh;
  padding: 22px 26px;
  background: #fff;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.mobile-nav-links a {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.3;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.mobile-nav .button {
  display: flex;
}
.mobile-nav-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  font-size: 13px;
}

.hero {
  position: relative;
  isolation: isolate;
  height: min(600px, calc(100svh - 215px));
  min-height: 460px;
  overflow: hidden;
  background: #e5e5e3;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(250, 249, 247, 0.85),
    rgba(250, 249, 247, 0.65) 34%,
    rgba(250, 249, 247, 0) 65%
  );
}
.hero-inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.hero-copy {
  max-width: 550px;
  padding-block: 36px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}
.little-line {
  height: 1px;
  background: var(--forest);
  width: 25px;
}
.hero h1 {
  font-size: 100px;
  line-height: 0.92;
  margin-left: -3px;
}
.hero h1 em {
  color: var(--forest);
  font-weight: 500;
}
.hero-lead {
  max-width: 328px;
  margin-top: 22px;
  color: #435a4e;
  font-size: 14px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}
.hero-actions .text-link {
  font-size: 11px;
}
.hero-signature {
  font-size: 10px;
  margin-top: 30px;
  color: #56665b;
}
.hero-caption {
  position: absolute;
  bottom: 25px;
  right: 4%;
  font-size: 9px;
  text-align: right;
  line-height: 1.5;
  color: var(--forest);
  background: #fff9;
  padding: 8px 12px;
  border-radius: 2px;
}
.hero-caption em {
  font-family: var(--display);
  font-size: 19px;
}
.care-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}
.care-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 68px;
}
.care-strip span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-size: 11px;
}
.care-strip span + span {
  border-left: 1px solid var(--line);
}
.care-strip svg {
  width: 23px;
  height: 23px;
  color: var(--forest);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.8;
  padding-bottom: 7px;
}
.section-heading > .text-link {
  margin-bottom: 4px;
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.occasion-card {
  display: block;
  min-width: 0;
}
.occasion-image {
  aspect-ratio: 1/1.08;
  overflow: hidden;
  background: var(--sage);
}
.occasion-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transition: transform 0.65s;
}
.occasion-card:hover .occasion-image img {
  transform: scale(1.035);
}
.occasion-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--rose-light);
  padding: 19px 20px;
}
.birthday .occasion-copy {
  background: #f6f1df;
}
.home .occasion-copy {
  background: #eef2ed;
}
.baskets .occasion-copy {
  background: #edf0f3;
}
.occasion-copy small {
  display: block;
  font-size: 10px;
  color: #69706a;
  margin-bottom: 4px;
}
.occasion-copy strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  display: block;
}
.occasion-copy > svg {
  width: 21px;
  height: 21px;
}
.favorites-section {
  background: #f5f7f4;
  padding-top: 72px;
}
.collection-tabs {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4ddd4;
  overflow-x: auto;
  scrollbar-width: none;
}
.collection-tabs button {
  flex-shrink: 0;
  padding: 12px 0 17px;
  background: none;
  color: #6c766d;
  font-size: 12px;
  position: relative;
}
.collection-tabs button[aria-selected="true"] {
  color: var(--forest);
}
.collection-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--forest);
}
.home-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  min-height: 360px;
}
.home-product-image {
  display: block;
  aspect-ratio: 1/1.12;
  position: relative;
  overflow: hidden;
  background: #e9ece6;
}
.home-product-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
}
.home-product:hover img {
  transform: scale(1.035);
}
.product-image-action {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #ffffffed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 11px;
  transform: translateY(80px);
  transition: transform 0.25s;
}
.home-product-image:hover .product-image-action,
.home-product-image:focus-visible .product-image-action {
  transform: none;
}
.home-product-copy {
  padding: 16px 0 0;
}
.product-category {
  display: block;
  color: #6a786b;
  font-size: 9px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.home-product h3 {
  font-size: 15px;
  line-height: 1.4;
  min-height: 42px;
  padding-right: 5px;
}
.home-product-copy > p {
  font-size: 14px;
  color: var(--forest);
  margin-top: 7px;
}
.collection-more {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 34px auto 0;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 6px;
}
.story-section {
  padding-block: 82px;
  background: var(--rose-light);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 110px;
  align-items: center;
}
.story-photo {
  position: relative;
  margin: 0;
  max-width: 465px;
}
.story-photo img {
  width: 100%;
  aspect-ratio: 3/3.6;
  object-fit: cover;
  object-position: center 44%;
}
.story-photo figcaption {
  font-size: 10px;
  color: var(--rose-deep);
  padding-top: 13px;
}
.story-copy .eyebrow {
  color: var(--rose-deep);
}
.story-copy h2 {
  font-size: 50px;
}
.story-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.95;
  margin-top: 22px;
  max-width: 390px;
}
.story-copy .text-link {
  margin-top: 17px;
}
.story-signature {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid #e6d4d3;
  display: flex;
  align-items: center;
  gap: 20px;
}
.story-signature span {
  font-size: 10px;
  color: var(--rose-deep);
}
.story-signature strong {
  font-family: var(--display);
  font-size: 31px;
  font-style: italic;
  font-weight: 500;
}
.gift-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  padding-block: 85px;
}
.gift-note-copy {
  max-width: 400px;
}
.gift-note-copy > svg {
  width: 40px;
  height: 40px;
  color: var(--rose-deep);
  margin-bottom: 15px;
}
.gift-note-copy p {
  font-size: 13px;
  line-height: 1.9;
}
.gift-note-copy .text-link {
  margin-top: 18px;
}
.contact-section {
  background: var(--sage);
  padding-block: 56px;
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-inner h2 {
  font-size: 40px;
}
.contact-inner .eyebrow {
  margin-bottom: 10px;
}
.contact-inner p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 12px;
}
.contact-inner > .button {
  flex-shrink: 0;
}
.site-footer {
  background: var(--forest-dark);
  color: #fff;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr;
  gap: 65px;
  padding-block: 53px;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: 39px;
  line-height: 1.1;
  display: inline-block;
}
.footer-wordmark em {
  color: #e5c7cb;
}
.footer-wordmark span {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  margin-top: 9px;
}
.footer-brand p {
  color: #c0cfc4;
  font-size: 11px;
  line-height: 1.8;
  margin-top: 20px;
}
.footer-main h2 {
  font: 500 12px var(--sans);
  margin-bottom: 19px;
  color: #fff;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-links a,
.footer-contact a {
  font-size: 11px;
  color: #c7d5cb;
  line-height: 1.7;
}
.footer-main a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-contact svg {
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
.footer-contact .footer-address {
  margin-top: 7px;
}
.footer-bottom {
  padding-block: 19px;
  border-top: 1px solid #ffffff24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: #c0d0c4;
}
.back-top {
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff40;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.back-top svg {
  width: 14px;
  height: 14px;
}

/* Storefront */
.store-hero {
  background: var(--rose-light);
  padding: 22px 0 36px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.store-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.store-intro h1 {
  font-size: 64px;
}
.store-intro .eyebrow {
  margin-bottom: 10px;
}
.store-intro p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 12px;
}
.store-flower-mark {
  color: #c79297;
  transform: rotate(-12deg);
  margin-right: 42px;
}
.store-flower-mark svg {
  width: 80px;
  height: 80px;
  stroke-width: 0.7;
}
.store-page-section {
  padding-bottom: 70px;
}
.occasion-filter-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}
.occasion-filter-bar > span {
  font-size: 11px;
  flex-shrink: 0;
}
.store-chip-row {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 10px;
}
.store-chip-row button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 3px;
  font-size: 11px;
  padding: 8px 15px;
  white-space: nowrap;
  min-height: 36px;
}
.store-chip-row button.active {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}
.store-chip-row button:hover:not(.active) {
  background: var(--sage);
}
.store-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
.store-count {
  font-size: 13px;
  color: var(--muted);
}
.store-toolbar {
  display: flex;
  gap: 14px;
  align-items: center;
}
.sort-field {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
}
.sort-field > span {
  color: var(--muted);
}
.sort-field select {
  background: transparent;
  border: 0;
  padding: 10px 20px 10px 6px;
  max-width: 180px;
  cursor: pointer;
}
.filter-toggle {
  display: none;
}
.store-layout {
  display: grid;
  grid-template-columns: 206px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.store-filters {
  position: sticky;
  top: 138px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-right: 22px;
}
.filter-panel-title h2 {
  font: 500 13px var(--sans);
}
.filter-panel-title .icon-button,
.filter-apply {
  display: none;
}
.store-search > span,
.store-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
}
.store-search > span {
  margin-bottom: 10px;
}
.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.search-input-wrap svg {
  width: 15px;
  height: 15px;
}
.search-input-wrap input {
  border: 0;
  padding: 11px 0;
  background: transparent;
  font-size: 11px;
  width: 100%;
  outline-offset: 0;
}
.store-field input,
.store-field select,
.store-field textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 11px;
  font-size: 12px;
  min-height: 44px;
  line-height: 1.5;
  font-weight: 400;
}
.store-field select {
  cursor: pointer;
}
.store-field input:hover,
.store-field select:hover {
  border-color: #aabbaa;
}
.store-clear {
  align-self: flex-start;
  font-size: 10px;
}
.store-clear svg {
  width: 13px;
  height: 13px;
}
.filter-help {
  border-top: 1px solid var(--line);
  padding-top: 27px;
  margin-top: 2px;
}
.filter-help > svg {
  width: 25px;
  height: 25px;
  color: var(--rose-deep);
}
.filter-help strong {
  display: block;
  font: 500 22px var(--display);
  line-height: 1.2;
  margin-top: 12px;
}
.filter-help p {
  font-size: 11px;
  margin-top: 8px;
}
.filter-help .text-link {
  font-size: 10px;
  margin-top: 7px;
}
.store-results {
  min-width: 0;
}
.store-active-bar:empty {
  display: none;
}
.store-active-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 19px;
  font-size: 11px;
}
.store-active-bar button {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--sage);
  padding: 6px 10px;
  border-radius: 3px;
}
.store-active-bar svg {
  width: 12px;
  height: 12px;
}
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 21px;
}
.store-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.store-image-button {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
  aspect-ratio: 1/1.12;
  background: #f0f2ee;
  border-radius: 3px;
}
.store-image-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}
.store-image-button:hover img {
  transform: scale(1.035);
}
.store-image-view {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #ffffffed;
  display: grid;
  place-items: center;
}
.store-image-view svg {
  width: 17px;
  height: 17px;
}
.store-card-copy {
  padding: 16px 0 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.store-card-meta {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}
.store-card-copy h3 {
  font-size: 14px;
  line-height: 1.4;
  margin: 5px 0 10px;
  min-height: 39px;
}
.store-card-copy h3 button {
  font: inherit;
  text-align: left;
  background: none;
  padding: 0;
  line-height: inherit;
}
.store-card-copy h3 button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.store-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.store-card-footer strong {
  font-size: 14px;
  font-weight: 500;
}
.public-status {
  font-size: 9px;
  color: #71816f;
}
.public-status.consult,
.public-status.similar {
  color: var(--rose-deep);
}
.store-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.store-card-actions > * {
  flex: 1;
}
.store-card-copy .store-card-actions {
  margin-top: 14px;
}
.store-card-copy .store-primary-action {
  background: white;
  color: var(--forest);
  width: 100%;
  padding: 9px 10px;
  min-height: 39px;
  border-color: #c4d1c5;
  font-size: 10px;
  justify-content: space-between;
}
.store-card-copy .store-primary-action:hover {
  background: var(--forest);
  color: white;
}
.store-card-copy .store-primary-action svg {
  width: 15px;
  height: 15px;
}
.store-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 38px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.store-pagination:empty {
  display: none;
}
.store-pagination button {
  width: 38px;
  height: 38px;
  background: none;
  display: grid;
  place-items: center;
  border-radius: 3px;
  font-size: 12px;
}
.store-pagination button[aria-current] {
  background: var(--forest);
  color: white;
}
.store-pagination button:hover:not([aria-current]):not(:disabled) {
  background: var(--sage);
}
.store-pagination span {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.store-empty {
  padding: 65px 25px;
  text-align: center;
  background: var(--sage);
}
.store-empty > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
}
.store-empty h2 {
  font-size: 32px;
}
.store-empty p {
  margin: 14px 0 25px;
  font-size: 12px;
}

/* Product and order dialogs */
.product-drawer,
.order-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 32px;
}
.product-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: #12251dc2;
  backdrop-filter: blur(3px);
}
.product-drawer-panel {
  width: min(100%, 1060px);
  max-height: calc(100dvh - 64px);
  position: relative;
  background: white;
  overflow-y: auto;
  border-radius: 5px;
  box-shadow: var(--shadow);
  animation: dialog-in 0.25s ease;
}
[data-product-detail] {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
}
.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: #ffffffed;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
}
.drawer-product-media {
  background: #f3f4ef;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.drawer-product-main {
  display: block;
  aspect-ratio: 1/1.08;
  width: 100%;
  object-fit: contain;
  min-height: 0;
  max-height: 520px;
}
.drawer-thumbnails {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.drawer-thumbnails button {
  padding: 3px;
  border: 1px solid transparent;
  background: white;
  width: 54px;
  height: 61px;
  border-radius: 2px;
}
.drawer-thumbnails button[aria-pressed="true"] {
  border-color: var(--forest);
}
.drawer-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drawer-product-copy {
  padding: 56px 42px 35px;
  align-self: center;
}
.drawer-product-copy h2 {
  font-size: 43px;
  line-height: 1.06;
  margin: 13px 0 20px;
}
.drawer-price {
  font-size: 23px;
  font-weight: 400;
  display: block;
}
.drawer-product-copy > p {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.85;
}
.drawer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.drawer-tags span {
  background: var(--sage);
  padding: 5px 9px;
  border-radius: 2px;
  font-size: 10px;
}
.drawer-product-copy .store-card-actions {
  display: flex;
  flex-direction: column;
  margin-top: 27px;
}
.drawer-product-copy .store-primary-action {
  justify-content: space-between;
}
.drawer-product-copy .store-secondary-action {
  border: 0;
  min-height: 40px;
  font-size: 11px;
}
.drawer-product-note {
  padding-top: 21px;
  border-top: 1px solid var(--line);
  margin-top: 23px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 10px;
  color: var(--muted);
}
.drawer-product-note svg {
  width: 18px;
  height: 18px;
  color: var(--rose-deep);
}
.order-drawer-panel {
  position: relative;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  width: min(660px, 100%);
  padding: 38px 42px;
  background: white;
  border-radius: 5px;
  box-shadow: var(--shadow);
  animation: dialog-in 0.25s ease;
}
.product-drawer-panel:focus,
.order-drawer-panel:focus {
  outline: none;
}
.order-drawer-heading {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 27px;
}
.order-drawer-heading h2 {
  font-size: 39px;
  margin: 10px 25px 16px 0;
}
.order-product-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sage);
  padding: 12px;
  border-radius: 3px;
}
.order-product-summary img {
  width: 60px;
  height: 66px;
  object-fit: cover;
  border-radius: 2px;
}
.order-product-summary strong {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
}
.order-product-summary span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
.order-drawer-heading > p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 17px;
}
.public-order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 18px;
}
.public-order-form .full,
.public-order-form .wide,
.public-order-form .fine-print,
.public-check {
  grid-column: 1/-1;
}
.public-order-form textarea {
  min-height: 95px;
  resize: vertical;
}
.public-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  color: var(--muted);
}
.public-check input {
  accent-color: var(--forest);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.fine-print {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.public-order-form .fine-print {
  text-align: center;
}
.order-success {
  padding: 36px 0 12px;
  text-align: center;
}
.order-success > svg {
  width: 52px;
  height: 52px;
  color: var(--forest);
  margin-bottom: 20px;
}
.order-success h2 {
  font-size: 40px;
  margin: 14px 0;
}
.order-success p {
  font-size: 13px;
  line-height: 1.8;
}
.order-success .store-card-actions {
  flex-direction: column;
}

/* Customer chat */
.assistant-widget {
  position: fixed;
  right: 24px;
  bottom: 23px;
  z-index: 100;
}
.assistant-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px;
  border-radius: 50px;
  background: white;
  box-shadow: 0 4px 25px #173c2e20;
  border: 1px solid #d7e1d7;
  text-align: left;
  min-height: 54px;
}
.assistant-preview > span:last-child {
  position: absolute;
  right: 64px;
  bottom: 10px;
  white-space: nowrap;
  background: white;
  padding: 9px 14px;
  box-shadow: 0 3px 20px #173c2e15;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(4px);
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.assistant-preview:hover > span:last-child,
.assistant-preview:focus-visible > span:last-child {
  opacity: 1;
  transform: none;
}
body:has(.mobile-nav.is-open, .store-filters.is-open) .assistant-preview {
  visibility: hidden;
}
.store-body:has(.product-drawer:not([hidden]), .order-drawer:not([hidden]))
  .assistant-preview {
  visibility: hidden;
}
.assistant-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
}
.assistant-icon svg {
  width: 18px;
  height: 18px;
}
.assistant-preview strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
}
.assistant-preview small {
  display: block;
  font-size: 9px;
  color: var(--muted);
}
.assistant-preview:hover {
  box-shadow: 0 6px 25px #173c2e36;
}
.assistant-preview[aria-expanded="true"] {
  visibility: hidden;
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 374px;
  height: min(668px, calc(100dvh - 46px));
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: dialog-in 0.25s ease;
}
.chat-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--forest);
  color: white;
  padding: 18px 18px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.chat-avatar svg {
  width: 22px;
  height: 22px;
}
.chat-panel-header > div {
  flex: 1;
}
.chat-panel-header strong {
  font-size: 13px;
  font-weight: 500;
}
.chat-panel-header p {
  font-size: 9px;
  color: #d4e2d6;
  margin-top: 3px;
}
.chat-panel-header .icon-button {
  width: 28px;
  height: 28px;
}
.chat-panel-header .icon-button:hover {
  background: #ffffff20;
}
.chat-panel-header .icon-button svg {
  width: 18px;
  height: 18px;
}
.chat-identity {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  flex: 1;
}
.chat-welcome .eyebrow {
  display: block;
  color: var(--rose-deep);
  font-size: 9px;
  margin-bottom: 9px;
}
.chat-welcome strong {
  display: block;
  font: 500 38px/1 var(--display);
}
.chat-welcome p {
  font-size: 11px;
  line-height: 1.7;
  margin: 13px 0 3px;
}
.chat-identity label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
}
.chat-identity input {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 12px;
  min-height: 42px;
  width: 100%;
}
.chat-identity .button {
  min-height: 44px;
  margin-top: 4px;
  font-size: 11px;
  justify-content: space-between;
}
.chat-identity-error {
  font-size: 11px;
  color: #923340;
}
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding: 24px 18px;
  background: #f5f7f3;
}
.chat-bubble {
  max-width: 90%;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.7;
  background: white;
  border-radius: 0 7px 7px 7px;
  align-self: flex-start;
  overflow-wrap: anywhere;
  box-shadow: 0 1px 3px #173c2e08;
}
.chat-bubble small {
  display: block;
  font-size: 9px;
  color: var(--rose-deep);
  margin-bottom: 5px;
}
.chat-bubble a {
  display: inline-block;
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--forest);
  color: white;
  border-radius: 7px 0 7px 7px;
}
.chat-bubble.user small {
  color: #bcd4c2;
}
.chat-bubble.staff {
  background: #e6efe3;
}
.chat-chips {
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
  border-top: 1px solid var(--line);
}
.chat-chips button {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 7px 9px;
  font-size: 9px;
  background: white;
  white-space: nowrap;
}
.chat-chips button:hover {
  background: var(--sage);
}
.chat-form {
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  border-top: 1px solid var(--line);
}
.chat-form input {
  width: 0;
  flex: 1;
  border: 0;
  background: #f4f6f2;
  border-radius: 3px;
  padding: 11px 12px;
  font-size: 12px;
  min-height: 42px;
}
.chat-form button {
  width: 37px;
  height: 37px;
  background: var(--forest);
  color: white;
}
.chat-form button:hover {
  background: var(--forest-dark);
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1700px) {
  .hero {
    max-height: 680px;
    height: calc(100svh - 300px);
  }
  .hero-photo {
    object-position: 50% 55%;
  }
  .hero h1 {
    font-size: 116px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .nav-links {
    gap: 19px;
  }
  .nav-action {
    display: none;
  }
  .nav-shell {
    gap: 18px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    max-width: 135px;
  }
  .hero-copy {
    max-width: 480px;
  }
  .story-layout,
  .gift-note {
    gap: 65px;
  }
  .store-layout {
    gap: 27px;
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .store-filters {
    padding-right: 8px;
  }
  .product-catalog-grid {
    gap: 30px 16px;
  }
  .occasion-copy {
    padding: 17px 13px;
  }
  .occasion-copy strong {
    font-size: 25px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 102px;
  }
  html {
    scroll-padding-top: 114px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .nav-shell {
    height: 70px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-grid;
  }
  .nav-tools {
    gap: 6px;
  }
  .nav-action {
    display: inline-flex;
  }
  .hero {
    min-height: 475px;
    height: calc(100svh - 240px);
    max-height: 570px;
  }
  .hero h1 {
    font-size: 81px;
  }
  .hero-copy {
    max-width: 390px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .hero-actions .text-link {
    max-width: none;
  }
  .hero-signature {
    margin-top: 16px;
  }
  .hero-photo {
    object-position: 62% 50%;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      #f9f8f3e0,
      rgba(250, 249, 247, 0.65) 38%,
      transparent 85%
    );
  }
  h2 {
    font-size: 43px;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    gap: 25px;
    margin-bottom: 26px;
  }
  .occasion-grid {
    gap: 13px;
  }
  .occasion-copy small {
    font-size: 8px;
  }
  .occasion-copy strong {
    font-size: 22px;
  }
  .occasion-copy > svg {
    width: 15px;
    height: 15px;
  }
  .occasion-copy {
    padding: 15px 10px;
    min-height: 79px;
  }
  .home-products {
    gap: 16px;
    min-height: 280px;
  }
  .home-product h3 {
    font-size: 13px;
    min-height: 38px;
  }
  .home-product-copy > p {
    font-size: 12px;
  }
  .story-layout {
    gap: 36px;
  }
  .story-copy h2 {
    font-size: 40px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.8;
  }
  .story-signature {
    margin-top: 20px;
    padding-top: 18px;
  }
  .gift-note {
    gap: 40px;
  }
  .gift-note h2 {
    font-size: 40px;
  }
  .contact-inner h2 {
    font-size: 35px;
  }
  .contact-inner {
    gap: 25px;
  }
  .contact-inner > .button {
    max-width: 230px;
    gap: 12px;
    padding: 12px 16px;
    font-size: 11px;
  }
  .footer-main {
    gap: 30px;
    grid-template-columns: 1.1fr 0.85fr 1.1fr;
  }
  .store-flower-mark {
    margin-right: 5px;
  }
  .occasion-filter-bar {
    gap: 16px;
  }
  .occasion-filter-bar > span {
    display: none;
  }
  .store-layout {
    display: block;
  }
  .filter-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 8px 12px;
    border-radius: 3px;
    background: white;
    font-size: 11px;
    min-height: 40px;
  }
  .filter-toggle svg {
    width: 16px;
    height: 16px;
  }
  .store-filters {
    display: none;
    position: fixed;
    z-index: 95;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(350px, calc(100% - 24px));
    padding: 28px;
    background: white;
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .store-filters.is-open {
    display: flex;
  }
  .filter-backdrop {
    z-index: 94;
  }
  .filter-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .filter-panel-title h2 {
    font-family: var(--display);
    font-size: 25px;
  }
  .filter-panel-title .icon-button {
    display: inline-grid;
    width: 32px;
    height: 32px;
  }
  .filter-apply {
    display: flex;
  }
  .store-filters .store-field,
  .store-search > span {
    font-size: 12px;
  }
  .search-input-wrap input {
    font-size: 14px;
  }
  .store-filters .store-field select {
    font-size: 14px;
    min-height: 48px;
  }
  .drawer-product-copy {
    padding: 48px 27px 25px;
  }
  .drawer-product-copy h2 {
    font-size: 35px;
  }
}
@media (max-width: 600px) {
  :root {
    --header-height: 91px;
  }
  html {
    scroll-padding-top: 105px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .notice-inner {
    justify-content: center;
    min-height: 26px;
  }
  .notice {
    min-height: 26px;
    font-size: 9px;
  }
  .notice a {
    display: none;
  }
  .nav-shell {
    height: 64px;
  }
  .brand-symbol {
    width: 31px;
    height: 36px;
  }
  .brand-symbol img {
    width: 41px;
    transform: translate(-4px, 0);
  }
  .brand-wordmark {
    width: 117px;
  }
  .brand {
    gap: 5px;
  }
  .nav-action {
    display: none;
  }
  .nav-tools {
    gap: 2px;
  }
  .nav-tools .icon-button {
    width: 37px;
    height: 42px;
  }
  .site-search form {
    gap: 9px;
    min-height: 67px;
  }
  .site-search input {
    font-size: 14px;
  }
  .site-search form > svg {
    display: none;
  }
  .site-search .text-link {
    font-size: 11px;
    gap: 4px;
  }
  .site-search .icon-button {
    width: 30px;
  }
  .hero {
    height: min(630px, calc(100svh - 174px));
    min-height: 525px;
    max-height: none;
    background: #e4e4e0;
  }
  .hero-photo {
    object-fit: cover;
    object-position: 100% 100%;
    height: 64%;
    top: auto;
    bottom: 0;
  }
  .hero::after {
    background: linear-gradient(
      180deg,
      #f5f3ef 0%,
      #f5f3ef 39%,
      rgba(245, 243, 239, 0.7) 48%,
      rgba(245, 243, 239, 0.04) 64%,
      transparent 76%
    );
  }
  .hero-inner {
    align-items: flex-start;
  }
  .hero-copy {
    padding-top: 28px;
    width: 100%;
    max-width: 100%;
  }
  .hero .eyebrow {
    font-size: 8px;
    gap: 8px;
    margin-bottom: 14px;
  }
  .little-line {
    width: 19px;
  }
  .hero h1 {
    font-size: 67px;
    line-height: 0.9;
    margin-left: 0;
  }
  .hero h1 br {
    display: none;
  }
  .hero h1 em {
    display: block;
  }
  .hero-lead {
    font-size: 12px;
    line-height: 1.7;
    max-width: 245px;
    margin-top: 14px;
  }
  .hero-actions {
    margin-top: 17px;
    gap: 7px;
    flex-direction: row;
    align-items: center;
  }
  .hero-actions .button {
    min-height: 43px;
    padding: 10px 13px;
    gap: 7px;
    font-size: 10px;
  }
  .hero-actions .button svg {
    width: 15px;
    height: 15px;
  }
  .hero-actions .text-link {
    font-size: 9px;
    gap: 4px;
    max-width: 130px;
  }
  .hero-actions .text-link svg {
    width: 12px;
  }
  .hero-signature {
    display: none;
  }
  .hero-caption {
    bottom: 15px;
    right: 18px;
    font-size: 8px;
    padding: 7px 10px;
  }
  .hero-caption em {
    font-size: 17px;
  }
  .care-strip-inner {
    min-height: 66px;
    gap: 7px;
    width: calc(100% - 24px);
  }
  .care-strip span {
    flex-direction: column;
    gap: 5px;
    font-size: 8px;
    text-align: center;
    line-height: 1.35;
    padding: 5px 4px;
  }
  .care-strip svg {
    width: 18px;
    height: 18px;
  }
  .section {
    padding-block: 46px;
  }
  .section-heading {
    display: block;
    margin-bottom: 23px;
  }
  .section-heading > p {
    margin-top: 14px;
    font-size: 11px;
    padding: 0;
  }
  h2 {
    font-size: 38px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 11px;
  }
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
  .occasion-image {
    aspect-ratio: 1/1.13;
  }
  .occasion-copy {
    padding: 13px 11px;
    min-height: 72px;
    gap: 3px;
  }
  .occasion-copy small {
    font-size: 8px;
  }
  .occasion-copy strong {
    font-size: 24px;
  }
  .occasion-copy > svg {
    width: 15px;
    height: 15px;
  }
  .section-heading > .text-link {
    font-size: 11px;
    margin-top: 11px;
  }
  .collection-tabs {
    gap: 22px;
    margin-top: 16px;
    margin-bottom: 23px;
  }
  .collection-tabs button {
    font-size: 11px;
    padding: 10px 0 13px;
  }
  .home-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 13px;
    min-height: 570px;
  }
  .home-product-image {
    aspect-ratio: 1/1.14;
  }
  .home-product-copy {
    padding-top: 12px;
  }
  .product-category {
    font-size: 8px;
  }
  .home-product h3 {
    font-size: 14px;
    min-height: 40px;
  }
  .home-product-copy > p {
    font-size: 14px;
    margin-top: 8px;
  }
  .product-image-action {
    display: none;
  }
  .collection-more {
    font-size: 11px;
    margin-top: 28px;
  }
  .story-section {
    padding-block: 42px;
  }
  .story-layout {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .story-photo {
    width: 100%;
    max-width: 100%;
  }
  .story-photo img {
    aspect-ratio: 1/0.96;
    object-position: 50% 31%;
  }
  .story-photo figcaption {
    font-size: 9px;
    padding-top: 9px;
  }
  .story-copy h2 {
    font-size: 39px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.85;
    max-width: 100%;
    margin-top: 17px;
  }
  .story-copy .text-link {
    font-size: 11px;
    margin-top: 16px;
  }
  .story-signature {
    padding-top: 16px;
    margin-top: 18px;
    gap: 17px;
  }
  .story-signature strong {
    font-size: 28px;
  }
  .gift-note {
    display: block;
  }
  .gift-note h2 {
    font-size: 38px;
  }
  .gift-note-copy {
    margin-top: 23px;
  }
  .gift-note-copy > svg {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }
  .gift-note-copy p {
    font-size: 12px;
  }
  .gift-note-copy .text-link {
    font-size: 11px;
    margin-top: 15px;
  }
  .contact-section {
    padding-block: 35px;
  }
  .contact-inner {
    display: block;
  }
  .contact-inner h2 {
    font-size: 35px;
  }
  .contact-inner p:not(.eyebrow) {
    font-size: 11px;
  }
  .contact-inner > .button {
    margin-top: 22px;
    max-width: 100%;
    font-size: 11px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 31px 22px;
    padding-block: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .footer-wordmark {
    font-size: 33px;
    flex-shrink: 0;
  }
  .footer-brand p {
    margin-top: 0;
    font-size: 10px;
  }
  .footer-main h2 {
    font-size: 11px;
    margin-bottom: 9px;
    line-height: 1.5;
  }
  .footer-links a,
  .footer-contact a {
    font-size: 10px;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    gap: 10px;
    padding-block: 16px;
    font-size: 8px;
    padding-bottom: 78px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-contact .footer-address {
    margin-top: 2px;
  }
  .store-hero {
    padding: 16px 0 26px;
  }
  .breadcrumb {
    font-size: 9px;
  }
  .store-intro {
    margin-top: 23px;
  }
  .store-intro h1 {
    font-size: 46px;
    max-width: 285px;
  }
  .store-intro p:not(.eyebrow) {
    font-size: 11px;
  }
  .store-flower-mark {
    display: none;
  }
  .occasion-filter-bar {
    min-height: 68px;
  }
  .store-chip-row {
    gap: 6px;
  }
  .store-chip-row button {
    font-size: 10px;
    padding: 7px 11px;
    min-height: 33px;
  }
  .store-heading {
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 14px;
    min-height: 74px;
  }
  .store-count {
    font-size: 10px;
  }
  .store-toolbar {
    gap: 6px;
  }
  .sort-field {
    gap: 0;
  }
  .sort-field > span {
    display: none;
  }
  .sort-field select {
    font-size: 10px;
    max-width: 134px;
    padding: 10px 4px;
  }
  .filter-toggle {
    padding: 7px 9px;
    font-size: 10px;
    gap: 5px;
    min-height: 37px;
  }
  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }
  .store-image-button {
    aspect-ratio: 1/1.16;
  }
  .store-image-view {
    width: 27px;
    height: 27px;
    bottom: 8px;
    right: 8px;
  }
  .store-image-view svg {
    width: 14px;
    height: 14px;
  }
  .store-card-copy {
    padding-top: 12px;
  }
  .store-card-meta {
    font-size: 8px;
  }
  .store-card-copy h3 {
    font-size: 14px;
    min-height: 40px;
    margin-top: 6px;
    margin-bottom: 9px;
  }
  .store-card-footer {
    gap: 5px;
  }
  .store-card-footer strong {
    font-size: 14px;
  }
  .public-status {
    font-size: 8px;
    line-height: 1.4;
  }
  .store-card-copy .store-primary-action {
    font-size: 11px;
    padding: 8px 9px;
    min-height: 48px;
    gap: 4px;
  }
  .store-card-copy .store-primary-action svg {
    width: 13px;
  }
  .store-pagination {
    padding-top: 24px;
    margin-top: 28px;
  }
  .store-pagination button {
    width: 34px;
    height: 36px;
  }
  .store-page-section {
    padding-bottom: 45px;
  }
  .store-empty {
    padding: 38px 16px;
  }
  .store-empty h2 {
    font-size: 29px;
  }
  .product-drawer,
  .order-drawer {
    padding: 12px;
    align-items: center;
  }
  .product-drawer-panel,
  .order-drawer-panel {
    max-height: calc(100dvh - 24px);
    border-radius: 5px;
  }
  [data-product-detail] {
    display: block;
  }
  .drawer-product-media {
    padding: 17px 22px 14px;
  }
  .drawer-product-main {
    aspect-ratio: 1/1;
    max-height: 320px;
  }
  .drawer-thumbnails {
    gap: 7px;
  }
  .drawer-thumbnails button {
    width: 42px;
    height: 47px;
  }
  .drawer-product-copy {
    padding: 23px;
  }
  .drawer-product-copy h2 {
    font-size: 34px;
    margin: 10px 0 15px;
  }
  .drawer-price {
    font-size: 21px;
  }
  .drawer-product-copy > p {
    font-size: 12px;
    margin-top: 17px;
  }
  .drawer-product-copy .store-card-actions {
    margin-top: 22px;
    gap: 6px;
  }
  .drawer-product-note {
    margin-top: 17px;
    padding-top: 17px;
  }
  .drawer-close {
    width: 34px;
    height: 34px;
    top: 11px;
    right: 11px;
  }
  .order-drawer-panel {
    padding: 32px 22px;
  }
  .order-drawer-heading h2 {
    font-size: 35px;
  }
  .public-order-form {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .public-order-form .store-field {
    font-size: 11px;
  }
  .public-order-form input,
  .public-order-form textarea,
  .public-order-form select,
  .chat-identity input,
  .chat-form input {
    font-size: 16px;
  }
  .assistant-widget {
    right: 14px;
    bottom: 14px;
  }
  .assistant-preview {
    min-height: 48px;
    padding: 6px;
    gap: 9px;
  }
  .assistant-preview > span:last-child {
    display: none;
  }
  .assistant-preview small {
    display: none;
  }
  .assistant-preview strong {
    font-size: 9px;
  }
  .assistant-icon {
    width: 35px;
    height: 35px;
  }
  .chat-panel {
    position: fixed;
    width: calc(100% - 20px);
    height: min(690px, calc(100dvh - 20px));
    right: 10px;
    bottom: 10px;
  }
  .chat-identity {
    padding: 23px;
    gap: 14px;
  }
  .chat-panel-header {
    padding: 16px;
  }
  .chat-welcome strong {
    font-size: 36px;
  }
  .chat-identity input {
    min-height: 44px;
  }
  .chat-identity .button {
    min-height: 47px;
  }
  .chat-identity label {
    font-size: 11px;
  }
  .chat-form {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero .eyebrow {
    font-size: 7px;
  }
  .hero-actions .button {
    padding: 10px;
    font-size: 9px;
  }
  .hero-actions .text-link {
    font-size: 8px;
    max-width: 103px;
  }
  .occasion-copy {
    padding: 12px 8px;
  }
  .occasion-copy strong {
    font-size: 22px;
  }
  .footer-brand {
    gap: 20px;
  }
  .footer-wordmark {
    font-size: 30px;
  }
  .store-heading {
    flex-wrap: wrap;
  }
  .store-toolbar {
    width: 100%;
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
