:root {
  --bg: #f8f3ef;
  --bg-soft: #fffaf6;
  --paper: rgba(255, 251, 247, 0.88);
  --paper-strong: #fffdfb;
  --ink: #2b1b1f;
  --muted: #6f5e63;
  --line: rgba(109, 77, 77, 0.14);
  --accent: #b86b73;
  --accent-strong: #8f4e5f;
  --accent-soft: #f3dadd;
  --rose: #d98998;
  --wine: #6c334d;
  --gold: #b8895a;
  --shadow-soft: 0 18px 48px rgba(89, 52, 57, 0.09);
  --shadow-strong: 0 28px 70px rgba(57, 27, 40, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #301b26;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(243, 218, 221, 0.65), transparent 22%),
    linear-gradient(180deg, #fffdfb 0%, #fbf5f0 42%, #f5ece5 100%);
  line-height: 1.6;
}

body[data-page='home'] {
  --home-header-height: 78px;
  min-height: 100dvh;
  background-color: #301b26;
  background:
    radial-gradient(circle at 24% 12%, rgba(126, 76, 94, 0.44), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(168, 102, 126, 0.34), transparent 22%),
    linear-gradient(180deg, #4f2f3d 0%, #3f2632 48%, #301b26 100%);
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

body[data-page='home'] .site-header {
  position: relative;
  background: #ffffff;
  border-bottom-color: rgba(126, 92, 98, 0.08);
  backdrop-filter: none;
}

body[data-page='home'] main {
  min-height: 0;
  display: block;
}

body[data-page='home'] .lux-home-single-screen {
  position: relative;
  height: auto;
  min-height: 0;
  background: transparent;
  overflow: visible;
}

body[data-page='home'] .lux-home-single-screen .lux-hero,
body[data-page='home'] .lux-home-single-screen .hero-overlay {
  min-height: 100%;
}

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

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

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.6rem 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.site-header {
  --header-height: 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(126, 92, 98, 0.1);
  backdrop-filter: none;
}

.utility-header {
  overflow: hidden;
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.6rem;
  min-height: var(--header-height);
  padding: 0.2rem 0;
}

.utility-header-main {
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(142px, 9vw, 168px);
  aspect-ratio: 972 / 477;
  justify-self: center;
}

.utility-brand {
  justify-self: start;
  width: auto;
  height: 36px;
  aspect-ratio: auto;
  overflow: visible;
}

.utility-brand .brand-logo-image {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.floral-brand {
  isolation: isolate;
}

.header-petal-rain,
.page-petal-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.header-petal-rain {
  z-index: 1;
  opacity: 1;
}

.page-petal-rain {
  z-index: 2;
  opacity: 0.86;
}

body[data-page='home'] .lux-home-single-screen > .page-petal-rain {
  inset: 0 auto auto 0;
  width: 100%;
  height: calc(100dvh - var(--home-header-height, 78px));
  opacity: 0.92;
}

.header-petal-rain-item,
.page-petal-rain-item {
  position: absolute;
  width: var(--petal-size, 22px);
  height: calc(var(--petal-size, 22px) * 1.35);
  --petal-image: url('assets/petal-realistic.svg');
  background-image: var(--petal-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: var(--petal-opacity, 0.78);
  transform: rotate(var(--petal-rotate, 0deg)) scale(var(--petal-scale, 1));
  filter: drop-shadow(0 2px 4px rgba(40, 14, 24, 0.32));
}

.header-petal-rain-item::before,
.page-petal-rain-item::before {
  display: none;
}

.header-petal-rain-item::after,
.page-petal-rain-item::after {
  display: none;
}

.header-petal-rain-item:nth-child(3n),
.page-petal-rain-item:nth-child(3n) {
  --petal-image: url('assets/petal-realistic-2.svg');
}

.header-petal-rain-item:nth-child(4n),
.page-petal-rain-item:nth-child(4n) {
  --petal-image: url('assets/petal-realistic-3.svg');
}

.utility-header .header-petal-rain-item {
  top: -64px;
  opacity: 0;
  animation: headerPetalFall var(--header-fall-duration, 1.9s) cubic-bezier(0.22, 0.64, 0.36, 1) infinite;
  animation-delay: var(--header-fall-delay, 0s);
}

.rain-1  { left: 4%;  --petal-size: 22px; --petal-rotate: -18deg; --petal-opacity: 0.78; --header-fall-duration: 1.55s; --header-fall-delay: -0.7s; --header-drift-a: 4px;  --header-drift-b: -3px; }
.rain-2  { left: 12%; --petal-size: 20px; --petal-rotate: 15deg;  --petal-opacity: 0.7;  --header-fall-duration: 2.15s; --header-fall-delay: -1.4s; --header-drift-a: -3px; --header-drift-b: 2px; }
.rain-3  { left: 25%; --petal-size: 24px; --petal-rotate: -9deg;  --petal-opacity: 0.8;  --header-fall-duration: 1.72s; --header-fall-delay: -0.9s; --header-drift-a: 3px;  --header-drift-b: -2px; }
.rain-4  { left: 36%; --petal-size: 18px; --petal-rotate: 21deg;  --petal-opacity: 0.64; --header-fall-duration: 2.32s; --header-fall-delay: -1.7s; --header-drift-a: -2px; --header-drift-b: 3px; }
.rain-5  { left: 47%; --petal-size: 23px; --petal-rotate: -13deg; --petal-opacity: 0.76; --header-fall-duration: 1.88s; --header-fall-delay: -0.5s; --header-drift-a: 4px;  --header-drift-b: -3px; }
.rain-6  { left: 58%; --petal-size: 19px; --petal-rotate: 10deg;  --petal-opacity: 0.68; --header-fall-duration: 2.24s; --header-fall-delay: -1.1s; --header-drift-a: -3px; --header-drift-b: 2px; }
.rain-7  { left: 69%; --petal-size: 22px; --petal-rotate: -22deg; --petal-opacity: 0.8;  --header-fall-duration: 1.67s; --header-fall-delay: -1.6s; --header-drift-a: 3px;  --header-drift-b: -2px; }
.rain-8  { left: 79%; --petal-size: 20px; --petal-rotate: 16deg;  --petal-opacity: 0.72; --header-fall-duration: 2.06s; --header-fall-delay: -0.8s; --header-drift-a: -2px; --header-drift-b: 3px; }
.rain-9  { left: 89%; --petal-size: 24px; --petal-rotate: -11deg; --petal-opacity: 0.78; --header-fall-duration: 1.76s; --header-fall-delay: -1.3s; --header-drift-a: 4px;  --header-drift-b: -3px; }
.rain-10 { left: 96%; --petal-size: 18px; --petal-rotate: 19deg;  --petal-opacity: 0.66; --header-fall-duration: 2.28s; --header-fall-delay: -0.6s; --header-drift-a: -2px; --header-drift-b: 2px; }

@keyframes headerPetalFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -46px, 0) rotate(var(--petal-rotate, 0deg)) scale(var(--petal-scale, 1));
  }
  12% {
    opacity: var(--petal-opacity, 0.72);
  }
  46% {
    transform: translate3d(var(--header-drift-a, 3px), 44px, 0) rotate(calc(var(--petal-rotate, 0deg) + 136deg)) scale(calc(var(--petal-scale, 1) * 1.03));
  }
  76% {
    opacity: var(--petal-opacity, 0.72);
    transform: translate3d(var(--header-drift-b, -2px), 82px, 0) rotate(calc(var(--petal-rotate, 0deg) + 250deg)) scale(calc(var(--petal-scale, 1) * 1.05));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--header-drift-b, -2px), 128px, 0) rotate(calc(var(--petal-rotate, 0deg) + 338deg)) scale(calc(var(--petal-scale, 1) * 1.08));
  }
}

.brand-petal-cloud {
  position: absolute;
  inset: -2px -10px -22px -10px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.brand-petal {
  position: absolute;
  width: 16px;
  height: 24px;
  border-radius: 18px 18px 18px 2px;
  background: linear-gradient(180deg, rgba(255, 207, 219, 0.66), rgba(214, 135, 160, 0.72));
  opacity: 0;
  filter: blur(0.1px);
  animation: petalFall 8s linear infinite;
}

.brand-petal::after {
  content: '';
  position: absolute;
  inset: 3px 3px auto;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.petal-a { left: 12%; top: -2%; animation-delay: 0s; transform: rotate(-16deg); }
.petal-b { left: 28%; top: -10%; animation-delay: 1.5s; transform: rotate(6deg); }
.petal-c { left: 46%; top: -6%; animation-delay: 3s; transform: rotate(18deg); }
.petal-d { left: 64%; top: -12%; animation-delay: 4.2s; transform: rotate(-10deg); }
.petal-e { left: 80%; top: -4%; animation-delay: 5.5s; transform: rotate(14deg); }

@keyframes petalFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -6px, 0) rotate(-12deg) scale(0.9);
  }
  12% {
    opacity: 0.78;
  }
  72% {
    opacity: 0.66;
  }
  100% {
    opacity: 0;
    transform: translate3d(-12px, 92px, 0) rotate(28deg) scale(1.04);
  }
}

.brand-logo-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  min-width: 0;
  justify-self: center;
}

.main-nav a {
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  color: rgba(43, 27, 31, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.7rem;
}

.header-utilities {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

.header-account-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-auth-dynamic {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-account-actions .btn.btn-sm {
  min-height: 30px;
  padding: 0.34rem 0.72rem;
  font-size: 0.62rem;
}

.header-account-actions .btn[data-open-auth-tab].active,
.header-account-actions .btn[data-open-auth-tab][aria-current='page'] {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(143, 78, 95, 0.2);
}

.header-account-actions .btn[data-open-auth-tab]:not(.active) {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(129, 100, 104, 0.18);
  color: var(--ink);
  box-shadow: none;
}

.header-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 30px;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(129, 100, 104, 0.2);
  color: rgba(43, 27, 31, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(89, 52, 57, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-phone-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(129, 100, 104, 0.3);
}

.header-utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(184, 107, 115, 0.12);
  color: var(--accent-strong);
  font-size: 0.66rem;
}

.home-utility-header {
  --header-height: 78px;
}

.home-utility-header .container {
  width: min(100% - 2.2rem, 1860px);
}

.home-utility-header .utility-header-main {
  min-height: var(--header-height);
  gap: 1rem;
}

.home-utility-header .utility-brand {
  width: min(233px, 48vw);
  height: 56px;
}

.home-utility-header .utility-brand .brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body[data-page='home'] .header-petal-rain,
body[data-page='home'] .page-petal-rain {
  display: none;
}

.home-utility-header .header-utilities {
  gap: 0.55rem;
}

.home-utility-header .header-account-actions,
.home-utility-header .header-auth-dynamic {
  gap: 0.45rem;
}

.home-utility-header .header-phone-pill {
  min-height: 44px;
  padding: 0.5rem 0.92rem;
  background: #fff;
  border-color: rgba(111, 76, 83, 0.34);
  box-shadow: 0 8px 18px rgba(70, 35, 43, 0.08);
  font-size: 0.78rem;
  color: #372026;
  font-weight: 800;
}

.home-utility-header .header-utility-icon {
  width: 20px;
  height: 20px;
  font-size: 0.72rem;
  background: rgba(171, 84, 101, 0.18);
  color: #8b2f45;
}

.home-utility-header .header-account-actions .btn.btn-sm,
.home-utility-header .header-auth-dynamic .btn.btn-sm,
.home-utility-header .header-account-actions .cart-link,
.home-utility-header .header-auth-dynamic .cart-link {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(70, 35, 43, 0.08);
}

.home-utility-header .header-account-actions .cart-link,
.home-utility-header .header-auth-dynamic .cart-link {
  background: #fff;
  border-color: rgba(111, 76, 83, 0.34);
  color: #2f1a20;
}

.home-utility-header .header-account-actions .btn-ghost,
.home-utility-header .header-auth-dynamic .btn-ghost {
  background: #fff;
  border-color: rgba(111, 76, 83, 0.34);
  color: #2f1a20;
}

.home-utility-header .header-account-actions .btn-primary,
.home-utility-header .header-auth-dynamic .btn-primary {
  background: linear-gradient(135deg, #c17184 0%, #8f4458 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px rgba(124, 52, 71, 0.24);
}

.home-utility-header .cart-badge {
  min-width: 24px;
  height: 24px;
  font-size: 0.7rem;
}

.utility-header .header-petal-rain-item {
  --petal-image: url('assets/petal-red-realistic.svg');
  filter: drop-shadow(0 4px 6px rgba(79, 13, 22, 0.34)) saturate(1.15);
}

.utility-header .header-petal-rain-item:nth-child(3n) {
  --petal-image: url('assets/petal-red-realistic-2.svg');
}

.utility-header .header-petal-rain-item:nth-child(4n) {
  --petal-image: url('assets/petal-red-realistic-3.svg');
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.82rem 1.26rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  font-size: 0.7rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(143, 78, 95, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(143, 78, 95, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  border-color: rgba(129, 100, 104, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(129, 100, 104, 0.32);
}

.btn-block {
  width: 100%;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(129, 100, 104, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 0.48rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 0.68rem;
}

main {
  min-height: calc(100vh - 240px);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: #20151a;
}

.hero-stage,
.hero-slide-item,
.hero-slide-item::before,
.hero-slide-item::after {
  position: absolute;
  inset: 0;
}

.hero-stage {
  z-index: 0;
  transform: translate3d(var(--hero-pan-x, 0px), var(--hero-pan-y, 0px), 0) scale(1.02);
  transition: transform 460ms cubic-bezier(0.22, 0.7, 0.18, 1);
  will-change: transform;
}

.hero-slide-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #030304;
  filter: saturate(1.06) contrast(1.04) brightness(0.96);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6.2s cubic-bezier(0.22, 0.7, 0.18, 1);
  will-change: opacity, transform;
}

.hero-slide-item::before {
  content: '';
  background:
    linear-gradient(105deg, rgba(28, 14, 19, 0.55) 0%, rgba(44, 21, 32, 0.18) 44%, rgba(31, 17, 24, 0.45) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 204, 214, 0.12), transparent 20%);
}

.hero-slide-item::after {
  content: '';
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 240, 244, 0.22), transparent 18%),
    radial-gradient(circle at 76% 76%, rgba(255, 219, 226, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 18%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-slide-item.active {
  opacity: 1;
  transform: scale(1.01);
  animation: homeHeroKenBurns 6.1s ease-in-out forwards;
}

@keyframes homeHeroKenBurns {
  0% {
    transform: scale(1.11) translate3d(-1.6%, -0.9%, 0);
  }
  50% {
    transform: scale(1.06) translate3d(0.35%, 0.25%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(1.5%, 0.85%, 0);
  }
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.lux-hero {
  min-height: 100svh;
}

.lux-hero .hero-overlay {
  min-height: calc(100svh - 84px);
  display: flex;
  align-items: center;
}

.lux-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 0 2rem;
}

.lux-hero-copy {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 700px;
}

.lux-hero-copy h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #fff7f4;
}

.lux-hero-lead {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 244, 240, 0.9);
  font-size: 1.02rem;
  line-height: 1.75;
}

.lux-hero-actions {
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.lux-hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lux-hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lux-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lux-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 246, 242, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lux-story-card,
.lux-auth-card,
.collections-hero-note,
.explorer-shell,
.collection-showcase-card,
.home-showcase-card,
.luxury-promise-card,
.luxury-value-card,
.story-card,
.info-card,
.form-card,
.summary-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.lux-story-card {
  max-width: 34rem;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(145deg, rgba(255, 248, 244, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(12px);
}

.lux-story-card h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  color: #fff7f4;
}

.lux-story-card p {
  margin: 0;
  color: rgba(255, 244, 240, 0.84);
}

.lux-auth-card {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.9), rgba(255, 244, 240, 0.8));
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.lux-auth-head h2,
.collections-hero-note h2,
.luxury-promise-card h2,
.story-card h2,
.story-card h3,
.info-card h3,
.form-card h3,
.page-hero h1,
.section-head h2 {
  margin: 0;
  font-family: var(--font-head);
}

.lux-auth-head h2 {
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  line-height: 1;
}

.lux-auth-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.auth-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1rem 0 0.9rem;
}

.auth-switch-btn {
  min-height: 46px;
  border: 1px solid rgba(128, 86, 97, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.auth-switch-btn.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  color: #fff;
}

.auth-pane {
  display: none;
}

.auth-pane.active {
  display: block;
}

.luxury-form-card {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.luxury-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.lux-form-copy {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-row-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(140, 104, 112, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(184, 107, 115, 0.6);
  box-shadow: 0 0 0 4px rgba(184, 107, 115, 0.12);
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.lux-form-field {
  margin-top: 0.9rem;
}

.lux-purpose-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(243, 218, 221, 0.46), rgba(255, 248, 243, 0.7));
  border: 1px solid rgba(184, 107, 115, 0.14);
}

.lux-purpose-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.lux-purpose-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-inline {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.checkbox-inline input[type='checkbox'] {
  width: auto;
  margin-top: 0.24rem;
}

.luxury-check {
  color: var(--ink);
}

.lux-form-actions {
  margin-top: 1rem;
}

.form-message {
  margin-top: 0.85rem;
  color: #0e6d2d;
  font-size: 0.92rem;
  font-weight: 700;
}

.home-stage {
  min-height: calc(100dvh - var(--home-header-height, 78px));
  height: auto;
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-scroll-shift: 0px;
}

.home-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 232, 236, 0.2), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(255, 214, 224, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(35, 16, 26, 0.52) 0%, rgba(84, 39, 56, 0.18) 42%, rgba(26, 12, 20, 0.46) 100%);
  animation: homeAtmospherePulse 9s ease-in-out infinite;
}

.home-stage-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.14) 0%, rgba(255, 250, 246, 0.02) 26%, rgba(255, 250, 246, 0) 52%),
    radial-gradient(circle at 78% 24%, rgba(255, 220, 228, 0.16), transparent 22%);
  transform: translate3d(calc(var(--hero-pan-x, 0px) * -0.35), calc(var(--hero-pan-y, 0px) * -0.35), 0);
  transition: transform 520ms cubic-bezier(0.22, 0.7, 0.18, 1);
  will-change: transform;
}

@keyframes homeAtmospherePulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.08);
  }
}

.home-stage-shell {
  position: relative;
  z-index: 3;
  height: auto;
  min-height: calc(100dvh - var(--home-header-height, 78px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.7rem, 2.4vh, 1.4rem) clamp(1rem, 3vw, 2.4rem) clamp(0.85rem, 2.2vh, 1.45rem);
}

body[data-page='home'] .page-petal-rain-item {
  top: -18%;
  opacity: 0;
  --petal-image: url('assets/petal-red-realistic.svg');
  --petal-blur: 0px;
  --petal-scale: 1;
  filter: drop-shadow(0 5px 8px rgba(64, 8, 13, 0.36)) saturate(1.08) contrast(1.05) blur(var(--petal-blur));
  animation: homePetalFall var(--fall-duration, 12s) linear infinite;
  animation-delay: var(--fall-delay, 0s);
}

body[data-page='home'] .page-petal-rain-item:nth-child(3n) {
  --petal-image: url('assets/petal-red-realistic-2.svg');
}

body[data-page='home'] .page-petal-rain-item:nth-child(5n) {
  --petal-image: url('assets/petal-red-realistic-3.svg');
}

.page-rain-1  { left: 4%;  --petal-size: 24px; --petal-rotate: -16deg; --petal-opacity: 0.58; --fall-duration: 10.8s; --fall-delay: -1.2s; --drift-a: 7px;  --drift-b: -4px; --drift-c: 6px; }
.page-rain-2  { left: 9%;  --petal-size: 18px; --petal-rotate: 14deg;  --petal-opacity: 0.42; --petal-scale: 0.84; --petal-blur: 0.45px; --fall-duration: 13.2s; --fall-delay: -5.1s; --drift-a: -5px; --drift-b: 3px;  --drift-c: -4px; }
.page-rain-3  { left: 14%; --petal-size: 20px; --petal-rotate: -11deg; --petal-opacity: 0.5;  --fall-duration: 11.6s; --fall-delay: -2.8s; --drift-a: 6px;  --drift-b: -5px; --drift-c: 4px; }
.page-rain-4  { left: 20%; --petal-size: 26px; --petal-rotate: 21deg;  --petal-opacity: 0.62; --fall-duration: 10.4s; --fall-delay: -7.1s; --drift-a: -7px; --drift-b: 5px;  --drift-c: -6px; }
.page-rain-5  { left: 27%; --petal-size: 21px; --petal-rotate: -18deg; --petal-opacity: 0.52; --fall-duration: 12.4s; --fall-delay: -3.6s; --drift-a: 5px;  --drift-b: -4px; --drift-c: 5px; }
.page-rain-6  { left: 33%; --petal-size: 17px; --petal-rotate: 10deg;  --petal-opacity: 0.4;  --petal-scale: 0.82; --petal-blur: 0.5px; --fall-duration: 14.1s; --fall-delay: -9.3s; --drift-a: -4px; --drift-b: 3px;  --drift-c: -3px; }
.page-rain-7  { left: 39%; --petal-size: 22px; --petal-rotate: -14deg; --petal-opacity: 0.5;  --fall-duration: 11.3s; --fall-delay: -0.9s; --drift-a: 6px;  --drift-b: -5px; --drift-c: 4px; }
.page-rain-8  { left: 45%; --petal-size: 24px; --petal-rotate: 13deg;  --petal-opacity: 0.56; --fall-duration: 10.9s; --fall-delay: -4.2s; --drift-a: -6px; --drift-b: 4px;  --drift-c: -5px; }
.page-rain-9  { left: 51%; --petal-size: 18px; --petal-rotate: -25deg; --petal-opacity: 0.44; --petal-scale: 0.88; --petal-blur: 0.35px; --fall-duration: 13.8s; --fall-delay: -8.5s; --drift-a: 4px;  --drift-b: -3px; --drift-c: 4px; }
.page-rain-10 { left: 57%; --petal-size: 25px; --petal-rotate: 18deg;  --petal-opacity: 0.54; --fall-duration: 10.6s; --fall-delay: -1.7s; --drift-a: -7px; --drift-b: 5px;  --drift-c: -6px; }
.page-rain-11 { left: 63%; --petal-size: 20px; --petal-rotate: -9deg;  --petal-opacity: 0.48; --fall-duration: 12.6s; --fall-delay: -6.2s; --drift-a: 5px;  --drift-b: -4px; --drift-c: 5px; }
.page-rain-12 { left: 68%; --petal-size: 23px; --petal-rotate: 20deg;  --petal-opacity: 0.53; --fall-duration: 11.4s; --fall-delay: -3.3s; --drift-a: -6px; --drift-b: 4px;  --drift-c: -5px; }
.page-rain-13 { left: 73%; --petal-size: 17px; --petal-rotate: -7deg;  --petal-opacity: 0.4;  --petal-scale: 0.8; --petal-blur: 0.55px; --fall-duration: 14.4s; --fall-delay: -7.8s; --drift-a: 4px;  --drift-b: -3px; --drift-c: 3px; }
.page-rain-14 { left: 78%; --petal-size: 24px; --petal-rotate: 12deg;  --petal-opacity: 0.56; --fall-duration: 10.7s; --fall-delay: -5.5s; --drift-a: -7px; --drift-b: 5px;  --drift-c: -6px; }
.page-rain-15 { left: 83%; --petal-size: 20px; --petal-rotate: -20deg; --petal-opacity: 0.48; --fall-duration: 12.8s; --fall-delay: -2.1s; --drift-a: 6px;  --drift-b: -4px; --drift-c: 5px; }
.page-rain-16 { left: 88%; --petal-size: 22px; --petal-rotate: 11deg;  --petal-opacity: 0.5;  --fall-duration: 11.2s; --fall-delay: -8.9s; --drift-a: -6px; --drift-b: 4px;  --drift-c: -5px; }
.page-rain-17 { left: 92%; --petal-size: 18px; --petal-rotate: -23deg; --petal-opacity: 0.44; --petal-scale: 0.9; --petal-blur: 0.4px; --fall-duration: 13.5s; --fall-delay: -4.8s; --drift-a: 5px;  --drift-b: -3px; --drift-c: 4px; }
.page-rain-18 { left: 95%; --petal-size: 25px; --petal-rotate: 16deg;  --petal-opacity: 0.57; --fall-duration: 10.5s; --fall-delay: -0.7s; --drift-a: -7px; --drift-b: 5px;  --drift-c: -6px; }
.page-rain-19 { left: 98%; --petal-size: 19px; --petal-rotate: -12deg; --petal-opacity: 0.46; --fall-duration: 12.9s; --fall-delay: -6.6s; --drift-a: 5px;  --drift-b: -4px; --drift-c: 4px; }
.page-rain-20 { left: 99%; --petal-size: 21px; --petal-rotate: 18deg;  --petal-opacity: 0.5;  --fall-duration: 11.8s; --fall-delay: -9.6s; --drift-a: -5px; --drift-b: 4px;  --drift-c: -4px; }

@keyframes homePetalFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -22vh, 0) rotate(var(--petal-rotate, 0deg)) scale(var(--petal-scale, 1));
  }
  12% {
    opacity: var(--petal-opacity, 0.55);
  }
  34% {
    transform: translate3d(var(--drift-a, 6px), 34vh, 0) rotate(calc(var(--petal-rotate, 0deg) + 122deg)) scale(calc(var(--petal-scale, 1) * 1.02));
  }
  62% {
    transform: translate3d(var(--drift-b, -4px), 66vh, 0) rotate(calc(var(--petal-rotate, 0deg) + 236deg)) scale(calc(var(--petal-scale, 1) * 1.04));
  }
  84% {
    opacity: var(--petal-opacity, 0.55);
    transform: translate3d(var(--drift-c, 5px), 90vh, 0) rotate(calc(var(--petal-rotate, 0deg) + 320deg)) scale(calc(var(--petal-scale, 1) * 1.05));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift-c, 5px), 118vh, 0) rotate(calc(var(--petal-rotate, 0deg) + 388deg)) scale(calc(var(--petal-scale, 1) * 1.08));
  }
}

.home-stage-frame {
  position: relative;
  width: min(1240px, 96vw);
  height: auto;
  min-height: clamp(520px, calc(100dvh - var(--home-header-height, 78px) - 2.2rem), 860px);
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(206, 225, 241, 0.28);
  border-radius: 28px;
  background: rgba(7, 20, 34, 0.3);
  box-shadow:
    0 28px 80px rgba(4, 12, 20, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  overflow: hidden;
  isolation: isolate;
}

.home-stage-grid {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.8vh, 1.35rem);
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100%;
  justify-content: center;
  padding: clamp(0.8rem, 2.6vh, 1.6rem);
}

.home-stage-frame .hero-stage,
.home-stage-frame .home-stage-overlay {
  border-radius: inherit;
}

.home-spotlight-drop {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  transform: translate3d(var(--hero-copy-x, 0px), calc(var(--hero-copy-y, 0px) + var(--hero-scroll-shift, 0px)), 0);
  z-index: 4;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.18, 1);
  will-change: transform;
}

.home-spotlight-drop::before {
  display: none;
}

.home-spotlight {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: none;
}

.home-spotlight::before {
  display: none;
}

.home-spotlight::after {
  display: none;
}

.home-hanging-title-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0.25rem 0 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform-origin: 50% -68px;
  animation: homeTitleLoop 5.2s ease-in-out infinite;
}

.home-hanging-title-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -56px;
  width: 2px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 241, 238, 0.94), rgba(255, 241, 238, 0.18));
}

.home-cinematic-copy {
  margin-top: clamp(1rem, 2.9vh, 1.8rem);
  width: 100%;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  display: grid;
  gap: clamp(0.75rem, 1.8vh, 1.25rem);
  justify-items: center;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 248, 244, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 241, 236, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-spotlight h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 5.2vw, 4.7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.024em;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  color: #fff9f5;
  background: linear-gradient(100deg, #fff6f1 0%, #f7ddd6 22%, #fffaf7 44%, #f4d0c8 68%, #fff6f1 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 24px rgba(16, 6, 12, 0.48);
  animation: homeTitleSheen 12s linear infinite;
}

.home-spotlight-tagline {
  margin: 0;
  width: 100%;
  max-width: min(94vw, 1160px);
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3.2vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.018em;
  line-height: 1.15;
  color: rgba(255, 239, 232, 0.98);
  text-shadow: 0 3px 14px rgba(22, 9, 16, 0.45);
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: homeCinematicRise 900ms cubic-bezier(0.22, 0.7, 0.18, 1) 180ms forwards;
}

.home-spotlight-mantra {
  margin: 0 auto;
  max-width: min(92vw, 860px);
  text-align: center;
  font-size: clamp(1.05rem, 1.42vw, 1.36rem);
  line-height: 1.52;
  letter-spacing: 0.012em;
  font-weight: 500;
  color: rgba(255, 241, 235, 0.96);
  text-shadow: 0 2px 10px rgba(22, 9, 16, 0.38);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: homeCinematicRise 980ms cubic-bezier(0.22, 0.7, 0.18, 1) 440ms forwards;
}

.home-rhythm-shell {
  margin-top: clamp(0.16rem, 0.55vh, 0.48rem);
  min-height: 136px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: homeCinematicRise 1040ms cubic-bezier(0.22, 0.7, 0.18, 1) 700ms forwards;
}

.home-rhythm-line {
  margin: 0;
  max-width: min(90vw, 760px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  text-align: center;
  font-size: clamp(1.02rem, 1.34vw, 1.3rem);
  line-height: 1.54;
  font-weight: 700;
  letter-spacing: 0.008em;
  color: rgba(255, 245, 240, 0.98);
  text-shadow: 0 3px 12px rgba(22, 9, 16, 0.5);
}

.home-rhythm-line-item {
  display: block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition: opacity 540ms ease, transform 540ms ease, filter 540ms ease;
}

.home-rhythm-line-item-loop {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.home-rhythm-loop-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  min-width: max-content;
  animation: homeRhythmHeadlineLoop 9.2s linear infinite;
}

.home-rhythm-loop-track span {
  display: inline-block;
  font-size: clamp(0.95rem, 1.25vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 246, 240, 0.98);
  text-shadow: 0 3px 12px rgba(24, 9, 16, 0.48);
}

.home-rhythm-line-item.is-fading {
  opacity: 0;
  transform: translate3d(0, -9px, 0);
  filter: blur(0.7px);
}

.home-hero-actions {
  margin-top: clamp(0.35rem, 1.2vh, 0.85rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: homeCinematicRise 820ms cubic-bezier(0.22, 0.7, 0.18, 1) 940ms forwards;
}

.home-hero-actions .btn {
  min-height: 52px;
  padding: 0.82rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow: 0 10px 28px rgba(40, 12, 23, 0.35);
  animation: homeHeroCtaPulse 3.4s ease-in-out infinite;
}

@keyframes homeHeroCtaPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(40, 12, 23, 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 16px 36px rgba(73, 22, 44, 0.44);
    transform: translateY(-1.5px);
  }
}

.home-hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff4ee;
}

.home-hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-hero-proof {
  margin-top: clamp(0.5rem, 1.4vh, 1rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: homeCinematicRise 820ms cubic-bezier(0.22, 0.7, 0.18, 1) 1080ms forwards;
}

.home-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(24, 10, 18, 0.34);
  color: rgba(255, 241, 235, 0.94);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  backdrop-filter: blur(6px);
  animation: homeProofChipFloat 5.2s ease-in-out infinite;
}

.home-hero-proof span:nth-child(2) {
  animation-delay: 0.45s;
}

.home-hero-proof span:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes homeProofChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.home-scroll-cue {
  margin-top: clamp(0.48rem, 1.4vh, 0.95rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 233, 224, 0.78);
  text-shadow: 0 2px 10px rgba(22, 9, 16, 0.35);
  opacity: 0;
  animation: homeScrollCue 2.7s ease-in-out 1.2s infinite;
}

@keyframes homeScrollCue {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(4px);
  }
}

@keyframes homeCinematicRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(1.2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.home-rhythm-word {
  opacity: 0;
  transform: translate3d(-16px, 0, 0) scale(0.96);
  animation: homeRhythmWord var(--rhythm-duration, 3000ms) ease-in-out forwards;
}

@keyframes homeRhythmWord {
  0% {
    opacity: 0;
    transform: translate3d(-16px, 0, 0) scale(0.96);
    filter: blur(0.4px);
  }
  20% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(14px, 0, 0) scale(1.03);
    filter: blur(0.35px);
  }
}

@keyframes homeTitleLoop {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  20% {
    transform: rotate(1.4deg) translateY(1px);
  }
  50% {
    transform: rotate(0deg) translateY(2px);
  }
  80% {
    transform: rotate(-1.4deg) translateY(1px);
  }
}

@keyframes homeTitleSheen {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes homeRhythmHeadlineLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 1.1rem), 0, 0);
  }
}

/* Premium Home Hero Reset */
body[data-page='home'] .home-stage-shell {
  align-items: center;
  padding: clamp(1.1rem, 3.2vh, 2.1rem) clamp(1rem, 3vw, 2.6rem);
}

body[data-page='home'] .home-stage::before,
body[data-page='home'] .home-stage-overlay,
body[data-page='home'] .hero-slide-item::before,
body[data-page='home'] .hero-slide-item::after {
  display: none;
}

body[data-page='home'] .page-petal-rain {
  display: none;
}

body[data-page='home'] .home-stage-frame {
  width: min(1240px, 96vw);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

body[data-page='home'] .home-stage-grid {
  justify-content: center;
  min-height: calc(100dvh - var(--home-header-height, 78px));
}

body[data-page='home'] .home-spotlight-drop {
  transform: none;
  transition: none;
}

body[data-page='home'] .home-spotlight {
  width: min(1080px, 95vw);
  max-width: 1080px;
  padding: clamp(1.2rem, 3.6vh, 2.2rem) clamp(1.2rem, 3.8vw, 2.8rem);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page='home'] .home-hanging-title-wrap {
  animation: none;
  padding-top: 0;
}

body[data-page='home'] .home-hanging-title-wrap::before {
  display: none;
}

body[data-page='home'] .home-spotlight h1 {
  text-transform: none;
  font-size: clamp(2.3rem, 6vw, 5.1rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #fff7f1;
  background: none;
  -webkit-text-fill-color: #fff7f1;
  text-shadow: 0 8px 28px rgba(15, 6, 10, 0.52);
  animation: none;
}

body[data-page='home'] .home-cinematic-copy {
  margin-top: clamp(0.6rem, 1.8vh, 1.2rem);
  max-width: min(860px, 100%);
  gap: clamp(0.85rem, 2.1vh, 1.35rem);
}

body[data-page='home'] .home-spotlight-tagline {
  max-width: min(90vw, 760px);
  font-size: clamp(1.35rem, 2.8vw, 2.45rem);
  line-height: 1.2;
}

body[data-page='home'] .home-spotlight-mantra {
  max-width: min(90vw, 740px);
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  line-height: 1.56;
}

body[data-page='home'] .home-rhythm-shell {
  min-height: 126px;
}

body[data-page='home'] .home-rhythm-line {
  max-width: min(90vw, 700px);
  font-size: clamp(1.02rem, 1.42vw, 1.28rem);
  line-height: 1.52;
  letter-spacing: 0.01em;
}

body[data-page='home'] .home-hero-actions .btn {
  min-height: 52px;
  padding: 0.84rem 1.58rem;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 28px rgba(40, 12, 23, 0.3);
  animation: none;
}

body[data-page='home'] .home-hero-proof {
  gap: 0.62rem;
}

body[data-page='home'] .home-hero-proof span {
  min-height: 40px;
  font-size: 0.82rem;
  border-color: rgba(255, 247, 239, 0.48);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
  animation: none;
}

body[data-page='home'] .home-stage-overlay {
  transform: none;
  transition: none;
}

body[data-page='home'] .hero-stage {
  transform: none;
  transition: none;
}

body[data-page='home'] .hero-slide-item.active {
  animation: none;
}

@media (max-width: 980px) {
  body[data-page='home'] .home-stage-shell {
    padding: 0.7rem 0.72rem 0.95rem;
  }

  body[data-page='home'] .home-stage-frame {
    width: min(96vw, 96vw);
    min-height: clamp(480px, calc(100dvh - var(--home-header-height, 78px) - 1.5rem), 760px);
    border-radius: 22px;
  }

  body[data-page='home'] .home-spotlight {
    width: min(96vw, 96vw);
    border-radius: 22px;
    padding: 0.95rem 0.82rem 1.1rem;
  }

  body[data-page='home'] .home-spotlight h1 {
    font-size: clamp(1.8rem, 7.6vw, 3.1rem);
    line-height: 1.08;
  }

  body[data-page='home'] .home-spotlight-tagline {
    font-size: clamp(1.08rem, 5.2vw, 1.64rem);
  }

  body[data-page='home'] .home-spotlight-mantra,
  body[data-page='home'] .home-rhythm-line {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  body[data-page='home'] .home-rhythm-shell {
    min-height: 106px;
  }
}



/* Final home title box lock */
html body[data-page='home'] .home-hanging-title-wrap {
  width: min(98%, 1040px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

html body[data-page='home'] .home-hanging-title-wrap::before {
  display: none !important;
}

html body[data-page='home'] .home-spotlight h1 {
  margin: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  font-size: clamp(1.32rem, 2.55vw, 2.25rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.145em !important;
  color: #fff7ef !important;
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: #fff7ef !important;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.78),
    0 10px 34px rgba(0, 0, 0, 0.44) !important;
  animation: none !important;
}

html body[data-page='home'] .home-rhythm-shell {
  display: none !important;
  min-height: 0 !important;
}

html body[data-page='home'] .home-cinematic-copy {
  gap: clamp(0.5rem, 1.1vh, 0.82rem) !important;
}

@keyframes homeHeadlineWordLoop {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    letter-spacing: 0.14em;
    filter: saturate(1);
  }
  25% {
    transform: translate3d(0, -1px, 0);
    letter-spacing: 0.18em;
  }
  50% {
    transform: translate3d(0, -2px, 0);
    letter-spacing: 0.16em;
    filter: saturate(1.08);
  }
  75% {
    transform: translate3d(0, -1px, 0);
    letter-spacing: 0.12em;
  }
}

@keyframes homeHeadlineSweepLoop {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes homeHeadlineBoxLoop {
  0%, 100% {
    box-shadow:
      0 14px 30px rgba(10, 12, 20, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }
  50% {
    box-shadow:
      0 20px 34px rgba(10, 12, 20, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  html body[data-page='home'] .home-hanging-title-wrap,
  html body[data-page='home'] .home-spotlight h1 {
    animation: none !important;
  }
}


html body[data-page='home'] .home-rhythm-line-item-loop {
  width: min(94vw, 860px) !important;
  margin: 0 auto !important;
}

html body[data-page='home'] .home-rhythm-loop-track {
  gap: 2.2rem !important;
  animation: homeRhythmHeadlineLoop 8.8s linear infinite !important;
}

html body[data-page='home'] .home-rhythm-loop-track span {
  font-size: clamp(0.92rem, 1.22vw, 1.2rem) !important;
  letter-spacing: 0.16em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

@media (prefers-reduced-motion: reduce) {
  html body[data-page='home'] .home-rhythm-loop-track {
    animation: none !important;
  }
}

.home-story-band {
  position: relative;
  z-index: 4;
  padding: 1.8rem 0 1rem;
  background:
    linear-gradient(180deg, rgba(31, 15, 25, 0.14) 0%, rgba(31, 15, 25, 0) 48%),
    radial-gradient(circle at 10% 20%, rgba(255, 220, 228, 0.14), transparent 30%);
}

.home-story-head {
  max-width: 900px;
}

.home-story-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  color: #fff3ef;
}

.home-onepage-panels {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.home-onepage-card {
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 233, 226, 0.2);
  background: linear-gradient(145deg, rgba(70, 33, 47, 0.7), rgba(35, 15, 25, 0.74));
  box-shadow: 0 12px 28px rgba(20, 7, 12, 0.26);
}

.home-onepage-card h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.03;
  color: #fff3ef;
}

.home-onepage-card p {
  margin: 0.32rem 0 0;
  color: rgba(255, 233, 225, 0.9);
  font-size: 0.86rem;
  line-height: 1.52;
}

.home-onepage-card .kicker {
  margin-bottom: 0.42rem;
}

.home-onepage-card .kicker::before {
  width: 22px;
}

.home-onepage-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body[data-page='home'] .home-story-band[hidden],
body[data-page='home'] .home-location-band[hidden] {
  display: none !important;
}

.home-story-head p {
  margin: 0.5rem 0 0;
  max-width: 74ch;
  color: rgba(255, 233, 225, 0.9);
  font-size: 1rem;
  line-height: 1.72;
}

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

.home-story-card {
  padding: 1.25rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 233, 226, 0.2);
  background: linear-gradient(145deg, rgba(70, 33, 47, 0.7), rgba(35, 15, 25, 0.74));
  box-shadow: 0 18px 36px rgba(20, 7, 12, 0.28);
}

.home-story-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: #fff5f1;
}

.home-story-card p {
  margin: 0.45rem 0 0;
  color: rgba(255, 232, 224, 0.9);
  font-size: 0.96rem;
  line-height: 1.62;
}

.home-story-card-accent {
  border-color: rgba(255, 226, 168, 0.34);
  background: linear-gradient(145deg, rgba(122, 61, 80, 0.82), rgba(59, 27, 41, 0.78));
}

.home-location-band {
  position: relative;
  z-index: 4;
  padding: 0.85rem 0 1.9rem;
}

.home-location-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 0.76rem;
  align-items: stretch;
}

.home-location-copy {
  padding: 1.3rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 233, 226, 0.22);
  background: linear-gradient(145deg, rgba(73, 36, 50, 0.76), rgba(37, 17, 28, 0.8));
  box-shadow: 0 20px 45px rgba(18, 7, 12, 0.3);
}

.home-location-copy h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.95rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  color: #fff4ef;
}

.home-location-copy p {
  margin: 0.62rem 0 0;
  color: rgba(255, 230, 222, 0.9);
  font-size: 0.96rem;
  line-height: 1.7;
}

.home-location-address {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffd7c9;
}

.home-location-actions {
  margin-top: 1rem;
}

.home-location-map-wrap {
  min-height: 330px;
  border-radius: 24px;
  border: 1px solid rgba(255, 235, 226, 0.24);
  overflow: hidden;
  box-shadow: 0 26px 52px rgba(18, 7, 12, 0.34);
  background: rgba(25, 12, 19, 0.62);
}

.home-location-map {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  filter: saturate(1.08) contrast(1.04);
}

.home-lead {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 244, 240, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.home-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-entry-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-entry-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.home-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 244, 240, 0.92);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-editorial-note {
  max-width: 33rem;
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 248, 244, 0.15), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(10px);
}

.home-editorial-note h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: #fff8f4;
}

.home-editorial-note p {
  margin: 0.35rem 0 0;
  color: rgba(255, 244, 240, 0.84);
  font-size: 0.88rem;
  line-height: 1.42;
}

.home-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 47rem;
}

.home-value-pill {
  display: grid;
  gap: 0.22rem;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 248, 244, 0.14), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
}

.home-value-pill strong {
  color: #fff8f4;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-value-pill span {
  color: rgba(255, 244, 240, 0.84);
  font-size: 0.74rem;
  line-height: 1.32;
}

.home-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.4vw, 1.4rem);
  background: linear-gradient(180deg, rgba(38, 19, 29, 0.98), rgba(28, 14, 22, 0.98));
}

.home-auth-modal[hidden] {
  display: none !important;
}

body.home-auth-open {
  overflow: hidden;
}

.home-auth-panel {
  display: grid;
  position: relative;
  width: min(90vw, 700px);
  max-height: min(86vh, 860px);
  overflow: auto;
  margin: 0;
  align-content: start;
  gap: 0.62rem;
  padding: 0.84rem 0.84rem 0.8rem;
  border-radius: 24px;
  background: #fffdfb;
  border-color: rgba(184, 107, 115, 0.2);
  backdrop-filter: none;
  box-shadow: 0 22px 46px rgba(55, 28, 37, 0.18);
}

.home-auth-modal .home-auth-panel {
  width: min(90vw, 700px);
  max-height: min(86vh, 860px);
}

.home-auth-close {
  position: absolute;
  top: 0.58rem;
  right: 0.58rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(151, 101, 112, 0.26);
  background: #fff;
  color: var(--accent-strong);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(58, 28, 40, 0.12);
}

.home-auth-close:hover {
  background: #fff6f8;
}

.home-auth-header {
  padding-right: 2.5rem;
}

.home-auth-header h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.2vw, 1.98rem);
  line-height: 0.98;
}

.home-auth-header p {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.home-auth-switch {
  margin: 0;
  gap: 0.45rem;
}

.home-auth-switch .auth-switch-btn {
  min-height: 40px;
  font-size: 0.68rem;
}

.home-form-card {
  display: grid;
  gap: 0.56rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.home-form-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.28rem;
}

.home-form-card label {
  margin-bottom: 0.16rem;
  font-size: 0.58rem;
}

.home-form-card input {
  padding: 0.58rem 0.72rem;
  border-radius: 10px;
}

.home-form-row,
.home-form-row-three {
  gap: 0.42rem;
}

.home-purpose-note {
  padding: 0.5rem 0.62rem;
  border-radius: 14px;
  background: #fff7f3;
  border: 1px solid rgba(184, 107, 115, 0.14);
}

.optional-reminder-details {
  border: 1px solid rgba(184, 107, 115, 0.14);
  border-radius: 14px;
  background: #fffaf7;
}

.optional-reminder-details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.58rem 0.72rem;
  color: var(--accent-strong);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.optional-reminder-details summary::-webkit-details-marker {
  display: none;
}

.optional-reminder-details summary::after {
  content: '+';
  font-size: 0.92rem;
  line-height: 1;
}

.optional-reminder-details[open] summary::after {
  content: '-';
}

.optional-reminder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  padding: 0 0.72rem 0.72rem;
}

.home-purpose-note strong {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--accent-strong);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-purpose-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.home-check {
  margin-top: 0;
  gap: 0.45rem;
  font-size: 0.73rem;
  line-height: 1.3;
}

.home-form-actions {
  margin-top: 0.1rem;
}

.home-form-actions .btn {
  min-height: 40px;
}

.home-login-copy {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
}

.home-form-field {
  margin-top: 0.5rem;
}

@media (max-height: 860px) and (min-width: 981px) {
  .home-stage-shell {
    padding: 0;
  }

  .home-stage-grid {
    gap: 0.8rem;
    height: auto;
    min-height: inherit;
    padding: 2rem 0.72rem 0.72rem;
    grid-template-columns: 1fr;
  }

  .home-spotlight-drop {
    width: 100%;
    margin-bottom: 0.95rem;
  }

  .home-spotlight {
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .home-spotlight::before {
    display: none;
  }

  .home-spotlight::after {
    display: none;
  }

  .home-badge {
    min-height: 28px;
    padding: 0.28rem 0.68rem;
    font-size: 0.6rem;
  }

  .home-spotlight h1 {
    font-size: clamp(1.45rem, 4.4vw, 3.2rem);
    letter-spacing: 0.01em;
  }

  .home-lead {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .home-entry-actions {
    gap: 0.48rem;
  }

  .home-entry-actions .btn {
    min-height: 40px;
    padding: 0.68rem 1rem;
    font-size: 0.68rem;
  }

  .home-chip-row {
    gap: 0.36rem;
  }

  .home-chip-row span {
    min-height: 26px;
    padding: 0.22rem 0.56rem;
    font-size: 0.56rem;
  }

  .home-editorial-note {
    display: none;
  }

  .home-value-strip {
    display: none;
  }

  .home-auth-panel {
    grid-column: 2;
    justify-self: end;
    gap: 0.38rem;
    padding: 0.62rem 0.62rem 0.58rem;
    border-radius: 24px;
  }

  .home-auth-header h2 {
    font-size: 1.34rem;
  }

  .home-auth-header p {
    display: none;
  }

  .home-auth-switch .auth-switch-btn {
    min-height: 32px;
    font-size: 0.62rem;
  }

  .home-form-card {
    gap: 0.3rem;
  }

  .home-form-card label {
    margin-bottom: 0.1rem;
    font-size: 0.53rem;
  }

  .home-form-card input {
    padding: 0.48rem 0.62rem;
    font-size: 0.82rem;
  }

  .home-form-row,
  .home-form-row-three {
    gap: 0.34rem;
  }

  .optional-reminder-details summary {
    padding: 0.48rem 0.58rem;
    font-size: 0.58rem;
  }

  .optional-reminder-grid {
    gap: 0.32rem;
    padding: 0 0.58rem 0.58rem;
  }

  .home-purpose-note {
    display: none;
  }

  .home-purpose-note strong {
    font-size: 0.56rem;
  }

  .home-purpose-note p,
  .home-check {
    margin-top: 0;
    font-size: 0.66rem;
    line-height: 1.24;
  }

  .home-form-actions .btn {
    min-height: 34px;
  }

  .home-login-copy {
    font-size: 0.74rem;
  }
}

.compact-home-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 390px);
  gap: 1.35rem;
  height: 100%;
  padding: 1rem 0 0.85rem;
}

.compact-home-grid .lux-hero-copy {
  gap: 0.75rem;
  align-content: center;
}

.compact-home-grid .lux-hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(2.9rem, 5.4vw, 4.8rem);
}

.compact-home-grid .lux-hero-lead {
  max-width: 34rem;
  font-size: 0.96rem;
  line-height: 1.6;
}

.compact-pills {
  gap: 0.45rem;
}

.compact-pills span {
  min-height: 30px;
  padding: 0.3rem 0.68rem;
  font-size: 0.62rem;
}

.compact-story-card {
  max-width: 30rem;
  padding: 0.9rem 1rem;
}

.compact-story-card h2 {
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
}

.compact-story-card p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.lux-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 44rem;
}

.lux-mini-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 248, 244, 0.14), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
  color: #fff8f5;
  box-shadow: var(--shadow-soft);
}

.lux-mini-card strong {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-mini-card span {
  color: rgba(255, 244, 240, 0.84);
  font-size: 0.82rem;
  line-height: 1.42;
}

.compact-auth-card {
  align-self: center;
  padding: 0.82rem 0.82rem 0.78rem;
  border-radius: 24px;
}

.compact-auth-head h2 {
  font-size: clamp(1.4rem, 2vw, 1.82rem);
  line-height: 0.98;
}

.compact-auth-head p {
  margin-top: 0.22rem;
  font-size: 0.82rem;
  line-height: 1.38;
}

.compact-auth-card .auth-switch {
  gap: 0.5rem;
  margin: 0.62rem 0 0.58rem;
}

.compact-auth-card .auth-switch-btn {
  min-height: 38px;
  font-size: 0.66rem;
}

.compact-form-card {
  display: grid;
  gap: 0.56rem;
}

.compact-form-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.15rem;
}

.compact-form-card label {
  margin-bottom: 0.16rem;
  font-size: 0.58rem;
}

.compact-form-card input {
  padding: 0.58rem 0.72rem;
  border-radius: 10px;
}

.compact-form-row,
.compact-form-row-three {
  gap: 0.42rem;
}

.compact-purpose-note {
  margin-top: 0;
  padding: 0.5rem 0.62rem;
  border-radius: 14px;
}

.compact-purpose-note strong {
  margin-bottom: 0.08rem;
  font-size: 0.62rem;
}

.compact-purpose-note p {
  font-size: 0.72rem;
  line-height: 1.3;
}

.compact-check {
  margin-top: 0.15rem;
  gap: 0.45rem;
  font-size: 0.73rem;
  line-height: 1.3;
}

.compact-form-actions {
  margin-top: 0.16rem;
}

.compact-form-actions .btn {
  min-height: 40px;
}

.compact-login-copy {
  margin-bottom: 0.58rem;
  font-size: 0.8rem;
}

.compact-form-field {
  margin-top: 0.5rem;
}

body[data-page='home'] .whatsapp-float {
  display: none;
}

.luxury-about-section {
  position: relative;
}

.luxury-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}

.luxury-about-copy {
  display: grid;
  gap: 1rem;
}

.luxury-about-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.94;
  margin: 0;
}

.luxury-about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.luxury-values {
  display: grid;
  gap: 0.85rem;
}

.luxury-value-card,
.story-card,
.info-card,
.form-card,
.summary-card,
.explorer-shell {
  background: rgba(255, 253, 250, 0.86);
  border: 1px solid rgba(138, 104, 111, 0.12);
  backdrop-filter: blur(10px);
}

.luxury-value-card {
  padding: 1rem 1.05rem;
}

.luxury-value-card strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.luxury-value-card span,
.story-card p,
.info-card p,
.footer-col p {
  color: var(--muted);
}

.luxury-showcase-wrap {
  padding: 1.15rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.82), rgba(252, 245, 239, 0.9));
  border: 1px solid rgba(141, 107, 114, 0.12);
  box-shadow: var(--shadow-soft);
}

.luxury-showcase-intro {
  margin-bottom: 1rem;
}

.luxury-showcase-intro h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

.luxury-showcase-grid,
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-showcase-card,
.collection-showcase-card,
.category-card,
.product-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-showcase-card:hover,
.collection-showcase-card:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(184, 107, 115, 0.22);
}

.home-showcase-card {
  background: rgba(255, 255, 255, 0.92);
}

.home-showcase-card img,
.collection-showcase-card img,
.category-card img,
.product-card img {
  object-fit: cover;
}

.home-showcase-card img,
.collection-showcase-card img,
.category-card img {
  aspect-ratio: 4 / 5;
}

.home-showcase-card img {
  display: block;
  width: 100%;
  height: auto;
}

.home-showcase-body,
.collection-showcase-body,
.category-card .inner,
.product-body,
.story-card,
.info-card,
.form-card,
.summary-card {
  padding: 1.05rem;
}

.home-showcase-card h3,
.collection-showcase-card h3,
.category-card h3,
.product-card h3,
.story-card h3,
.info-card h3 {
  margin: 0 0 0.32rem;
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1.02;
}

.home-showcase-card p,
.collection-showcase-card p,
.category-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-showcase-meta,
.collection-showcase-meta {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.luxury-promise-section {
  padding-top: 0;
}

.luxury-promise-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  padding: 1.3rem 1.4rem;
  background: linear-gradient(135deg, rgba(108, 51, 77, 0.95), rgba(184, 107, 115, 0.92));
  color: #fff7f4;
}

.luxury-promise-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.luxury-promise-card p {
  margin: 0;
  color: rgba(255, 245, 241, 0.9);
  font-size: 1rem;
  align-self: center;
}

.collections-page {
  padding-bottom: 2rem;
}

.collections-page .container {
  width: min(100% - 3rem, 1580px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3.2rem;
  background:
    linear-gradient(102deg, rgba(36, 16, 24, 0.84), rgba(58, 28, 43, 0.4) 48%, rgba(33, 15, 22, 0.7)),
    var(--hero-img, url('assets/hero-photo-4k/flowers.webp?v=20260407hd8')) center/cover;
  color: #fff8f5;
}

.page-hero .kicker {
  color: #ffffff;
}

.page-hero .kicker::before {
  opacity: 0.55;
}

body[data-auth-state='logged-in'] .header-account-actions [data-open-auth-tab] {
  display: none !important;
}

.site-header .header-account-actions .btn[hidden],
.site-header .header-account-actions a[hidden],
.site-header .header-account-actions .btn[aria-hidden='true'],
.site-header .header-account-actions a[aria-hidden='true'] {
  display: none !important;
}

body[data-page='allflowers'] .collections-hero.page-hero {
  min-height: clamp(21rem, 33vw, 30rem);
  display: flex;
  align-items: center;
  padding: clamp(1.6rem, 3.4vh, 2.8rem) 0;
  background: radial-gradient(circle at 76% 18%, rgba(255, 225, 236, 0.18), transparent 34%),
    rgba(19, 10, 16, 0.18);
}

body[data-page='allflowers'] .collections-hero.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(108deg, rgba(20, 8, 14, 0.12) 0%, rgba(28, 12, 18, 0.04) 46%, rgba(16, 7, 12, 0.1) 100%),
    radial-gradient(circle at 16% 18%, rgba(255, 236, 243, 0.12), transparent 26%);
  pointer-events: none;
}

.collections-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.collections-hero-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: var(--hero-focus-x, center) var(--hero-focus-y, center);
  background-repeat: no-repeat;
  background-color: #1a0d12;
  opacity: 0;
  transform: none;
  filter: saturate(1.05) contrast(1.04) brightness(0.98);
  transition: opacity 1.15s ease;
}

.collections-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(20, 9, 15, 0.42) 0%, rgba(30, 14, 20, 0.08) 46%, rgba(14, 7, 11, 0.32) 100%),
    radial-gradient(circle at 78% 22%, rgba(255, 230, 240, 0.08), transparent 26%);
}

.collections-hero-slide.is-active {
  opacity: 1;
  transform: none;
  animation: none;
}

body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  align-items: center;
  padding-inline: clamp(1rem, 2.2vw, 1.9rem);
}

body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] {
  max-width: 20ch;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  line-height: 0.95;
  min-height: 2.06em;
  margin: 0;
}

body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] span {
  display: block;
  white-space: nowrap;
}

body[data-page='allflowers'] .collections-hero-copy [data-collections-hero-description] {
  max-width: 44rem;
  min-height: 3.3em;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.92;
  max-width: 12ch;
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 245, 241, 0.9);
}

.breadcrumb {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb a {
  text-decoration: underline;
}

.collections-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.35rem;
  align-items: stretch;
}

.collections-hero-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.62rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  max-width: min(60rem, 100%);
}

.collections-loop-tab {
  position: relative;
  width: min(100%, 1100px);
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.22), rgba(255, 247, 234, 0.32));
  box-shadow: 0 10px 30px rgba(8, 6, 12, 0.26);
  backdrop-filter: blur(10px);
}

.collections-loop-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.4rem;
  padding: 0.62rem 1rem;
  animation: collectionsLoopMarquee 12s linear infinite;
}

.collections-loop-track span {
  display: inline-flex;
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.2vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.97);
  text-shadow: 0 2px 10px rgba(10, 7, 12, 0.28);
}

@keyframes collectionsLoopMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1.2rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .collections-loop-track {
    animation: none;
  }
}

.collections-hero-scene {
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 245, 249, 0.94);
}

.collections-hero-note {
  padding: 1.15rem;
  background: linear-gradient(152deg, rgba(255, 251, 247, 0.24), rgba(255, 246, 251, 0.14));
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 52px rgba(8, 3, 11, 0.34);
}

.collections-hero-note h2 {
  font-size: 2rem;
  line-height: 1.02;
  color: #fff8f5;
  margin: 0;
}

.collections-hero-note p {
  color: rgba(255, 245, 241, 0.84);
}

.collections-hero-note [data-collections-hero-note-title] {
  min-height: 2.06em;
  white-space: nowrap;
  font-size: clamp(1.58rem, 2.3vw, 2.2rem);
}

.collections-hero-note [data-collections-hero-note-description] {
  min-height: 4.1em;
}

body[data-page='allflowers'] .collections-hero-copy [data-collections-hero-description],
body[data-page='allflowers'] .collections-hero-note [data-collections-hero-note-description] {
  line-height: 1.4;
}

.collections-hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.collections-hero-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff5f2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collections-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.collections-hero-shortcuts {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.collections-hero-shortcuts .category-chip {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff4f1;
  white-space: nowrap;
}

.collections-hero-shortcuts .category-chip:hover,
.collections-hero-shortcuts .category-chip.is-active {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fffefc;
}

.collections-hero-indicators {
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.collections-hero-indicators button {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.26);
  opacity: 0.72;
  cursor: pointer;
  transition: width 0.3s ease, opacity 0.25s ease, background 0.25s ease;
}

.collections-hero-indicators button.is-active {
  width: 40px;
  opacity: 1;
  background: rgba(255, 236, 246, 0.92);
}

.product-options-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

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

body.modal-open {
  overflow: hidden;
}

.product-options-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 173, 0.18), transparent 44%),
    radial-gradient(circle at 85% 15%, rgba(113, 191, 255, 0.2), transparent 42%),
    rgba(9, 15, 28, 0.72);
  backdrop-filter: blur(10px);
}

.product-options-card {
  position: relative;
  z-index: 1;
  width: min(95vw, 940px);
  border-radius: 28px;
  border: 1px solid rgba(186, 212, 236, 0.26);
  background:
    linear-gradient(148deg, rgba(8, 27, 49, 0.97), rgba(14, 35, 59, 0.95)),
    radial-gradient(circle at 10% 12%, rgba(255, 128, 182, 0.2), transparent 48%),
    radial-gradient(circle at 90% 92%, rgba(128, 208, 255, 0.22), transparent 46%);
  color: #e8f2fb;
  padding: 1.25rem;
  box-shadow:
    0 32px 64px rgba(6, 13, 26, 0.56),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.product-options-card::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  top: -145px;
  right: -110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 144, 190, 0.22), transparent 62%);
  pointer-events: none;
}

.product-options-card::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -130px;
  left: -95px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(117, 197, 255, 0.2), transparent 64%);
  pointer-events: none;
}

.product-options-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(194, 221, 242, 0.46);
  background: rgba(184, 212, 235, 0.16);
  color: #eaf6ff;
  font-size: 1.32rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, background-color 0.18s ease;
  z-index: 3;
}

.product-options-close:hover {
  transform: scale(1.04);
  background: rgba(203, 228, 247, 0.24);
}

.product-options-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: min(560px, 82vh);
}

/* LEFT — full-height portrait image */
.pom-visual {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  position: relative;
  background: rgba(11, 31, 52, 0.6);
  min-height: 320px;
}

.pom-visual .product-options-image-wrap {
  position: absolute;
  inset: 0;
}

.pom-visual .product-options-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: opacity 0.28s ease;
}

/* RIGHT — scrollable form panel */
.pom-panel {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  overflow-y: auto;
  padding: 1.4rem 1.2rem 1.15rem;
  border-radius: 0 20px 20px 0;
  border-left: 1px solid rgba(194, 220, 239, 0.12);
  max-height: min(560px, 82vh);
}

.pom-header {
  display: grid;
  gap: 0.38rem;
}

.pom-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.1;
}

.pom-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(177, 207, 230, 0.9);
  margin-bottom: 0.3rem;
}

.pom-section {
  display: flex;
  flex-direction: column;
}

.pom-section--grow {
  flex: 1;
}

.pom-row-2col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

/* Size picker buttons */
.pom-size-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.pom-size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.55rem 0.3rem;
  border-radius: 14px;
  border: 1.5px solid rgba(194, 218, 238, 0.24);
  background: rgba(11, 33, 55, 0.52);
  color: rgba(220, 238, 255, 0.88);
  cursor: pointer;
  gap: 0.12rem;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
}

.pom-size-btn:hover {
  border-color: rgba(255, 160, 196, 0.5);
  background: rgba(255, 160, 196, 0.08);
  transform: translateY(-1px);
}

.pom-size-btn.is-active {
  border-color: rgba(246, 123, 176, 0.85);
  background: rgba(246, 123, 176, 0.14);
  box-shadow: 0 0 0 2px rgba(246, 123, 176, 0.18);
}

.pom-size-btn-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pom-size-btn-price {
  font-size: 0.7rem;
  opacity: 0.82;
}

/* Qty stepper */
.pom-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(176, 209, 235, 0.28);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(11, 31, 52, 0.72);
  width: 108px;
}

.pom-qty-btn {
  width: 34px;
  height: 42px;
  font-size: 1.1rem;
  border: none;
  background: transparent;
  color: rgba(220, 238, 255, 0.88);
  cursor: pointer;
  transition: background 0.14s ease;
  flex-shrink: 0;
}

.pom-qty-btn:hover {
  background: rgba(255, 160, 196, 0.15);
}

.pom-qty #productOptionsQty {
  flex: 1;
  min-width: 0;
  text-align: center;
  border: none;
  background: transparent;
  color: #f2f9ff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0;
  -moz-appearance: textfield;
}

.pom-qty #productOptionsQty::-webkit-inner-spin-button,
.pom-qty #productOptionsQty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Add-ons collapsible */
.pom-addons {
  border: 1px solid rgba(183, 212, 235, 0.24);
  border-radius: 16px;
  overflow: hidden;
}

.pom-addons-header {
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(176, 205, 227, 0.9);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.pom-addons-header::-webkit-details-marker { display: none; }

.pom-addons[open] .pom-addons-header {
  border-bottom: 1px solid rgba(183, 212, 235, 0.18);
}

.pom-addons > .product-addon-list {
  padding: 0.75rem;
  margin: 0;
}

.pom-optional {
  font-weight: 400;
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
}

/* Footer */
.pom-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(194, 220, 239, 0.17);
}

.pom-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.pom-total span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(176, 205, 227, 0.9);
}

.pom-total strong {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
}

.pom-cta-btn {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 224, 0.34);
  background: linear-gradient(130deg, #f67bb0, #d96ba4 52%, #aa5f90);
  color: #fff9ff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(174, 76, 125, 0.28);
  padding: 0.75rem 1.5rem;
  font-size: 0.88rem;
}

.pom-cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.pom-panel select,
.pom-panel textarea {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(176, 209, 235, 0.35);
  background: rgba(11, 31, 52, 0.72);
  color: #f2f9ff;
  padding: 0 0.78rem;
  font-size: 0.88rem;
}

.pom-panel textarea {
  padding: 0.55rem 0.78rem;
  resize: vertical;
  min-height: 60px;
}

.pom-panel select:focus,
.pom-panel textarea:focus {
  outline: none;
  border-color: rgba(255, 171, 203, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 171, 203, 0.16);
}

@media (max-width: 860px) {
  .product-options-card {
    width: min(96vw, 660px);
    padding: 1rem;
  }

  .product-options-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pom-visual {
    border-radius: 16px;
    height: 220px;
    min-height: 0;
  }

  .pom-visual .product-options-image-wrap {
    position: relative;
    height: 100%;
  }

  .pom-panel {
    border-radius: 16px;
    border-left: none;
    border-top: 1px solid rgba(194, 220, 239, 0.12);
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 640px) {
  .product-options-card {
    width: 100%;
    border-radius: 22px;
    padding: 0.85rem;
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-options-close {
    width: 38px;
    height: 38px;
  }

  .pom-row-2col {
    grid-template-columns: 1fr;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
}

.section-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.category-showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.collection-showcase-card {
  position: relative;
  display: block;
  min-height: 440px;
  border-radius: 30px;
  background: #170c14;
  border: 1px solid rgba(255, 226, 219, 0.18);
  box-shadow: 0 22px 48px rgba(24, 8, 17, 0.2);
  cursor: pointer;
  isolation: isolate;
}

.collection-showcase-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}

.collection-showcase-card > img,
.collection-showcase-card .collection-showcase-slide {
  width: 100%;
  height: 100%;
  min-height: 440px;
  aspect-ratio: auto;
  display: block;
  object-position: center center;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.05) brightness(0.92);
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.7s ease, opacity 0.85s ease;
}

.collection-showcase-card .collection-showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.collection-showcase-card .collection-showcase-slide.is-active {
  opacity: 1;
}

.collection-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 10, 0.08) 0%,
    rgba(18, 10, 17, 0.22) 48%,
    rgba(16, 8, 14, 0.62) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.collection-showcase-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(
    180deg,
    rgba(22, 10, 18, 0) 0%,
    rgba(24, 10, 18, 0.52) 42%,
    rgba(15, 7, 13, 0.94) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.collection-showcase-card:hover > img,
.collection-showcase-card:hover .collection-showcase-slide.is-active {
  transform: scale(1.05);
}

.collection-showcase-card.is-active {
  border-color: rgba(255, 201, 191, 0.58);
  box-shadow: 0 30px 70px rgba(92, 22, 47, 0.44);
}

.collection-showcase-card.is-active::before {
  background: linear-gradient(
    180deg,
    rgba(21, 6, 14, 0.08) 0%,
    rgba(32, 10, 21, 0.26) 38%,
    rgba(31, 9, 19, 0.82) 100%
  );
}

.collection-showcase-cta {
  pointer-events: auto;
  margin-top: 0.18rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 0.56rem 0.95rem;
  border: 1px solid rgba(255, 234, 229, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fffaf6;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.collection-showcase-cta:hover {
  background: linear-gradient(135deg, rgba(197, 108, 132, 0.88), rgba(159, 66, 98, 0.92));
  border-color: rgba(255, 224, 216, 0.66);
  color: #ffffff;
  transform: translateY(-1px);
}

.collection-showcase-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  min-height: 0;
  padding: 1.08rem 1.08rem 1.1rem;
  pointer-events: none;
}

.collection-showcase-copy {
  display: grid;
  gap: 0.22rem;
  max-width: 18ch;
}

.collection-showcase-meta {
  margin: 0;
  align-self: flex-start;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 235, 230, 0.36);
  color: rgba(255, 238, 231, 0.92);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.collection-showcase-card h3 {
  margin: 0;
  color: #fff7f2;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 0.98;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.collection-showcase-card p {
  margin: 0;
  color: rgba(255, 236, 229, 0.9);
  font-size: 0.86rem;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
  max-width: 22ch;
}

.collection-showcase-card.is-active .collection-showcase-cta {
  background: linear-gradient(135deg, rgba(197, 108, 132, 0.9), rgba(159, 66, 98, 0.95));
  border-color: rgba(255, 227, 220, 0.72);
  color: #ffffff;
}

.explorer-shell {
  padding: 1.2rem;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(138, 104, 111, 0.14);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
  max-height: 180px;
  overflow: auto;
  padding-right: 0.25rem;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(138, 104, 111, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-chip:hover,
.category-chip.is-active {
  background: rgba(184, 107, 115, 0.12);
  border-color: rgba(184, 107, 115, 0.32);
  color: var(--accent-strong);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(2, minmax(180px, 0.8fr));
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

body[data-page='allflowers'] .luxury-filter-bar {
  position: sticky;
  top: calc(var(--header-height) + 0.5rem);
  z-index: 40;
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.98);
  border: 1px solid rgba(138, 104, 111, 0.14);
  box-shadow: 0 12px 30px rgba(77, 39, 50, 0.09);
}

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

.catalog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 104, 111, 0.12);
}

.product-card img {
  aspect-ratio: 4 / 5;
}

.product-image-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98), rgba(247, 247, 248, 0.96) 62%, rgba(243, 243, 245, 0.94));
}

.product-image-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 18px 20px rgba(31, 23, 26, 0.16));
  image-rendering: auto;
}

body[data-page='allflowers'] .luxury-product-grid .product-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(101, 71, 76, 0.14);
  box-shadow: 0 14px 30px rgba(58, 33, 39, 0.08);
}

body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage {
  aspect-ratio: 3 / 4;
  min-height: unset;
  height: auto;
  padding: 14px 14px 10px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98), rgba(247, 247, 248, 0.96) 62%, rgba(243, 243, 245, 0.94));
  border-bottom: 1px solid rgba(125, 92, 98, 0.1);
}

body[data-page='allflowers'] .luxury-product-grid .product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 20px rgba(31, 23, 26, 0.16));
  image-rendering: auto;
}

body[data-page='allflowers'] .luxury-product-grid .product-card .product-body {
  padding-top: 0.95rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(184, 107, 115, 0.1);
  color: var(--accent-strong);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
}

.product-card h3 {
  font-size: 1.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2rem;
}

.size-row {
  display: grid;
  gap: 0.28rem;
}

.size-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.size-select {
  padding: 0.7rem 0.75rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.price {
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 800;
}

.empty-note {
  padding: 1rem;
  border: 1px dashed rgba(138, 104, 111, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.cart-items,
.checkout-items {
  display: grid;
  gap: 0.72rem;
}

.cart-item,
.checkout-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.78rem;
  border-radius: 18px;
  border: 1px solid rgba(138, 104, 111, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.cart-item img,
.checkout-item img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
}

.item-title {
  margin: 0 0 0.15rem;
  font-weight: 800;
  color: var(--ink);
}

.item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(138, 104, 111, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.item-actions {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
}

.link-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.46rem 0;
  border-bottom: 1px solid rgba(138, 104, 111, 0.12);
}

.summary-row.total {
  margin-top: 0.2rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(138, 104, 111, 0.2);
  border-bottom: 0;
  font-size: 1rem;
}

.inline-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.inline-note.warning {
  color: #9f2d2d;
}

.story-card,
.info-card,
.form-card,
.summary-card {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
}

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

.page-hero .container {
  display: grid;
  gap: 0.75rem;
}

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, #20161b 0%, #150e12 100%);
  color: #f8f0ed;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 2.2rem 0 1.2rem;
}

.footer-grid-compact {
  grid-template-columns: 1.4fr repeat(2, minmax(0, 0.8fr));
}

.footer-brand h3,
.footer-col h4 {
  margin: 0 0 0.55rem;
  font-family: var(--font-head);
  font-size: 1.45rem;
}

.footer-brand p,
.footer-col a {
  color: rgba(248, 240, 237, 0.82);
  font-size: 0.94rem;
}

.footer-col a {
  display: block;
  margin: 0.26rem 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 0 1.3rem;
  color: rgba(248, 240, 237, 0.65);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: #1faa52;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 32px rgba(31, 170, 82, 0.28);
}

.whatsapp-float:hover {
  background: #169646;
}

.whatsapp-float-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.whatsapp-float-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-float-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .lux-hero-grid,
  .luxury-about-grid,
  .collections-hero-grid,
  .luxury-promise-card,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .lux-hero {
    min-height: auto;
  }

  .lux-hero .hero-overlay {
    min-height: auto;
  }

  .lux-hero-grid {
    padding: 2rem 0 2.2rem;
  }

  .luxury-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='home'] {
    overflow: auto;
  }

  body[data-page='home'] .lux-home-single-screen {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body[data-page='home'] .lux-home-single-screen .lux-hero,
  body[data-page='home'] .lux-home-single-screen .hero-overlay {
    min-height: auto;
  }

  .compact-home-grid {
    grid-template-columns: 1fr;
    height: auto;
    padding: 1.6rem 0 1.9rem;
  }

  .home-stage-shell {
    padding: 1.2rem 0 1.8rem;
  }

  .home-stage-grid {
    grid-template-columns: 1fr;
    min-height: 100%;
  }

  .home-onepage-panels {
    grid-template-columns: 1fr;
    margin-top: 0.8rem;
  }

  .home-auth-panel {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
  }

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

  .home-story-band {
    padding: 3.2rem 0 1.8rem;
  }

  .home-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-location-grid {
    grid-template-columns: 1fr;
  }

  .home-location-map-wrap,
  .home-location-map {
    min-height: 340px;
  }
}

@media (max-width: 980px) {
  body[data-page='home'] {
    --home-header-height: 76px;
  }

  .home-utility-header {
    --header-height: 76px;
  }

  .home-utility-header .utility-brand {
    height: 44px;
  }

  .site-header {
    --header-height: 76px;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 0.9rem;
    min-height: var(--header-height);
    padding: 0.65rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(126, 92, 98, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .item-actions {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
    align-items: center;
    gap: 0.8rem;
  }

  .form-row,
  .form-row-three,
  .footer-grid,
  .footer-grid-compact,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .luxury-showcase-grid,
  .category-showcase-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-showcase-card,
  .collection-showcase-card img {
    min-height: 360px;
  }

  .collection-showcase-body {
    min-height: 0;
    padding: 0.94rem 0.92rem 0.96rem;
  }

  .lux-mini-grid {
    grid-template-columns: 1fr;
  }

  .home-stage-frame {
    border-radius: 22px;
  }

  .home-spotlight-drop {
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    margin-bottom: 0;
  }

  .home-spotlight {
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .home-hanging-title-wrap {
    width: 100%;
    transform-origin: 50% -50px;
  }

  .home-hanging-title-wrap::before {
    top: -50px;
    height: 50px;
  }

  .home-cinematic-copy {
    width: 100%;
  }

  .home-spotlight::before {
    display: none;
  }

  .home-spotlight::after {
    display: none;
  }

  .utility-header-main {
    grid-template-columns: 1fr auto;
  }

  .header-utilities {
    gap: 0.55rem;
  }

  .header-account-actions {
    gap: 0.5rem;
  }

  .header-auth-dynamic {
    gap: 0.5rem;
  }

  .header-phone-pill {
    padding: 0.45rem 0.72rem;
  }
}

@media (max-width: 640px) {
  body[data-page='home'] {
    --home-header-height: 74px;
  }

  .home-utility-header {
    --header-height: 74px;
  }

  .home-utility-header .utility-brand {
    width: min(168px, 50vw);
    height: 42px;
  }

  .site-header {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 1.4rem, var(--container));
  }

  .header-main {
    min-height: var(--header-height);
    padding: 0.5rem 0;
  }

  .brand {
    width: min(132px, 36vw);
    justify-self: start;
  }

  .utility-brand {
    width: min(150px, 42vw);
  }

  .section {
    padding: 3.3rem 0;
  }

  .lux-hero-grid {
    padding: 1.4rem 0 1.8rem;
  }

  .lux-hero-copy h1,
  .page-hero h1,
  .luxury-about-copy h2,
  .section-head h2,
  .luxury-promise-card h2 {
    max-width: none;
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] {
    font-size: clamp(1.78rem, 8.4vw, 2.55rem);
    min-height: auto;
  }

  body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] span {
    white-space: normal;
  }

  body[data-page='allflowers'] .collections-hero-copy [data-collections-hero-description],
  body[data-page='allflowers'] .collections-hero-note [data-collections-hero-note-title],
  body[data-page='allflowers'] .collections-hero-note [data-collections-hero-note-description] {
    min-height: auto;
  }

  .lux-hero-actions,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lux-hero-actions .btn,
  .header-actions .btn,
  .cart-link {
    width: 100%;
  }

  .lux-hero-pills,
  .category-links {
    gap: 0.45rem;
  }

  .lux-hero-pills span,
  .category-chip {
    width: 100%;
    justify-content: center;
  }

  .luxury-showcase-grid,
  .category-showcase-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .collection-showcase-card,
  .collection-showcase-card img {
    min-height: 330px;
  }

  .collection-showcase-body {
    min-height: 0;
    padding: 0.88rem 0.84rem 0.86rem;
    gap: 0.42rem;
  }

  .collection-showcase-card h3 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .collection-showcase-card p {
    font-size: 0.86rem;
  }

  .home-spotlight h1 {
    font-size: clamp(1.45rem, 8.4vw, 2.25rem);
    letter-spacing: 0.01em;
  }

  .home-hanging-title-wrap {
    width: 100%;
    padding: 0;
  }

  .home-hanging-title-wrap::before {
    top: -42px;
    height: 42px;
  }

  .home-cinematic-copy {
    margin-top: 0.68rem;
    width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .home-spotlight-tagline {
    font-size: clamp(1.02rem, 5vw, 1.42rem);
  }

  .home-spotlight-mantra {
    max-width: min(96vw, 92%);
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .home-rhythm-line {
    max-width: min(96vw, 92%);
    font-size: 0.98rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    gap: 0.12rem;
  }

  .home-rhythm-shell {
    min-height: 112px;
  }

  .home-hero-actions {
    width: 100%;
    gap: 0.55rem;
  }

  .home-hero-actions .btn {
    width: min(92vw, 320px);
    min-height: 48px;
    font-size: 0.86rem;
  }

  .home-hero-proof {
    width: 100%;
    gap: 0.4rem;
  }

  .home-hero-proof span {
    width: min(92vw, 320px);
    justify-content: center;
    min-height: 38px;
    font-size: 0.74rem;
  }

  .home-scroll-cue {
    margin-top: 0.55rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .home-entry-actions,
  .home-chip-row {
    flex-direction: column;
  }

  .home-entry-actions .btn,
  .home-chip-row span {
    width: 100%;
    justify-content: center;
  }

  .home-stage-grid {
    padding: 0;
  }

  .home-onepage-card h2 {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .home-onepage-card p {
    font-size: 0.8rem;
    line-height: 1.46;
  }

  .home-story-head h2 {
    font-size: clamp(1.65rem, 7.8vw, 2.25rem);
  }

  .home-story-head p,
  .home-story-card p,
  .home-location-copy p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .home-story-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .home-story-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .home-location-copy {
    padding: 1rem;
    border-radius: 20px;
  }

  .home-location-map-wrap,
  .home-location-map {
    min-height: 280px;
    border-radius: 20px;
  }

  .home-auth-panel {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .home-auth-modal .home-auth-panel {
    width: min(94vw, 560px);
    max-height: min(88vh, 860px);
  }

  .utility-header-main {
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
  }

  .header-utilities {
    gap: 0.42rem;
  }

  .header-phone-pill {
    min-height: 38px;
    padding: 0.42rem;
  }

  .header-phone-pill span:last-child {
    display: none;
  }

  .header-account-actions {
    gap: 0.42rem;
  }

  .header-auth-dynamic {
    gap: 0.42rem;
  }

  .header-account-actions .btn,
  .header-account-actions .cart-link {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    font-size: 0.64rem;
    width: auto;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 1fr;
  }

  .cart-item img,
  .checkout-item img {
    width: 100%;
    height: 180px;
  }

  .explorer-shell,
  .lux-auth-card,
  .luxury-showcase-wrap,
  .luxury-promise-card,
  .collections-hero-note {
    padding: 1rem;
    border-radius: 24px;
  }

  .whatsapp-float {
    padding: 0.7rem;
  }

  .whatsapp-float-text {
    display: none;
  }
}

/* Shared Utility Header = Home Header Layout */
.utility-header {
  --header-height: 78px;
  background: #f8fbff;
  border-bottom-color: rgba(76, 112, 145, 0.2);
}

.utility-header .container {
  width: min(100% - 2.2rem, 1860px);
}

.utility-header .utility-header-main {
  min-height: var(--header-height);
  gap: 1rem;
}

.utility-header .utility-brand {
  width: min(233px, 48vw);
  height: 56px;
}

.utility-header .utility-brand .brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.utility-header .header-petal-rain {
  display: none;
}

.utility-header .header-utilities {
  gap: 0.55rem;
}

.utility-header .header-account-actions,
.utility-header .header-auth-dynamic {
  gap: 0.45rem;
}

.utility-header .header-phone-pill {
  min-height: 44px;
  padding: 0.5rem 0.92rem;
  background: #ffffff;
  border-color: rgba(69, 110, 146, 0.34);
  box-shadow: 0 8px 18px rgba(15, 33, 50, 0.12);
  font-size: 0.78rem;
  color: #19324b;
  font-weight: 800;
}

.utility-header .header-utility-icon {
  width: 20px;
  height: 20px;
  font-size: 0.72rem;
  background: rgba(61, 136, 198, 0.16);
  color: #245f90;
}

.utility-header .header-account-actions .btn.btn-sm,
.utility-header .header-auth-dynamic .btn.btn-sm,
.utility-header .header-account-actions .cart-link,
.utility-header .header-auth-dynamic .cart-link {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(15, 33, 50, 0.12);
}

.utility-header .header-account-actions .cart-link,
.utility-header .header-auth-dynamic .cart-link,
.utility-header .header-account-actions .btn-ghost,
.utility-header .header-auth-dynamic .btn-ghost {
  background: #ffffff;
  border-color: rgba(69, 110, 146, 0.34);
  color: #1a3148;
}

.utility-header .header-account-actions .btn-primary,
.utility-header .header-auth-dynamic .btn-primary {
  background: linear-gradient(135deg, #2a5d88 0%, #1d4e76 100%);
  border-color: transparent;
  color: #f7fbff;
  box-shadow: 0 10px 20px rgba(20, 48, 73, 0.3);
}

.utility-header .cart-badge {
  min-width: 24px;
  height: 24px;
  font-size: 0.7rem;
  background: #b9985a;
  color: #112033;
}

/* Header Parity Lock: home + shopping headers must be identical */
.site-header.utility-header.home-utility-header {
  --header-height: 78px !important;
}

.site-header.utility-header.home-utility-header .utility-header-main {
  min-height: var(--header-height) !important;
  padding: 0.2rem 0 !important;
}

.site-header.utility-header.home-utility-header .utility-brand {
  width: min(233px, 48vw) !important;
  height: 56px !important;
}

.site-header.utility-header.home-utility-header .header-phone-pill {
  min-height: 44px !important;
  padding: 0.5rem 0.92rem !important;
  font-size: 0.78rem !important;
}

.site-header.utility-header.home-utility-header .header-account-actions .btn.btn-sm,
.site-header.utility-header.home-utility-header .header-auth-dynamic .btn.btn-sm,
.site-header.utility-header.home-utility-header .header-account-actions .cart-link,
.site-header.utility-header.home-utility-header .header-auth-dynamic .cart-link {
  min-height: 44px !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.06em !important;
}

@media (max-width: 980px) {
  .utility-header {
    --header-height: 76px;
  }

  .utility-header .utility-brand {
    height: 44px;
  }

  .site-header.utility-header.home-utility-header {
    --header-height: 76px !important;
  }

  .site-header.utility-header.home-utility-header .utility-brand {
    height: 44px !important;
  }
}

@media (max-width: 640px) {
  .utility-header {
    --header-height: 74px;
  }

  .utility-header .utility-brand {
    width: min(168px, 50vw);
    height: 42px;
  }

  .site-header.utility-header.home-utility-header {
    --header-height: 74px !important;
  }

  .site-header.utility-header.home-utility-header .utility-brand {
    width: min(168px, 50vw) !important;
    height: 42px !important;
  }

  .utility-header .header-phone-pill {
    min-height: 38px;
    padding: 0.42rem;
  }

  .utility-header .header-phone-pill span:last-child {
    display: none;
  }

  .utility-header .header-account-actions .btn,
  .utility-header .header-account-actions .cart-link,
  .utility-header .header-auth-dynamic .btn,
  .utility-header .header-auth-dynamic .cart-link {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    font-size: 0.64rem;
    width: auto;
  }

  .site-header.utility-header.home-utility-header .header-phone-pill {
    min-height: 38px !important;
    padding: 0.42rem !important;
  }

  .site-header.utility-header.home-utility-header .header-account-actions .btn,
  .site-header.utility-header.home-utility-header .header-account-actions .cart-link,
  .site-header.utility-header.home-utility-header .header-auth-dynamic .btn,
  .site-header.utility-header.home-utility-header .header-auth-dynamic .cart-link {
    min-height: 38px !important;
    padding: 0.45rem 0.7rem !important;
    font-size: 0.64rem !important;
  }
}

/* Home-only Sapphire Theme (no pink) */
body[data-page='home'] {
  --accent: #3d88c6;
  --accent-strong: #245f90;
  --accent-soft: #d7e6f4;
  --rose: #8bb6d7;
  --wine: #10283e;
  --ink: #142334;
  --muted: #5f7388;
  --line: rgba(48, 89, 122, 0.24);
  background-color: #081b2c;
  background:
    radial-gradient(circle at 20% 12%, rgba(117, 153, 187, 0.34), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(54, 92, 126, 0.3), transparent 24%),
    linear-gradient(180deg, #0f2438 0%, #0a1b2b 48%, #071423 100%);
}

body[data-page='home'] .site-header {
  background: #f8fbff;
  border-bottom-color: rgba(76, 112, 145, 0.2);
}

.home-utility-header .header-phone-pill {
  background: #ffffff;
  border-color: rgba(69, 110, 146, 0.34);
  box-shadow: 0 8px 18px rgba(15, 33, 50, 0.12);
  color: #19324b;
}

.home-utility-header .header-utility-icon {
  background: rgba(61, 136, 198, 0.16);
  color: #245f90;
  font-family: 'Segoe UI Symbol', 'Noto Sans Symbols 2', 'Noto Sans Symbols', sans-serif;
}

.home-utility-header .header-account-actions .cart-link,
.home-utility-header .header-auth-dynamic .cart-link,
.home-utility-header .header-account-actions .btn-ghost,
.home-utility-header .header-auth-dynamic .btn-ghost {
  background: #ffffff;
  border-color: rgba(69, 110, 146, 0.34);
  color: #1a3148;
}

.home-utility-header .header-account-actions .btn-primary,
.home-utility-header .header-auth-dynamic .btn-primary {
  background: linear-gradient(135deg, #2a5d88 0%, #1d4e76 100%);
  color: #f7fbff;
  box-shadow: 0 10px 20px rgba(20, 48, 73, 0.3);
}

.home-utility-header .cart-badge {
  background: #b9985a;
  color: #112033;
}

/* Final desktop lock: home + shopping header must render same size */
@media (min-width: 1025px) {
  .site-header.utility-header.home-utility-header {
    --header-height: 74px !important;
    height: 74px !important;
  }

  .site-header.utility-header.home-utility-header .container {
    width: min(100% - 2.2rem, 1860px) !important;
  }

  .site-header.utility-header.home-utility-header .utility-header-main {
    min-height: 74px !important;
    height: 74px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
    gap: 0.8rem !important;
  }

  .site-header.utility-header.home-utility-header .utility-brand {
    width: min(210px, 44vw) !important;
    height: 48px !important;
  }

  .site-header.utility-header.home-utility-header .header-utilities,
  .site-header.utility-header.home-utility-header .header-account-actions,
  .site-header.utility-header.home-utility-header .header-auth-dynamic {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 0.45rem !important;
  }

  .site-header.utility-header.home-utility-header .header-phone-pill,
  .site-header.utility-header.home-utility-header .header-account-actions .btn,
  .site-header.utility-header.home-utility-header .header-account-actions .cart-link,
  .site-header.utility-header.home-utility-header .header-auth-dynamic .btn,
  .site-header.utility-header.home-utility-header .header-auth-dynamic .cart-link {
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 0.9rem !important;
    font-size: 0.73rem !important;
    line-height: 1 !important;
  }
}

/* Strict parity: collections header must match home header exactly */
body[data-page='allflowers'] .site-header.utility-header.home-utility-header {
  --header-height: 74px !important;
  height: 74px !important;
  background: #f8fbff !important;
  border-bottom-color: rgba(76, 112, 145, 0.2) !important;
}

body[data-page='allflowers'] .site-header.utility-header.home-utility-header .container {
  width: min(100% - 2.2rem, 1860px) !important;
}

body[data-page='allflowers'] .site-header.utility-header.home-utility-header .utility-header-main {
  min-height: 74px !important;
  height: 74px !important;
  padding: 0 !important;
  gap: 0.8rem !important;
  align-items: center !important;
}

body[data-page='allflowers'] .site-header.utility-header.home-utility-header .utility-brand {
  width: min(210px, 44vw) !important;
  height: 48px !important;
}

body[data-page='allflowers'] .site-header.utility-header.home-utility-header .header-phone-pill,
body[data-page='allflowers'] .site-header.utility-header.home-utility-header .header-account-actions .btn,
body[data-page='allflowers'] .site-header.utility-header.home-utility-header .header-account-actions .cart-link,
body[data-page='allflowers'] .site-header.utility-header.home-utility-header .header-auth-dynamic .btn,
body[data-page='allflowers'] .site-header.utility-header.home-utility-header .header-auth-dynamic .cart-link {
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 0.9rem !important;
  font-size: 0.73rem !important;
  line-height: 1 !important;
}

body[data-page='allflowers'] .site-header.utility-header.home-utility-header .header-petal-rain {
  display: none !important;
}

body[data-page='home'] .home-stage::before {
  background: transparent;
  animation: none;
}

body[data-page='home'] .home-stage-overlay {
  background: transparent;
}

body[data-page='home'] .hero-slide-item::before {
  background: none;
}

body[data-page='home'] .hero-slide-item::after {
  background: none;
}

body[data-page='home'] .hero-slide-item {
  filter: saturate(1.02) contrast(1.03) brightness(1);
  transition: opacity 1.45s ease, transform 2.8s ease;
}

body[data-page='home'] .hero-slide-item.active {
  transform: scale(1.01);
}

body[data-page='home'] .home-stage-frame {
  background: linear-gradient(145deg, rgba(10, 38, 66, 0.56), rgba(8, 27, 47, 0.5));
  border-color: rgba(160, 205, 240, 0.36);
}

/* Legacy header compatibility lock: force every page header to home compact spec */
.topbar {
  display: none !important;
}

.site-header {
  --header-height: 74px !important;
  background: #f8fbff !important;
  border-bottom-color: rgba(76, 112, 145, 0.2) !important;
}

.site-header .header-main {
  min-height: 74px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
}

.site-header .brand {
  width: min(210px, 44vw) !important;
  height: 48px !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  justify-self: start !important;
}

.site-header .brand .brand-logo-image {
  width: auto !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.site-header .main-nav,
.site-header .nav-toggle {
  display: none !important;
}

.site-header .header-actions,
.site-header .header-utilities,
.site-header .header-account-actions,
.site-header .header-auth-dynamic {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.site-header .header-actions,
.site-header .header-utilities {
  justify-self: end !important;
}

.site-header .header-phone-pill,
.site-header .header-actions .btn,
.site-header .header-actions .cart-link,
.site-header .header-account-actions .btn,
.site-header .header-account-actions .cart-link,
.site-header .header-auth-dynamic .btn,
.site-header .header-auth-dynamic .cart-link {
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 0.9rem !important;
  font-size: 0.73rem !important;
  line-height: 1 !important;
}

.site-header .header-utility-icon {
  font-family: 'Segoe UI Symbol', 'Noto Sans Symbols 2', 'Noto Sans Symbols', sans-serif !important;
}

/* Absolute header parity lock (desktop): homepage = shopping = cart = all pages */
@media (min-width: 1025px) {
  html body .site-header.floral-header.utility-header.home-utility-header {
    --header-height: 68px !important;
    height: 68px !important;
    min-height: 68px !important;
    background: #f8fbff !important;
    border-bottom: 1px solid rgba(76, 112, 145, 0.2) !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header > .container.header-main.utility-header-main {
    width: min(100% - 2.2rem, 1860px) !important;
    min-height: 68px !important;
    height: 68px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 0.6rem !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .utility-brand,
  html body .site-header.floral-header.utility-header.home-utility-header .brand.utility-brand {
    width: 184px !important;
    min-width: 184px !important;
    height: 42px !important;
    min-height: 42px !important;
    justify-self: start !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .brand-logo-image {
    width: auto !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-utilities {
    justify-self: end !important;
    gap: 0.5rem !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions,
  html body .site-header.floral-header.utility-header.home-utility-header .header-auth-dynamic {
    gap: 0.5rem !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-phone-pill {
    width: 178px !important;
    min-width: 178px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 0.7rem !important;
    font-size: 0.71rem !important;
    line-height: 1 !important;
    justify-content: center !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-phone-pill > span:last-child {
    display: inline-flex !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn,
  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .cart-link,
  html body .site-header.floral-header.utility-header.home-utility-header .header-auth-dynamic .btn,
  html body .site-header.floral-header.utility-header.home-utility-header .header-auth-dynamic .cart-link {
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 0.9rem !important;
    font-size: 0.71rem !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .cart-link,
  html body .site-header.floral-header.utility-header.home-utility-header .header-auth-dynamic .cart-link {
    min-width: 106px !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn-primary,
  html body .site-header.floral-header.utility-header.home-utility-header .header-auth-dynamic .btn-primary,
  html body .site-header.floral-header.utility-header.home-utility-header [data-auth-logout] {
    min-width: 100px !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn-ghost,
  html body .site-header.floral-header.utility-header.home-utility-header .header-auth-dynamic .btn-ghost {
    min-width: 112px !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-utility-icon {
    font-size: 0 !important;
    width: 18px !important;
    height: 18px !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-utility-icon::before {
    content: '\260E';
    font-size: 0.72rem;
    line-height: 1;
    color: #245f90;
    font-family: 'Segoe UI Symbol', 'Noto Sans Symbols 2', 'Noto Sans Symbols', sans-serif;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-petal-rain {
    display: none !important;
  }
}

body[data-page='home'] .page-petal-rain-item {
  filter: drop-shadow(0 7px 10px rgba(38, 7, 11, 0.42)) hue-rotate(-16deg) saturate(1.42) brightness(0.93) contrast(1.08) blur(var(--petal-blur));
}

body[data-page='home'] .home-spotlight {
  border-color: rgba(201, 223, 241, 0.26);
  background:
    linear-gradient(155deg, rgba(8, 23, 37, 0.55) 0%, rgba(14, 39, 58, 0.4) 58%, rgba(8, 21, 33, 0.55) 100%),
    radial-gradient(circle at 18% 16%, rgba(197, 216, 232, 0.16), transparent 36%);
  box-shadow:
    0 26px 64px rgba(4, 11, 18, 0.48),
    inset 0 1px 0 rgba(222, 236, 248, 0.22);
}

body[data-page='home'] .home-hanging-title-wrap::before {
  background: linear-gradient(180deg, rgba(235, 219, 186, 0.95), rgba(235, 219, 186, 0.14));
}

body[data-page='home'] .home-badge {
  background: rgba(235, 246, 255, 0.14);
  border-color: rgba(214, 231, 246, 0.24);
  color: rgba(235, 246, 255, 0.94);
}

body[data-page='home'] .home-spotlight h1 {
  color: #f3f8fd;
  background: linear-gradient(100deg, #f4f8fd 0%, #e7d4ad 24%, #f8fbff 48%, #dfc58d 72%, #f4f8fd 100%);
  -webkit-text-fill-color: transparent;
  text-shadow: 0 7px 24px rgba(4, 12, 20, 0.54);
}

body[data-page='home'] .home-spotlight-tagline {
  color: rgba(235, 245, 253, 0.98);
  text-shadow: 0 3px 14px rgba(4, 12, 20, 0.5);
}

body[data-page='home'] .home-spotlight-mantra,
body[data-page='home'] .home-rhythm-line {
  color: rgba(228, 240, 250, 0.95);
  text-shadow: 0 3px 12px rgba(4, 12, 20, 0.48);
}

body[data-page='home'] .home-hero-actions .btn {
  box-shadow: 0 11px 28px rgba(7, 21, 34, 0.4);
}

body[data-page='home'] .home-hero-actions .btn-primary {
  background: linear-gradient(135deg, #2e628f 0%, #1f5078 100%);
  color: #f5fbff;
}

body[data-page='home'] .home-hero-actions .btn-ghost {
  background: rgba(232, 244, 255, 0.12);
  border-color: rgba(214, 231, 246, 0.28);
  color: #edf5fc;
}

body[data-page='home'] .home-hero-actions .btn-ghost:hover {
  background: rgba(232, 244, 255, 0.2);
}

body[data-page='home'] .home-hero-proof span {
  border-color: rgba(214, 231, 246, 0.26);
  background: rgba(8, 24, 37, 0.42);
  color: rgba(232, 243, 252, 0.94);
}

body[data-page='home'] .home-scroll-cue {
  color: rgba(219, 233, 247, 0.82);
  text-shadow: 0 2px 10px rgba(4, 12, 20, 0.42);
}

body[data-page='home'] .home-story-band {
  background:
    linear-gradient(180deg, rgba(10, 24, 37, 0.16) 0%, rgba(10, 24, 37, 0) 52%),
    radial-gradient(circle at 10% 20%, rgba(144, 177, 203, 0.14), transparent 34%);
}

body[data-page='home'] .home-story-head h2,
body[data-page='home'] .home-onepage-card h2,
body[data-page='home'] .home-story-card h3,
body[data-page='home'] .home-location-copy h2,
body[data-page='home'] .home-editorial-note h2,
body[data-page='home'] .home-value-pill strong {
  color: #eef6fd;
}

body[data-page='home'] .home-story-head p,
body[data-page='home'] .home-onepage-card p,
body[data-page='home'] .home-story-card p,
body[data-page='home'] .home-location-copy p,
body[data-page='home'] .home-lead,
body[data-page='home'] .home-chip-row span,
body[data-page='home'] .home-editorial-note p,
body[data-page='home'] .home-value-pill span {
  color: rgba(221, 235, 248, 0.9);
}

body[data-page='home'] .home-onepage-card,
body[data-page='home'] .home-story-card,
body[data-page='home'] .home-location-copy {
  border-color: rgba(201, 223, 241, 0.24);
  background: linear-gradient(145deg, rgba(12, 31, 47, 0.78), rgba(8, 21, 33, 0.8));
  box-shadow: 0 18px 38px rgba(4, 11, 18, 0.34);
}

body[data-page='home'] .home-story-card-accent {
  border-color: rgba(230, 206, 158, 0.42);
  background: linear-gradient(145deg, rgba(33, 52, 68, 0.86), rgba(18, 34, 48, 0.82));
}

body[data-page='home'] .home-location-address {
  color: #e4c88f;
}

body[data-page='home'] .home-location-map-wrap {
  border-color: rgba(205, 226, 243, 0.26);
  box-shadow: 0 26px 52px rgba(4, 11, 18, 0.38);
  background: rgba(8, 21, 33, 0.64);
}

body[data-page='home'] .home-entry-actions .btn-ghost {
  background: rgba(232, 244, 255, 0.12);
  border-color: rgba(214, 231, 246, 0.24);
  color: #eef6fd;
}

body[data-page='home'] .home-entry-actions .btn-ghost:hover {
  background: rgba(232, 244, 255, 0.2);
}

body[data-page='home'] .home-editorial-note,
body[data-page='home'] .home-value-pill {
  border-color: rgba(205, 226, 243, 0.2);
  background: linear-gradient(145deg, rgba(225, 240, 252, 0.12), rgba(213, 230, 245, 0.06));
}

body[data-page='home'] .home-auth-modal {
  background: linear-gradient(180deg, rgba(7, 20, 31, 0.98), rgba(4, 14, 24, 0.98));
}

body[data-page='home'] .home-auth-panel {
  border-color: rgba(67, 110, 145, 0.28);
  box-shadow: 0 22px 46px rgba(8, 20, 32, 0.2);
}

body[data-page='home'] .home-auth-close {
  border-color: rgba(71, 111, 145, 0.34);
  color: #245f90;
  box-shadow: 0 8px 18px rgba(15, 33, 50, 0.12);
}

body[data-page='home'] .home-auth-close:hover {
  background: #edf6ff;
}

body[data-page='home'] .home-purpose-note {
  background: #f3f8fe;
  border-color: rgba(71, 111, 145, 0.2);
}

body[data-page='home'] .optional-reminder-details {
  border-color: rgba(71, 111, 145, 0.2);
  background: #f8fbff;
}

@media (prefers-reduced-motion: reduce) {
  .home-hanging-title-wrap,
  .home-spotlight-tagline,
  .home-spotlight-mantra,
  .home-rhythm-shell,
  .home-hero-actions,
  .home-hero-proof,
  .home-hero-proof span,
  .home-stage-overlay,
  .hero-stage,
  .home-spotlight-drop,
  .home-scroll-cue {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide-item,
  .reveal,
  .btn,
  .header-petal-rain-item,
  .product-card,
  .collection-showcase-card,
  .home-showcase-card,
  .brand-petal,
  .page-petal-rain-item {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Home hero outer-frame removal lock */
body[data-page='home'] .home-stage-frame {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Final auth-visibility lock: never show login/register after login */
html body[data-auth-state='logged-in'] .site-header .header-account-actions [data-open-auth-tab],
html body[data-auth-state='logged-in'] .site-header .header-account-actions a[aria-hidden='true'],
html body[data-auth-state='logged-in'] .site-header .header-account-actions .btn[aria-hidden='true'],
html body[data-auth-state='logged-in'] .site-header .header-account-actions a[hidden],
html body[data-auth-state='logged-in'] .site-header .header-account-actions .btn[hidden] {
  display: none !important;
}

/* Final logo size lock: slightly bigger, always inside header */
html body .site-header.floral-header.utility-header.home-utility-header .utility-brand,
html body .site-header.floral-header.utility-header.home-utility-header .brand.utility-brand {
  width: clamp(170px, 12vw, 198px) !important;
  min-width: clamp(170px, 12vw, 198px) !important;
  height: clamp(40px, 3.2vw, 46px) !important;
  min-height: clamp(40px, 3.2vw, 46px) !important;
}

html body .site-header.floral-header.utility-header.home-utility-header .brand-logo-image {
  width: auto !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

/* Home first-screen fit lock: hero fits in first viewport, story starts next scroll */
@media (min-width: 981px) {
  html body[data-page='home'] {
    --home-header-height: 64px !important;
  }

  html body[data-page='home'] .site-header.floral-header.utility-header.home-utility-header {
    --header-height: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
  }

  html body[data-page='home'] .site-header.floral-header.utility-header.home-utility-header > .container.header-main.utility-header-main {
    min-height: 64px !important;
    height: 64px !important;
  }

  html body[data-page='home'] .home-stage {
    height: calc(100dvh - 64px) !important;
    min-height: calc(100dvh - 64px) !important;
  }

  html body[data-page='home'] .home-stage-shell {
    height: 100% !important;
    min-height: 100% !important;
    padding: clamp(0.55rem, 1.5vh, 1rem) clamp(0.8rem, 2.1vw, 1.6rem) !important;
    align-items: center !important;
  }

  html body[data-page='home'] .home-stage-frame {
    width: min(1240px, 95vw) !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  html body[data-page='home'] .home-stage-grid {
    min-height: 100% !important;
    height: 100% !important;
    padding: clamp(0.45rem, 1.2vh, 0.9rem) clamp(0.8rem, 1.8vw, 1.3rem) !important;
  }

  html body[data-page='home'] .home-spotlight {
    width: min(1060px, 94vw) !important;
    padding: clamp(0.45rem, 1.4vh, 0.8rem) clamp(0.9rem, 2.5vw, 1.8rem) !important;
  }

  html body[data-page='home'] .home-cinematic-copy {
    margin-top: clamp(0.35rem, 1vh, 0.65rem) !important;
    gap: clamp(0.42rem, 1.1vh, 0.76rem) !important;
    max-width: min(840px, 100%) !important;
  }

  html body[data-page='home'] .home-spotlight h1 {
    font-size: clamp(1.8rem, 4.7vw, 3.5rem) !important;
    line-height: 1.01 !important;
    margin: 0 !important;
  }

  html body[data-page='home'] .home-spotlight-tagline {
    font-size: clamp(1rem, 2.3vw, 2rem) !important;
    line-height: 1.12 !important;
  }

  html body[data-page='home'] .home-spotlight-mantra,
  html body[data-page='home'] .home-rhythm-line {
    font-size: clamp(0.9rem, 1.2vw, 1.14rem) !important;
    line-height: 1.35 !important;
  }

  html body[data-page='home'] .home-rhythm-shell {
    min-height: 74px !important;
  }

  html body[data-page='home'] .home-hero-actions .btn {
    min-height: 44px !important;
    padding: 0.62rem 1.15rem !important;
  }

  html body[data-page='home'] .home-hero-proof {
    gap: 0.45rem !important;
  }

  html body[data-page='home'] .home-hero-proof span {
    min-height: 34px !important;
    padding: 0.34rem 0.72rem !important;
    font-size: 0.72rem !important;
  }
}



/* Absolute final lock: home title inside top box + creative loop animation */
html body[data-page='home'] .home-hanging-title-wrap {
  position: relative !important;
  overflow: hidden !important;
  width: min(98%, 1040px) !important;
  margin: 0 auto !important;
  padding: clamp(0.62rem, 1.55vh, 1.05rem) clamp(0.9rem, 2.4vw, 1.7rem) !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  background: linear-gradient(110deg, rgba(253, 251, 246, 0.95) 0%, rgba(249, 241, 227, 0.92) 45%, rgba(252, 246, 237, 0.95) 100%) !important;
  box-shadow:
    0 14px 30px rgba(10, 12, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  animation: homeHeadlineCardDriftCreative 7.2s cubic-bezier(0.37, 0, 0.23, 1) infinite !important;
}

html body[data-page='home'] .home-hanging-title-wrap::before {
  display: none !important;
}

html body[data-page='home'] .home-hanging-title-wrap::after {
  content: '' !important;
  position: absolute !important;
  inset: -20% auto -20% -28% !important;
  width: 28% !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 48%,
    rgba(255, 255, 255, 0.08) 72%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  filter: blur(0.4px) !important;
  transform: skewX(-16deg) translateX(0) !important;
  pointer-events: none !important;
  animation: homeHeadlineLightSweepCreative 7.4s ease-in-out infinite !important;
}

html body[data-page='home'] .home-spotlight h1 {
  position: relative !important;
  display: inline-block !important;
  margin: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  font-size: clamp(1.32rem, 2.55vw, 2.25rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.145em !important;
  color: #1c2a3e !important;
  background: linear-gradient(90deg, #1c2a3e 0%, #2b3f5f 35%, #0f2e55 55%, #1c2a3e 100%) !important;
  background-size: 220% 100% !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.52),
    0 8px 18px rgba(15, 31, 56, 0.22) !important;
  clip-path: inset(0 100% 0 0) !important;
  animation:
    homeHeadlineRevealCreative 7.2s cubic-bezier(0.28, 0.66, 0.14, 1) infinite,
    homeHeadlineGradientCreative 10.2s linear infinite,
    homeHeadlineFloatCreative 4.8s ease-in-out infinite !important;
}

html body[data-page='home'] .home-rhythm-shell {
  display: none !important;
  min-height: 0 !important;
}

html body[data-page='home'] .home-cinematic-copy {
  gap: clamp(0.5rem, 1.1vh, 0.82rem) !important;
}

@keyframes homeHeadlineRevealCreative {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0.16;
    letter-spacing: 0.2em;
  }
  16% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    letter-spacing: 0.145em;
  }
  68% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    letter-spacing: 0.145em;
  }
  100% {
    clip-path: inset(0 0 0 100%);
    opacity: 0.24;
    letter-spacing: 0.18em;
  }
}

@keyframes homeHeadlineGradientCreative {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes homeHeadlineFloatCreative {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes homeHeadlineCardDriftCreative {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      0 14px 30px rgba(10, 12, 20, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }
  50% {
    transform: translate3d(0, -2px, 0);
    box-shadow:
      0 21px 36px rgba(10, 12, 20, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }
}

@keyframes homeHeadlineLightSweepCreative {
  0% {
    transform: skewX(-16deg) translateX(0);
    opacity: 0;
  }
  16% {
    opacity: 0.7;
  }
  36% {
    transform: skewX(-16deg) translateX(460%);
    opacity: 0;
  }
  100% {
    transform: skewX(-16deg) translateX(460%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body[data-page='home'] .home-hanging-title-wrap,
  html body[data-page='home'] .home-spotlight h1,
  html body[data-page='home'] .home-hanging-title-wrap::after {
    animation: none !important;
  }
  html body[data-page='home'] .home-spotlight h1 {
    clip-path: none !important;
    opacity: 1 !important;
  }
}

/* Emergency visibility-safe creative loop for title */
html body[data-page='home'] .home-spotlight h1 {
  color: #1c2a3e !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #1c2a3e !important;
  clip-path: none !important;
  opacity: 1 !important;
  transform-origin: 50% 50% !important;
  animation:
    homeHeadlinePulseVisible 3.8s ease-in-out infinite,
    homeHeadlineGlowVisible 7.2s ease-in-out infinite !important;
}

@keyframes homeHeadlinePulseVisible {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    letter-spacing: 0.14em;
  }
  35% {
    transform: translate3d(0, -1px, 0) scale(1.01);
    letter-spacing: 0.165em;
  }
  70% {
    transform: translate3d(0, 0, 0) scale(0.998);
    letter-spacing: 0.13em;
  }
}

@keyframes homeHeadlineGlowVisible {
  0%, 100% {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.56),
      0 7px 16px rgba(15, 31, 56, 0.2);
  }
  50% {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.64),
      0 12px 24px rgba(15, 31, 56, 0.34);
  }
}

/* Ultimate center + elegant loop lock */
html body[data-page='home'] .home-hanging-title-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(97%, 1060px) !important;
  margin: 0 auto !important;
  padding: clamp(0.62rem, 1.45vh, 1rem) clamp(0.9rem, 2.3vw, 1.6rem) !important;
  animation: homeHeadlineBoxBreatheClean 5.8s ease-in-out infinite !important;
}

html body[data-page='home'] .home-hanging-title-wrap::after {
  display: none !important;
}

html body[data-page='home'] .home-spotlight h1 {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  letter-spacing: 0.14em !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  color: #1c2f4a !important;
  background: none !important;
  -webkit-text-fill-color: #1c2f4a !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.56),
    0 8px 18px rgba(16, 30, 52, 0.18) !important;
  transform-origin: 50% 50% !important;
  animation: homeHeadlineTextLoopClean 4.8s cubic-bezier(0.22, 0.61, 0.2, 1) infinite !important;
}

@keyframes homeHeadlineTextLoopClean {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    letter-spacing: 0.14em;
    opacity: 0.95;
  }
  38% {
    transform: translate3d(0, -1px, 0) scale(1.01);
    letter-spacing: 0.165em;
    opacity: 1;
  }
  72% {
    transform: translate3d(0, 0, 0) scale(1);
    letter-spacing: 0.145em;
    opacity: 0.98;
  }
}

@keyframes homeHeadlineBoxBreatheClean {
  0%, 100% {
    box-shadow:
      0 14px 30px rgba(10, 12, 20, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }
  50% {
    box-shadow:
      0 18px 34px rgba(10, 12, 20, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.99);
  }
}

@media (max-width: 900px) {
  html body[data-page='home'] .home-spotlight h1 {
    white-space: normal !important;
    letter-spacing: 0.095em !important;
  }
}

/* Final title animation: each word reveals from the left in sequence */
html body[data-page='home'] .home-hanging-title-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(97%, 1060px) !important;
  margin: 0 auto !important;
  padding: clamp(0.62rem, 1.45vh, 1rem) clamp(0.9rem, 2.3vw, 1.6rem) !important;
  animation: homeHeadlineBoxBreatheClean 5.8s ease-in-out infinite !important;
}

html body[data-page='home'] .home-hanging-title-wrap::after {
  display: none !important;
}

html body[data-page='home'] .home-spotlight h1 {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  column-gap: 0.32em !important;
  row-gap: 0.08em !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  white-space: normal !important;
  letter-spacing: 0 !important;
  color: #1c2f4a !important;
  background: none !important;
  -webkit-text-fill-color: #1c2f4a !important;
  clip-path: none !important;
  opacity: 1 !important;
  animation: none !important;
}

html body[data-page='home'] .home-spotlight h1 .home-headline-word {
  display: inline-block;
  white-space: nowrap;
  font: inherit;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.56),
    0 8px 18px rgba(16, 30, 52, 0.18);
  opacity: 0;
  transform: translate3d(-26px, 0, 0);
  filter: blur(1.4px);
  will-change: transform, opacity, filter;
  animation: homeHeadlineWordFromLeft var(--headline-cycle, 5.6s) cubic-bezier(0.24, 0.74, 0.2, 1) infinite;
  animation-delay: calc(var(--word-index, 0) * var(--headline-step, 0.28s));
}

@keyframes homeHeadlineWordFromLeft {
  0% {
    opacity: 0;
    transform: translate3d(-26px, 0, 0);
    filter: blur(1.4px);
  }
  16% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  74% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
    filter: blur(0.8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html body[data-page='home'] .home-spotlight h1 .home-headline-word {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body[data-page='owner-dashboard'],
body[data-page='owner-products'] {
  --accent: #3d88c6;
  --accent-strong: #245f90;
  --accent-soft: #d7e6f4;
  --rose: #8bb6d7;
  --wine: #10283e;
  --ink: #142334;
  --muted: #5f7388;
  --line: rgba(48, 89, 122, 0.24);
  --owner-line: rgba(74, 114, 149, 0.16);
  --owner-line-strong: rgba(74, 114, 149, 0.28);
  --owner-panel-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.9));
  --owner-panel-glow: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(215, 230, 244, 0.26));
  --owner-soft-bg: rgba(245, 250, 255, 0.88);
  --owner-shadow: 0 18px 42px rgba(18, 44, 68, 0.12);
  background:
    radial-gradient(circle at 12% 10%, rgba(170, 205, 233, 0.34), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(88, 132, 171, 0.24), transparent 20%),
    linear-gradient(180deg, #edf5fc 0%, #f8fbff 48%, #eef5fb 100%);
}

body[data-page='owner-dashboard'] .reveal,
body[data-page='owner-products'] .reveal {
  opacity: 1;
  transform: none;
}

.owner-dashboard-page {
  padding-bottom: 4rem;
}

.owner-hero {
  padding: 3.2rem 0 2rem;
}

body[data-page='owner-products'] .owner-hero {
  padding: 1.4rem 0 0.9rem;
}

.owner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 1rem;
  align-items: stretch;
}

.owner-hero-copy,
.owner-hero-panel,
.owner-panel {
  border-radius: 30px;
  border: 1px solid var(--owner-line);
  background: var(--owner-panel-bg), var(--owner-panel-glow);
  box-shadow: var(--owner-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.owner-hero-copy,
.owner-hero-panel {
  padding: 2rem;
}

body[data-page='owner-products'] .owner-hero-copy,
body[data-page='owner-products'] .owner-hero-panel {
  padding: 1.35rem;
}

.owner-hero-copy h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
}

body[data-page='owner-products'] .owner-hero-copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  margin-bottom: 0.55rem;
}

.owner-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

body[data-page='owner-products'] .owner-hero-copy p,
body[data-page='owner-products'] .owner-hero-note {
  font-size: 0.95rem;
}

.owner-hero-actions,
.owner-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.owner-hero-actions select {
  min-width: min(320px, 100%);
  border: 1px solid var(--owner-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.92rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.owner-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.owner-panel-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.owner-stat-grid,
.owner-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.owner-stat-grid {
  margin-top: 1rem;
}

.owner-stat-card,
.owner-overview-card {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid var(--owner-line);
  background: rgba(255, 255, 255, 0.84);
}

.owner-stat-card span,
.owner-overview-card strong {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-stat-card strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 800;
}

.owner-hero-note,
.owner-help-panel p,
.owner-overview-card p,
.owner-panel-head p {
  color: var(--muted);
}

.owner-dashboard-section {
  padding-top: 1.4rem;
}

.owner-dashboard-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.owner-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 1rem;
}

.owner-content {
  display: grid;
  gap: 1rem;
}

.owner-panel {
  padding: 1.5rem;
}

body[data-page='owner-products'] .owner-panel {
  padding: 1.15rem;
}

.owner-panel h2,
.owner-subpanel h3 {
  margin: 0.35rem 0 0;
  font-family: var(--font-head);
  font-size: 2.2rem;
  line-height: 1;
}

body[data-page='owner-products'] .owner-inline-card h2,
body[data-page='owner-products'] .owner-panel-head h2 {
  font-size: 1.95rem;
}

.owner-panel-head,
.owner-subpanel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

.owner-access-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  margin-top: 1rem;
}

.owner-category-jump-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  margin-top: 1rem;
}

.owner-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-back-link::before {
  content: '<';
  font-size: 0.9rem;
}

.owner-section-nav {
  display: grid;
  gap: 0.55rem;
}

.owner-section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--owner-line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.owner-section-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--owner-line-strong);
  background: rgba(236, 244, 252, 0.96);
}

.owner-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.owner-form-grid label {
  display: grid;
  gap: 0.42rem;
}

.owner-form-grid label > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-form-grid input,
.owner-form-grid textarea,
.owner-toolbar input,
.owner-toolbar select,
.owner-access-row input,
.owner-json-textarea,
.owner-data-table input,
.owner-data-table textarea,
.owner-data-table select {
  width: 100%;
  border: 1px solid var(--owner-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.88rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.owner-checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--owner-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.owner-checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.owner-form-span-2 {
  grid-column: span 2;
}

.owner-subpanel {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--owner-line);
  background: var(--owner-soft-bg);
}

.owner-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr) auto;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.owner-toolbar-note {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.78rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--owner-line);
  background: rgba(241, 248, 255, 0.92);
  color: var(--muted);
  font-size: 0.88rem;
}

.owner-table-wrap {
  overflow: auto;
  border-radius: 24px;
  border: 1px solid var(--owner-line);
  background: rgba(255, 255, 255, 0.9);
}

.owner-data-table {
  width: 100%;
  min-width: 1380px;
  border-collapse: collapse;
}

.owner-data-table th,
.owner-data-table td {
  padding: 0.95rem;
  border-bottom: 1px solid rgba(74, 114, 149, 0.12);
  vertical-align: top;
  text-align: left;
}

.owner-data-table th {
  position: sticky;
  top: 0;
  background: rgba(240, 247, 255, 0.98);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.owner-product-image-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
}

.owner-product-image-cell img {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f3f8fd);
  border: 1px solid var(--owner-line);
  padding: 0.35rem;
}

.owner-row-meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.owner-row-actions {
  white-space: nowrap;
}

.owner-products-shell {
  display: grid;
  gap: 1rem;
}

body[data-page='owner-products'] .owner-products-shell {
  gap: 0.8rem;
}

.owner-inline-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body[data-page='owner-products'] .owner-inline-controls {
  gap: 0.8rem;
}

.owner-inline-card {
  display: grid;
  gap: 0.75rem;
}

.owner-inline-card p {
  margin: 0;
  color: var(--muted);
}

.owner-toolbar-wide {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.75fr) minmax(220px, 0.75fr) auto;
}

.owner-image-input-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: stretch;
}

.owner-upload-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--owner-line-strong);
  background: rgba(234, 244, 252, 0.96);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.owner-upload-chip input {
  display: none;
}

.owner-product-table td:nth-child(2) {
  min-width: 280px;
}

.owner-product-table td:nth-child(3) {
  min-width: 170px;
}

.owner-product-table td:nth-child(4) {
  min-width: 130px;
}

.owner-product-table td:nth-child(5) {
  min-width: 320px;
}

.owner-product-table td:nth-child(6) {
  min-width: 360px;
}

.owner-product-table td:nth-child(7) {
  min-width: 280px;
}

.owner-health-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.owner-health-grid .owner-overview-card p {
  margin: 0.35rem 0 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.owner-addon-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f3f8fd);
  border: 1px solid var(--owner-line);
  padding: 0.2rem;
}

.owner-addon-table td textarea {
  min-width: 220px;
  min-height: 76px;
  resize: vertical;
}

.owner-name-input {
  min-width: 100%;
  font-size: 1rem;
}

.owner-category-select {
  min-width: 150px;
}

.owner-price-input {
  min-width: 110px;
}

.owner-description-input {
  min-width: 100%;
  min-height: 132px;
  resize: vertical;
  line-height: 1.5;
}

.owner-image-url-input {
  min-width: 100%;
}

.owner-status-message {
  min-height: 1.4rem;
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.owner-status-message[data-tone='success'] {
  color: #0e6d2d;
}

.owner-status-message[data-tone='warning'] {
  color: #8a5f16;
}

.owner-status-message[data-tone='error'] {
  color: #9f2d2d;
}

.owner-json-textarea {
  min-height: 240px;
  font-family: 'Consolas', 'SFMono-Regular', monospace;
  font-size: 0.88rem;
  line-height: 1.5;
}

.owner-table-empty td {
  color: var(--muted);
  text-align: center;
  padding: 1.25rem;
}

@media (max-width: 1180px) {
  .owner-dashboard-layout,
  .owner-hero-grid {
    grid-template-columns: 1fr;
  }

  .owner-sidebar {
    position: static;
  }

  .owner-inline-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .owner-form-grid,
  .owner-stat-grid,
  .owner-overview-grid,
  .owner-toolbar,
  .owner-toolbar-wide,
  .owner-category-jump-row,
  .owner-access-row,
  .owner-image-input-stack {
    grid-template-columns: 1fr;
  }

  .owner-form-span-2 {
    grid-column: span 1;
  }

  .owner-panel-head,
  .owner-subpanel-head {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .owner-hero-copy,
  .owner-hero-panel,
  .owner-panel {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .owner-panel h2,
  .owner-subpanel h3 {
    font-size: 1.8rem;
  }

  .owner-product-image-cell {
    min-width: 94px;
  }

  .site-header .header-main.utility-header-main {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  .site-header .header-utilities,
  .site-header .header-account-actions {
    width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
  }

  .site-header .header-phone-pill,
  .site-header .header-account-actions .btn,
  .site-header .header-account-actions .cart-link {
    flex: 1 1 auto;
  }
}

.header-phone-pill {
  gap: 0.55rem;
}

.header-phone-pill .header-utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem !important;
  color: #245f90 !important;
}

.header-phone-pill .header-utility-icon::before {
  content: none !important;
}

.member-entry-page {
  min-height: calc(100vh - var(--header-height, 72px));
  padding: clamp(2rem, 4vw, 4rem) 1.2rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(76, 130, 181, 0.22), transparent 28%),
    radial-gradient(circle at right center, rgba(24, 69, 111, 0.28), transparent 34%),
    linear-gradient(180deg, #eef6ff 0%, #dfefff 28%, #10395a 100%);
}

.member-entry-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.member-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: stretch;
}

.member-entry-card,
.member-entry-aside {
  border-radius: 30px;
  border: 1px solid rgba(41, 85, 126, 0.14);
  box-shadow: 0 28px 80px rgba(10, 31, 52, 0.18);
}

.member-entry-card {
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.member-entry-aside {
  padding: clamp(1.5rem, 2.5vw, 2.3rem);
  background:
    linear-gradient(180deg, rgba(11, 46, 78, 0.98) 0%, rgba(17, 63, 104, 0.97) 58%, rgba(33, 92, 143, 0.94) 100%);
  color: #edf7ff;
}

.member-entry-kicker {
  margin: 0 0 0.75rem;
  color: #5a7f9e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.member-entry-card h1,
.member-entry-aside h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 3.4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.member-entry-aside h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
}

.member-entry-copy {
  margin: 1rem 0 1.6rem;
  color: #516779;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 44rem;
}

.member-entry-form {
  display: grid;
  gap: 1rem;
}

.member-entry-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.member-entry-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: #23415d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-entry-form input {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(84, 122, 159, 0.28);
  background: rgba(245, 250, 255, 0.96);
  color: #16334b;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.member-entry-form input:focus {
  outline: none;
  border-color: rgba(35, 95, 145, 0.58);
  box-shadow: 0 0 0 4px rgba(65, 128, 180, 0.16);
  transform: translateY(-1px);
}

.member-entry-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(240, 248, 255, 0.9);
  border: 1px solid rgba(84, 122, 159, 0.18);
  color: #486476;
  font-size: 0.95rem;
  line-height: 1.6;
}

.member-entry-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0.2rem 0 0;
  padding: 0;
}

.member-entry-submit {
  justify-content: center;
  min-height: 54px;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.member-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.member-entry-aside .member-entry-kicker {
  color: rgba(233, 246, 255, 0.72);
}

.member-entry-points {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.85rem;
  color: rgba(239, 247, 255, 0.92);
  line-height: 1.75;
}

.member-entry-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.member-entry-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7fbff;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.member-entry-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

body[data-page='login'] .form-message,
body[data-page='register'] .form-message {
  margin: 0;
}

@media (max-width: 900px) {
  .member-entry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .member-entry-page {
    padding-inline: 0.85rem;
  }

  .member-entry-row {
    grid-template-columns: 1fr;
  }

  .member-entry-card,
  .member-entry-aside {
    border-radius: 24px;
  }
}

body[data-page='login'] .member-entry-page,
body[data-page='register'] .member-entry-page {
  background:
    linear-gradient(180deg, #0d2235 0%, #0b1d2d 42%, #10283d 100%);
}

body[data-page='login'] .site-header.floral-header.utility-header.home-utility-header,
body[data-page='register'] .site-header.floral-header.utility-header.home-utility-header {
  background: #0d2235 !important;
  border-bottom: 1px solid rgba(91, 126, 158, 0.24) !important;
}

body[data-page='login'] .site-header .header-account-actions .btn-ghost,
body[data-page='register'] .site-header .header-account-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(114, 151, 185, 0.28) !important;
  color: #e7f1fb !important;
}

body[data-page='login'] .site-header .header-account-actions .btn-primary,
body[data-page='register'] .site-header .header-account-actions .btn-primary {
  background: linear-gradient(135deg, #2d6fa8, #4f95ce) !important;
  color: #f7fbff !important;
}

body[data-page='login'] .member-entry-card,
body[data-page='register'] .member-entry-card,
body[data-page='login'] .member-entry-aside,
body[data-page='register'] .member-entry-aside {
  background: rgba(11, 27, 42, 0.92);
  border: 1px solid rgba(91, 126, 158, 0.28);
  box-shadow: none;
}

body[data-page='login'] .member-entry-kicker,
body[data-page='register'] .member-entry-kicker {
  color: #4e90c9;
}

body[data-page='login'] .member-entry-card h1,
body[data-page='register'] .member-entry-card h1,
body[data-page='login'] .member-entry-aside h2,
body[data-page='register'] .member-entry-aside h2,
body[data-page='login'] .member-entry-copy,
body[data-page='register'] .member-entry-copy,
body[data-page='login'] .member-entry-points,
body[data-page='register'] .member-entry-points {
  color: #edf5ff;
}

body[data-page='login'] .member-entry-form label,
body[data-page='register'] .member-entry-form label {
  color: #c5d7ea;
}

body[data-page='login'] .member-entry-form input,
body[data-page='register'] .member-entry-form input,
body[data-page='login'] .member-entry-check,
body[data-page='register'] .member-entry-check {
  background: rgba(16, 39, 59, 0.94);
  border-color: rgba(91, 126, 158, 0.28);
  color: #edf5ff;
}

body[data-page='login'] .member-entry-form input::placeholder,
body[data-page='register'] .member-entry-form input::placeholder {
  color: rgba(221, 233, 245, 0.54);
}

body[data-page='login'] .member-entry-form input:focus,
body[data-page='register'] .member-entry-form input:focus {
  border-color: rgba(86, 151, 215, 0.7);
  box-shadow: 0 0 0 4px rgba(72, 128, 186, 0.2);
}

body[data-page='allflowers'][data-catalog-preview='true'] .header-phone-pill,
body[data-page='allflowers'][data-catalog-preview='true'] .cart-link {
  display: none !important;
}

body[data-page='allflowers'][data-catalog-preview='true'] .occasion-links-shell {
  display: none !important;
}

.preview-auth-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(61, 95, 128, 0.18);
  background: linear-gradient(135deg, rgba(13, 34, 53, 0.96), rgba(19, 49, 76, 0.92));
  color: #edf6ff;
}

.preview-auth-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-preview-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 49, 78, 0.08);
  color: #245f90;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .preview-auth-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

body[data-page='login'],
body[data-page='register'] {
  min-height: 100vh;
}

@media (min-width: 901px) {
  body[data-page='login'],
  body[data-page='register'] {
    overflow: hidden;
  }
}

body[data-page='login'] .site-header.floral-header.utility-header.home-utility-header,
body[data-page='register'] .site-header.floral-header.utility-header.home-utility-header {
  --header-height: 66px;
  background: #f8fbff !important;
  border-bottom: 1px solid rgba(76, 112, 145, 0.2) !important;
}

body[data-page='login'] .site-header .header-account-actions .btn-ghost,
body[data-page='register'] .site-header .header-account-actions .btn-ghost {
  background: #ffffff !important;
  border-color: rgba(76, 112, 145, 0.22) !important;
  color: #16334b !important;
}

body[data-page='login'] .site-header .header-account-actions .btn-primary,
body[data-page='register'] .site-header .header-account-actions .btn-primary {
  background: linear-gradient(135deg, #2d6fa8, #4f95ce) !important;
  color: #f7fbff !important;
}

body[data-page='login'] .member-entry-page,
body[data-page='register'] .member-entry-page {
  min-height: calc(100dvh - var(--header-height, 68px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem 1rem;
  background:
    linear-gradient(180deg, #0d2235 0%, #0b1d2d 42%, #10283d 100%);
}

body[data-page='login'] .member-entry-shell-compact,
body[data-page='register'] .member-entry-shell-compact {
  width: min(100%, 960px);
}

body[data-page='login'] .member-entry-grid,
body[data-page='register'] .member-entry-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

body[data-page='login'] .member-entry-card-auth,
body[data-page='register'] .member-entry-card-auth {
  padding: 1.35rem 1.5rem;
  border-radius: 28px;
  background: rgba(11, 27, 42, 0.94);
  border: 1px solid rgba(91, 126, 158, 0.28);
}

body[data-page='login'] .member-entry-card-auth h1,
body[data-page='register'] .member-entry-card-auth h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 0.35rem;
}

body[data-page='login'] .member-entry-copy,
body[data-page='register'] .member-entry-copy {
  max-width: none;
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

body[data-page='login'] .member-entry-form-auth,
body[data-page='register'] .member-entry-form-auth {
  gap: 0.8rem;
}

body[data-page='login'] .member-entry-row,
body[data-page='register'] .member-entry-row {
  gap: 0.8rem;
}

.member-entry-row-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page='login'] .member-entry-form label,
body[data-page='register'] .member-entry-form label {
  margin-bottom: 0.32rem;
  font-size: 0.72rem;
}

body[data-page='login'] .member-entry-form input,
body[data-page='register'] .member-entry-form input {
  min-height: 50px;
  padding: 0.82rem 0.95rem;
  font-size: 0.96rem;
}

.member-entry-section-title {
  margin: 0.15rem 0 0.05rem;
  color: #4e90c9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page='login'] .member-entry-submit,
body[data-page='register'] .member-entry-submit {
  min-height: 50px;
}

.member-entry-footnote {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.95rem;
  color: rgba(214, 228, 242, 0.78);
  font-size: 0.93rem;
}

.member-entry-footnote a {
  color: #77b6ec;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  body[data-page='login'],
  body[data-page='register'] {
    overflow-y: auto;
  }

  body[data-page='login'] .member-entry-page,
  body[data-page='register'] .member-entry-page {
    min-height: auto;
    align-items: flex-start;
    padding-top: 1.15rem;
  }

  .member-entry-row-three {
    grid-template-columns: 1fr;
  }
}

/* Final viewport containment and responsive lock */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  overflow-y: auto;
}

main,
section,
article,
aside,
form,
.container,
.header-main,
.header-utilities,
.header-account-actions,
.header-auth-dynamic,
.member-entry-shell,
.member-entry-card,
.collections-hero-grid,
.explorer-shell,
.cart-layout,
.checkout-layout,
.home-story-grid,
.home-location-grid,
.about-grid,
.footer-grid,
.owner-dashboard-layout,
.owner-products-shell,
.owner-panel,
.owner-table-wrap {
  min-width: 0;
}

img,
iframe,
video,
canvas,
svg {
  max-width: 100%;
}

iframe {
  display: block;
  border: 0;
}

textarea,
input,
select {
  max-width: 100%;
}

.site-header .header-utilities,
.site-header .header-account-actions,
.site-header .header-auth-dynamic {
  flex-wrap: wrap;
}

.site-header .header-phone-pill,
.site-header .header-account-actions .btn,
.site-header .header-account-actions .cart-link,
.site-header .header-auth-dynamic .btn,
.site-header .header-auth-dynamic .cart-link {
  max-width: 100%;
  white-space: normal;
}

body[data-page='allflowers'] .collections-hero-note [data-collections-hero-note-title] {
  white-space: normal;
}

body[data-page='login'],
body[data-page='register'] {
  overflow-y: auto;
}

body[data-page='login'] .member-entry-page,
body[data-page='register'] .member-entry-page {
  min-height: calc(100dvh - var(--header-height, 68px));
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.45rem 1rem 0.85rem;
  overflow-x: hidden;
}

body[data-page='login'] .member-entry-shell-compact,
body[data-page='register'] .member-entry-shell-compact {
  width: min(100%, 920px);
}

body[data-page='login'] .member-entry-page {
  align-items: center;
  justify-content: center;
}

body[data-page='register'] .member-entry-page {
  align-items: center;
  justify-content: center;
}

body[data-page='login'] .member-entry-shell-compact {
  margin: 0 auto;
}

body[data-page='register'] .member-entry-shell-compact {
  margin: 0 auto;
}

body[data-page='login'] .member-entry-card-auth,
body[data-page='register'] .member-entry-card-auth {
  width: 100%;
  padding: 0.95rem 1.1rem;
}

body[data-page='login'] .member-entry-card-auth h1,
body[data-page='register'] .member-entry-card-auth h1 {
  font-size: clamp(1.72rem, 2.15vw, 2.35rem);
  line-height: 0.98;
  margin-bottom: 0.18rem;
}

body[data-page='login'] .member-entry-copy,
body[data-page='register'] .member-entry-copy {
  margin: 0.25rem 0 0.62rem;
  font-size: 0.88rem;
  line-height: 1.42;
}

body[data-page='login'] .member-entry-form-auth,
body[data-page='register'] .member-entry-form-auth {
  gap: 0.56rem;
}

body[data-page='login'] .member-entry-row,
body[data-page='register'] .member-entry-row {
  gap: 0.56rem;
}

body[data-page='login'] .member-entry-form label,
body[data-page='register'] .member-entry-form label {
  margin-bottom: 0.28rem;
}

body[data-page='login'] .member-entry-form input,
body[data-page='register'] .member-entry-form input {
  min-height: 44px;
  padding: 0.65rem 0.82rem;
  font-size: 0.92rem;
}

body[data-page='login'] .member-entry-submit,
body[data-page='register'] .member-entry-submit {
  min-height: 44px;
}

body[data-page='login'] .member-entry-remember,
body[data-page='register'] .member-entry-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(219, 232, 245, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.05rem 0 0.1rem;
}

body[data-page='login'] .member-entry-remember input,
body[data-page='register'] .member-entry-remember input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: #4f95ce;
}

body[data-page='login'] .member-entry-footnote,
body[data-page='register'] .member-entry-footnote {
  flex-wrap: wrap;
  row-gap: 0.18rem;
  margin-top: 0.45rem;
  font-size: 0.88rem;
}

body[data-page='login'] .member-entry-section-title,
body[data-page='register'] .member-entry-section-title {
  margin: 0.05rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

body[data-page='login'] .home-utility-header .utility-brand,
body[data-page='register'] .home-utility-header .utility-brand {
  height: 48px;
}

body[data-page='login'] .home-utility-header .header-account-actions .btn.btn-sm,
body[data-page='register'] .home-utility-header .header-account-actions .btn.btn-sm {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
}

@media (max-width: 1180px) {
  .site-header .header-main.utility-header-main {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    justify-items: start;
  }

  .site-header .header-utilities {
    width: 100%;
    justify-self: stretch;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .site-header .header-account-actions,
  .site-header .header-auth-dynamic {
    justify-content: flex-end;
  }

  .collections-page .container,
  body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
    width: min(100% - 2rem, 1320px);
  }
}

@media (max-width: 1024px) {
  .home-story-grid,
  .home-location-grid,
  .about-grid,
  .cart-layout,
  .checkout-layout,
  .collections-hero-grid,
  .filter-bar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header .header-utilities {
    justify-content: flex-start;
  }

  .site-header .header-account-actions,
  .site-header .header-auth-dynamic {
    justify-content: flex-start;
  }

  .site-header .header-phone-pill {
    flex: 0 1 auto;
  }

  body[data-page='login'] .member-entry-page,
  body[data-page='register'] .member-entry-page {
    padding-top: 0.6rem;
  }
}

@media (max-width: 900px) {
  body[data-page='login'] .member-entry-page,
  body[data-page='register'] .member-entry-page {
    min-height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 1rem;
  }

  body[data-page='login'] .member-entry-card-auth,
  body[data-page='register'] .member-entry-card-auth {
    padding: 1rem;
    border-radius: 24px;
  }

  .member-entry-row-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header .header-utilities,
  .site-header .header-account-actions,
  .site-header .header-auth-dynamic {
    width: 100%;
    justify-content: flex-start;
  }

  .site-header .header-phone-pill,
  .site-header .header-account-actions .btn,
  .site-header .header-account-actions .cart-link,
  .site-header .header-auth-dynamic .btn,
  .site-header .header-auth-dynamic .cart-link {
    flex: 1 1 180px;
  }
}

.member-entry-section-title {
  margin: 0 0 0.35rem;
  color: rgba(219, 232, 245, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.member-entry-section-heading {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1;
  color: #ffffff;
}

body[data-page='login'] #signedInPanel,
body[data-page='register'] #signedInPanel,
body[data-page='login'] #passwordResetRequestPanel,
body[data-page='login'] #passwordResetPanel {
  display: grid;
  gap: 0.8rem;
}

body[data-page='owner-dashboard'][data-owner-auth='locked'] [data-owner-protected],
body[data-page='owner-products'][data-owner-auth='locked'] [data-owner-protected] {
  display: none !important;
}

body[data-page='owner-dashboard'][data-owner-auth='locked'] .owner-dashboard-layout,
body[data-page='owner-products'][data-owner-auth='locked'] .owner-products-shell {
  align-items: flex-start;
}

@media (max-width: 640px) {
  .container,
  .home-utility-header .container,
  .collections-page .container {
    width: min(100% - 1.3rem, var(--container));
  }

  .member-entry-page {
    padding-inline: 0.75rem;
  }

  .member-entry-row,
  .form-row,
  .form-row-three,
  .owner-inline-controls {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .category-showcase-grid,
  .luxury-showcase-grid,
  .home-story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page='allflowers'] .collections-hero.page-hero {
  position: relative;
  display: block;
  min-height: clamp(240px, 34vw, 420px);
  padding: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(112, 148, 182, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(204, 162, 177, 0.18), transparent 28%),
    linear-gradient(180deg, #eef4fb 0%, #f8f2ec 56%, #f2ebe6 100%);
  overflow: hidden;
}

body[data-page='allflowers'] .collections-hero.page-hero::before {
  inset: auto;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow: none;
}

body[data-page='allflowers'] .collections-hero-stage {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: clamp(240px, 34vw, 420px);
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
  background: #0a1621;
  box-shadow: none;
}

body[data-page='allflowers'] .collections-hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(8, 19, 30, 0.06) 0%, rgba(8, 19, 30, 0.18) 55%, rgba(8, 19, 30, 0.46) 100%),
    linear-gradient(90deg, rgba(8, 19, 30, 0.16) 0%, rgba(8, 19, 30, 0.04) 32%, rgba(8, 19, 30, 0.12) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 237, 244, 0.14), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.1), transparent 26%);
}

body[data-page='allflowers'] .collections-hero-slide {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04) brightness(1);
  transition: opacity 1.15s ease, transform 3.2s ease;
}

body[data-page='allflowers'] .collections-hero-slide::before {
  background:
    linear-gradient(180deg, rgba(8, 19, 30, 0.02) 0%, rgba(8, 19, 30, 0.08) 72%, rgba(8, 19, 30, 0.16) 100%),
    linear-gradient(90deg, rgba(8, 19, 30, 0.03) 0%, transparent 40%, rgba(8, 19, 30, 0.06) 100%),
    radial-gradient(circle at 70% 24%, rgba(255, 250, 246, 0.08), transparent 28%);
}

body[data-page='allflowers'] .collections-hero-slide.is-active {
  transform: scale(1);
}

body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid,
body[data-page='allflowers'] .collections-hero-copy,
body[data-page='allflowers'] .collections-hero-note,
body[data-page='allflowers'] .collections-hero-steps,
body[data-page='allflowers'] .collections-hero-shortcuts,
body[data-page='allflowers'] .collections-hero-indicators,
body[data-page='allflowers'] .collections-hero-scene,
body[data-page='allflowers'] .breadcrumb,
body[data-page='allflowers'] .collections-loop-tab {
  display: none !important;
}

body[data-page='allflowers'] .collections-showcase-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

body[data-page='allflowers'] .collections-showcase-section .section-head > div,
body[data-page='allflowers'] .collections-explorer-section .section-head > div {
  max-width: 46rem;
}

body[data-page='allflowers'] .collections-showcase-section .container,
body[data-page='allflowers'] .collections-explorer-section .container {
  width: min(100% - 2.2rem, 1500px);
}

body[data-page='allflowers'] .category-showcase-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
}

body[data-page='allflowers'] .collection-showcase-card {
  min-height: 500px;
  border-radius: 32px;
  border-color: rgba(255, 233, 227, 0.22);
  box-shadow: 0 30px 74px rgba(19, 8, 14, 0.22);
}

body[data-page='allflowers'] .collection-showcase-card .collection-showcase-slide {
  filter: saturate(1.02) contrast(1.08) brightness(0.96);
  image-rendering: auto;
}

body[data-page='allflowers'] .collection-showcase-card .collection-showcase-body {
  padding: 1.2rem 1.2rem 1.24rem;
  gap: 0.68rem;
}

body[data-page='allflowers'] .collection-showcase-card .collection-showcase-copy {
  max-width: 20ch;
}

body[data-page='allflowers'] .luxury-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}

body[data-page='allflowers'] .luxury-product-grid .product-card {
  border-radius: 28px;
  border: 1px solid rgba(91, 68, 73, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 245, 0.96));
  box-shadow: 0 18px 40px rgba(48, 27, 35, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

body[data-page='allflowers'] .luxury-product-grid .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(48, 27, 35, 0.14);
  border-color: rgba(161, 110, 121, 0.22);
}

body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage {
  aspect-ratio: 3 / 4;
  min-height: unset;
  height: auto;
  padding: 20px 20px 14px;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.99), rgba(247, 247, 248, 0.97) 58%, rgba(241, 238, 236, 0.96));
}

body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

body[data-page='allflowers'] .luxury-product-grid .product-card img {
  filter: drop-shadow(0 24px 26px rgba(31, 23, 26, 0.14));
}

body[data-page='allflowers'] .luxury-product-grid .product-card .product-body {
  padding: 1.05rem 1.08rem 1.1rem;
  gap: 0.78rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body[data-page='allflowers'] .luxury-product-grid .product-card h3 {
  font-size: 1.42rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

body[data-page='allflowers'] .luxury-product-grid .product-card p {
  color: rgba(73, 53, 58, 0.76);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

body[data-page='allflowers'] .luxury-product-grid .price-row {
  gap: 0.7rem;
  margin-top: auto;
}

body[data-page='allflowers'] .luxury-product-grid .price-row .btn {
  width: 100%;
  justify-content: center;
}

body[data-page='allflowers'] .luxury-product-grid .price {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

body[data-page='allflowers'] .luxury-product-grid .btn {
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  body[data-page='allflowers'] .collections-hero.page-hero {
    min-height: clamp(220px, 30vw, 320px);
  }

  body[data-page='allflowers'] .collections-hero.page-hero::before,
  body[data-page='allflowers'] .collections-hero-stage {
    width: 100%;
    min-height: clamp(220px, 30vw, 320px);
  }
}

@media (max-width: 760px) {
  body[data-page='allflowers'] .collections-hero.page-hero {
    min-height: 180px;
  }

  body[data-page='allflowers'] .collections-hero.page-hero::before,
  body[data-page='allflowers'] .collections-hero-stage {
    width: 100%;
    min-height: 180px;
    border-radius: 0;
  }
}

body[data-page='allflowers'] .shopping-nav-shell {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

body[data-page='allflowers'] .shopping-top-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body[data-page='allflowers'] .shopping-top-group {
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 95, 128, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: #18304a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body[data-page='allflowers'] .shopping-top-group:hover,
body[data-page='allflowers'] .shopping-top-group.is-active {
  transform: translateY(-1px);
  border-color: rgba(36, 95, 144, 0.32);
  background: linear-gradient(135deg, rgba(15, 50, 79, 0.98), rgba(29, 87, 130, 0.94));
  color: #f4f8fb;
  box-shadow: 0 12px 30px rgba(14, 43, 71, 0.16);
}

body[data-page='allflowers'] .shopping-dropdown-shell {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 26px;
  border: 1px solid rgba(61, 95, 128, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.94));
  box-shadow: 0 20px 48px rgba(24, 48, 74, 0.08);
}

body[data-page='allflowers'] .shopping-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body[data-page='allflowers'] .shopping-dropdown-head h3 {
  margin: 0.2rem 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2vw, 2rem);
}

body[data-page='allflowers'] .shopping-dropdown-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

body[data-page='allflowers'] .shopping-dropdown-link,
body[data-page='allflowers'] .shop-filter-chip {
  min-height: 44px;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(61, 95, 128, 0.12);
  background: rgba(241, 248, 255, 0.8);
  color: #18304a;
  font-weight: 700;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body[data-page='allflowers'] .shopping-dropdown-link:hover,
body[data-page='allflowers'] .shopping-dropdown-link.is-active,
body[data-page='allflowers'] .shop-filter-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(36, 95, 144, 0.28);
  background: rgba(217, 235, 252, 0.92);
  color: #0f3250;
}

body[data-page='allflowers'] .shop-featured-seasonal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(36, 95, 144, 0.14);
  background: linear-gradient(135deg, rgba(15, 50, 79, 0.98), rgba(35, 88, 132, 0.92));
  color: #f1f7ff;
}

body[data-page='allflowers'] .shop-featured-seasonal h3 {
  margin: 0.22rem 0 0.25rem;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2vw, 2rem);
}

body[data-page='allflowers'] .shop-featured-seasonal p {
  margin: 0;
  color: rgba(241, 247, 255, 0.82);
}

body[data-page='allflowers'] .shop-breadcrumbs,
body[data-page='allflowers'] .shop-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body[data-page='allflowers'] .shop-breadcrumb {
  color: #5a6776;
  font-size: 0.85rem;
  font-weight: 700;
}

body[data-page='allflowers'] .shop-breadcrumb.is-active {
  color: #18304a;
}

body[data-page='allflowers'] .shop-breadcrumb-sep {
  color: #a0aabc;
  font-size: 0.85rem;
}

body[data-page='allflowers'] .premium-explorer-filters {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(170px, 0.72fr)) minmax(170px, 0.72fr);
  gap: 0.75rem;
}

.owner-classification-stack,
.owner-occasion-stack {
  display: grid;
  gap: 0.55rem;
  min-width: 210px;
}

.owner-pricing-stack {
  display: grid;
  gap: 0.55rem;
  min-width: 220px;
}

.owner-inline-field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.74rem;
  color: rgba(17, 35, 58, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.owner-inline-field span {
  font-weight: 700;
}

.owner-stock-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.owner-flag-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 76, 128, 0.18);
  background: rgba(232, 241, 252, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #15355a;
}

.owner-flag-toggle input {
  margin: 0;
}

.owner-multi-select {
  min-height: 132px;
  padding: 0.5rem 0.6rem;
}

.owner-multi-select option {
  padding: 0.3rem 0.2rem;
}

.owner-data-table {
  min-width: 1760px;
}

@media (max-width: 1100px) {
  body[data-page='allflowers'] .premium-explorer-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='allflowers'] .shop-featured-seasonal,
  body[data-page='allflowers'] .shopping-dropdown-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  body[data-page='allflowers'] .shopping-top-groups,
  body[data-page='allflowers'] .shop-breadcrumbs,
  body[data-page='allflowers'] .shop-filter-chips {
    flex-direction: column;
  }

  body[data-page='allflowers'] .shopping-top-group,
  body[data-page='allflowers'] .shop-filter-chip {
    width: 100%;
  }

  body[data-page='allflowers'] .shopping-dropdown-links,
  body[data-page='allflowers'] .premium-explorer-filters {
    grid-template-columns: 1fr;
  }
}

html body .site-header.floral-header.utility-header {
  background: rgba(251, 247, 242, 0.92);
  border-bottom: 1px solid rgba(190, 159, 120, 0.18);
  box-shadow: 0 14px 34px rgba(60, 44, 28, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html body .site-header.floral-header.utility-header .header-phone-pill,
html body .site-header.floral-header.utility-header .header-account-actions .btn,
html body .site-header.floral-header.utility-header .header-account-actions .cart-link,
html body .site-header.floral-header.utility-header .header-auth-dynamic .btn,
html body .site-header.floral-header.utility-header .header-auth-dynamic .cart-link {
  min-height: 46px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(60, 44, 28, 0.07);
}

html body .site-header.floral-header.utility-header .header-phone-pill,
html body .site-header.floral-header.utility-header .header-account-actions .btn-ghost,
html body .site-header.floral-header.utility-header .header-auth-dynamic .btn-ghost,
html body .site-header.floral-header.utility-header .header-account-actions .cart-link,
html body .site-header.floral-header.utility-header .header-auth-dynamic .cart-link {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(190, 159, 120, 0.2);
  color: #243649;
}

html body .site-header.floral-header.utility-header .header-account-actions .btn-primary,
html body .site-header.floral-header.utility-header .header-auth-dynamic .btn-primary,
html body .site-header.floral-header.utility-header [data-auth-logout] {
  background: linear-gradient(135deg, #c9a16b, #e0c39a);
  border: 1px solid rgba(190, 159, 120, 0.28);
  color: #203244;
}

html body .site-header.floral-header.utility-header .header-phone-pill:hover,
html body .site-header.floral-header.utility-header .header-account-actions .btn:hover,
html body .site-header.floral-header.utility-header .header-account-actions .cart-link:hover,
html body .site-header.floral-header.utility-header .header-auth-dynamic .btn:hover,
html body .site-header.floral-header.utility-header .header-auth-dynamic .cart-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(60, 44, 28, 0.09);
}

body[data-page='allflowers'] .shopping-nav-shell {
  --nav-ivory: rgba(251, 247, 242, 0.96);
  --nav-cream: rgba(255, 252, 248, 0.92);
  --nav-border: rgba(190, 159, 120, 0.18);
  --nav-border-strong: rgba(190, 159, 120, 0.28);
  --nav-text: #243649;
  --nav-text-soft: #5b6572;
  --nav-accent: #c9a16b;
  --nav-accent-soft: #e0c39a;
  --nav-shadow: 0 18px 44px rgba(60, 44, 28, 0.08);
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1rem;
  border-radius: 28px;
  border: 1px solid var(--nav-border);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(250, 245, 239, 0.94));
  box-shadow: var(--nav-shadow);
  overflow: visible;
  z-index: 30;
}

body[data-page='allflowers'] .shopping-nav-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

body[data-page='allflowers'] .shopping-nav-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: #8b7459;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page='allflowers'] .shopping-nav-headline p {
  margin: 0;
  max-width: 52rem;
  color: var(--nav-text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

body[data-page='allflowers'] .shopping-mobile-nav-trigger {
  display: none;
  min-height: 44px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--nav-border-strong);
  background: rgba(255, 252, 248, 0.92);
  color: var(--nav-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(60, 44, 28, 0.06);
}

body[data-page='allflowers'] .shopping-top-groups {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(190, 159, 120, 0.14);
}

body[data-page='allflowers'] .nav-item {
  position: relative;
}

body[data-page='allflowers'] .shopping-top-group.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.15rem 0;
  border: 0;
  background: transparent;
  color: var(--nav-text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.22s ease, opacity 0.22s ease;
}

body[data-page='allflowers'] .shopping-top-group.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--nav-accent), var(--nav-accent-soft));
  border-radius: 999px;
  transition: width 0.22s ease;
}

body[data-page='allflowers'] .shopping-top-group.nav-link:hover,
body[data-page='allflowers'] .shopping-top-group.nav-link.is-active,
body[data-page='allflowers'] .nav-item.is-active .shopping-top-group.nav-link {
  color: #1b2c3f;
}

body[data-page='allflowers'] .shopping-top-group.nav-link:hover::after,
body[data-page='allflowers'] .shopping-top-group.nav-link.is-active::after,
body[data-page='allflowers'] .nav-item.is-active .shopping-top-group.nav-link::after {
  width: 100%;
}

body[data-page='allflowers'] .shopping-top-group-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid rgba(36, 54, 73, 0.6);
  border-bottom: 1.5px solid rgba(36, 54, 73, 0.6);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

body[data-page='allflowers'] .shopping-top-group[aria-expanded='true'] .shopping-top-group-caret {
  transform: rotate(-135deg) translateX(-1px);
  border-color: #1b2c3f;
}

body[data-page='allflowers'] .shopping-dropdown-shell {
  display: grid;
  gap: 1rem;
  min-width: 280px;
  background: rgba(251, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(190, 159, 120, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(60, 44, 28, 0.08);
  padding: 1.35rem 1.4rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

body[data-page='allflowers'] .shopping-dropdown-shell[hidden] {
  display: none;
}

body[data-page='allflowers'] .shopping-dropdown-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

body[data-page='allflowers'] .shopping-dropdown-head h3 {
  margin: 0.22rem 0 0.32rem;
  color: #1f3042;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
}

body[data-page='allflowers'] .shopping-dropdown-description {
  margin: 0;
  max-width: 42rem;
  color: var(--nav-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

body[data-page='allflowers'] .shopping-dropdown-head .btn {
  min-height: 40px;
  padding-inline: 1rem;
}

body[data-page='allflowers'] .shopping-dropdown-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}

body[data-page='allflowers'] .shopping-dropdown-link {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 252, 248, 0.84);
  color: #34465a;
  text-align: left;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body[data-page='allflowers'] .shopping-dropdown-link:hover,
body[data-page='allflowers'] .shopping-dropdown-link.is-active {
  color: #1b2c3f;
  transform: translateX(2px);
  border-color: rgba(190, 159, 120, 0.2);
  background: rgba(249, 241, 233, 0.92);
}

body[data-page='allflowers'] .shop-featured-seasonal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(190, 159, 120, 0.18);
  background: linear-gradient(135deg, rgba(34, 52, 71, 0.98), rgba(52, 72, 95, 0.95));
  box-shadow: 0 18px 34px rgba(34, 52, 71, 0.12);
  color: #f6f1ea;
}

body[data-page='allflowers'] .shop-featured-seasonal h3 {
  margin: 0.2rem 0 0.3rem;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

body[data-page='allflowers'] .shop-featured-seasonal p {
  margin: 0;
  color: rgba(246, 241, 234, 0.8);
}

body[data-page='allflowers'] .shop-breadcrumbs,
body[data-page='allflowers'] .shop-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body[data-page='allflowers'] .shop-breadcrumb {
  color: #7a818a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page='allflowers'] .shop-breadcrumb.is-active {
  color: var(--nav-text);
}

body[data-page='allflowers'] .shop-breadcrumb-sep {
  color: rgba(122, 129, 138, 0.6);
}

body[data-page='allflowers'] .shop-filter-chip {
  min-height: 40px;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 159, 120, 0.18);
  background: rgba(249, 241, 233, 0.82);
  color: var(--nav-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body[data-page='allflowers'] .shop-filter-chip:hover,
body[data-page='allflowers'] .shop-filter-chip.is-active {
  background: rgba(244, 228, 210, 0.92);
  border-color: rgba(190, 159, 120, 0.28);
  transform: translateY(-1px);
}

body[data-page='allflowers'] .premium-explorer-filters {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(160px, 0.78fr)) minmax(160px, 0.82fr);
  gap: 0.75rem;
}

body[data-page='allflowers'] .premium-explorer-filters input,
body[data-page='allflowers'] .premium-explorer-filters select {
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(190, 159, 120, 0.18);
  background: rgba(255, 252, 248, 0.96);
  color: var(--nav-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body[data-page='allflowers'] .premium-explorer-filters input:focus,
body[data-page='allflowers'] .premium-explorer-filters select:focus {
  border-color: rgba(201, 161, 107, 0.48);
  box-shadow: 0 0 0 4px rgba(224, 195, 154, 0.18);
}

body[data-page='allflowers'] .mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 33, 45, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 120;
}

body[data-page='allflowers'] .mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(90vw, 420px);
  height: 100vh;
  overflow-y: auto;
  background: #fbf7f2;
  border-left: 1px solid rgba(190, 159, 120, 0.18);
  box-shadow: -10px 0 30px rgba(60, 44, 28, 0.08);
  padding: 1.25rem 1.1rem 1.6rem;
  z-index: 130;
}

body[data-page='allflowers'] .mobile-nav-panel[hidden],
body[data-page='allflowers'] .mobile-nav-backdrop[hidden] {
  display: none;
}

body[data-page='allflowers'] .mobile-nav-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

body[data-page='allflowers'] .mobile-nav-panel-head p,
body[data-page='allflowers'] .mobile-nav-copy {
  margin: 0.35rem 0 0;
  color: var(--nav-text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

body[data-page='allflowers'] .mobile-nav-section {
  border-bottom: 1px solid rgba(190, 159, 120, 0.14);
  padding: 1rem 0;
}

body[data-page='allflowers'] .mobile-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #243649;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page='allflowers'] .mobile-nav-indicator {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 1.5px solid rgba(36, 54, 73, 0.62);
  border-bottom: 1.5px solid rgba(36, 54, 73, 0.62);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

body[data-page='allflowers'] .mobile-nav-section.is-open .mobile-nav-indicator {
  transform: rotate(-135deg) translateX(-1px);
}

body[data-page='allflowers'] .mobile-nav-links {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.9rem;
}

body[data-page='allflowers'] .mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.72rem 0;
  border: 0;
  background: transparent;
  color: #5c6470;
  text-align: left;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

body[data-page='allflowers'] .mobile-nav-link:hover,
body[data-page='allflowers'] .mobile-nav-link.is-active,
body[data-page='allflowers'] .mobile-nav-link-overview {
  color: #243649;
}

body[data-page='allflowers'] .mobile-nav-link:hover,
body[data-page='allflowers'] .mobile-nav-link.is-active {
  transform: translateX(2px);
}

body[data-shopping-mobile-nav='open'] {
  overflow: hidden;
}

@media (max-width: 1100px) {
  body[data-page='allflowers'] .premium-explorer-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='allflowers'] .shopping-nav-headline,
  body[data-page='allflowers'] .shopping-dropdown-head,
  body[data-page='allflowers'] .shop-featured-seasonal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  body[data-page='allflowers'] .shopping-mobile-nav-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body[data-page='allflowers'] .shopping-top-groups,
  body[data-page='allflowers'] .shopping-dropdown-shell {
    display: none;
  }
}

@media (max-width: 760px) {
  body[data-page='allflowers'] .shopping-nav-shell {
    padding: 1rem 0.95rem 0.9rem;
    border-radius: 24px;
  }

  body[data-page='allflowers'] .premium-explorer-filters {
    grid-template-columns: 1fr;
  }

  body[data-page='allflowers'] .shop-breadcrumbs,
  body[data-page='allflowers'] .shop-filter-chips {
    gap: 0.5rem;
  }
}

body[data-page='allflowers'] .shopping-top-groups {
  align-items: flex-end;
  gap: clamp(1.2rem, 2vw, 2.35rem);
  padding: 0 0 0.95rem;
  border-bottom: 1px solid rgba(190, 159, 120, 0.16);
}

body[data-page='allflowers'] .nav-item {
  display: flex;
  align-items: flex-end;
}

body[data-page='allflowers'] .shopping-top-group,
body[data-page='allflowers'] .shopping-top-group.nav-link {
  appearance: none;
  -webkit-appearance: none;
  min-height: auto;
  padding: 0.14rem 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body[data-page='allflowers'] .shopping-top-group.nav-link {
  gap: 0.42rem;
  color: rgba(36, 54, 73, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.22s ease, opacity 0.22s ease;
}

body[data-page='allflowers'] .shopping-top-group.nav-link::after {
  bottom: -0.96rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 161, 107, 0.92), rgba(224, 195, 154, 0.92));
}

body[data-page='allflowers'] .shopping-top-group.nav-link:hover,
body[data-page='allflowers'] .shopping-top-group.nav-link.is-active,
body[data-page='allflowers'] .nav-item.is-active .shopping-top-group.nav-link,
body[data-page='allflowers'] .shopping-top-group[aria-expanded='true'] {
  color: #1b2c3f;
  opacity: 1;
}

body[data-page='allflowers'] .shopping-top-group.nav-link:hover::after,
body[data-page='allflowers'] .shopping-top-group.nav-link.is-active::after,
body[data-page='allflowers'] .nav-item.is-active .shopping-top-group.nav-link::after,
body[data-page='allflowers'] .shopping-top-group[aria-expanded='true']::after {
  width: 100%;
}

body[data-page='allflowers'] .shopping-top-group-caret {
  width: 0.4rem;
  height: 0.4rem;
  margin-top: -0.1rem;
  border-right: 1.2px solid rgba(36, 54, 73, 0.58);
  border-bottom: 1.2px solid rgba(36, 54, 73, 0.58);
}

body[data-page='allflowers'] .shopping-top-group[aria-expanded='true'] .shopping-top-group-caret,
body[data-page='allflowers'] .shopping-top-group.nav-link:hover .shopping-top-group-caret,
body[data-page='allflowers'] .nav-item.is-active .shopping-top-group-caret {
  border-color: #1b2c3f;
}

body[data-page='allflowers'] .shopping-dropdown-shell {
  margin-top: 0.15rem;
  border-radius: 26px;
  border: 1px solid rgba(190, 159, 120, 0.15);
  background: linear-gradient(180deg, rgba(252, 248, 243, 0.98), rgba(248, 242, 235, 0.94));
  box-shadow: 0 24px 52px rgba(60, 44, 28, 0.1);
  padding: 1.55rem 1.6rem;
}

body[data-page='allflowers'] .shopping-dropdown-head {
  align-items: flex-start;
}

body[data-page='allflowers'] .shopping-dropdown-head .btn {
  min-height: auto;
  padding: 0.12rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(52, 70, 90, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page='allflowers'] .shopping-dropdown-head .btn:hover {
  color: #1b2c3f;
  background: transparent;
}

body[data-page='allflowers'] .shopping-dropdown-link {
  border-radius: 18px;
  border-color: rgba(190, 159, 120, 0.08);
  background: rgba(255, 252, 248, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

body[data-page='allflowers'] .shopping-dropdown-link:hover,
body[data-page='allflowers'] .shopping-dropdown-link.is-active {
  transform: translateX(2px);
  border-color: rgba(190, 159, 120, 0.18);
  background: rgba(249, 241, 233, 0.92);
  box-shadow: 0 10px 22px rgba(60, 44, 28, 0.06);
}

:root {
  --premium-control-radius: 16px;
  --premium-control-radius-sm: 14px;
  --premium-control-border: rgba(190, 159, 120, 0.18);
  --premium-control-border-strong: rgba(190, 159, 120, 0.28);
  --premium-control-bg: rgba(255, 251, 246, 0.92);
  --premium-control-bg-strong: linear-gradient(135deg, #b26d7a 0%, #8f4e5f 100%);
  --premium-control-text: #243649;
  --premium-control-shadow: 0 10px 24px rgba(60, 44, 28, 0.07);
  --premium-control-shadow-hover: 0 16px 30px rgba(60, 44, 28, 0.1);
}

.btn,
.cart-link,
.header-phone-pill,
.category-chip,
body[data-page='allflowers'] .shopping-mobile-nav-trigger,
body[data-page='allflowers'] .shopping-dropdown-link,
body[data-page='allflowers'] .shop-filter-chip,
body[data-page='allflowers'] .mobile-nav-link-overview {
  border-radius: var(--premium-control-radius) !important;
}

.btn,
.cart-link,
.header-phone-pill {
  min-height: 46px;
  padding: 0.78rem 1.08rem;
  line-height: 1;
}

.btn {
  gap: 0.4rem;
  letter-spacing: 0.11em;
  box-shadow: none;
}

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

.btn-sm {
  min-height: 40px;
  padding: 0.58rem 0.9rem;
  border-radius: var(--premium-control-radius-sm) !important;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.btn-primary {
  background: var(--premium-control-bg-strong);
  box-shadow: var(--premium-control-shadow);
}

.btn-primary:hover {
  box-shadow: var(--premium-control-shadow-hover);
}

.btn-ghost,
.cart-link,
.header-phone-pill {
  border-color: var(--premium-control-border);
  background: var(--premium-control-bg);
  color: var(--premium-control-text);
  box-shadow: var(--premium-control-shadow);
}

.btn-ghost:hover,
.cart-link:hover,
.header-phone-pill:hover {
  border-color: var(--premium-control-border-strong);
  background: rgba(255, 248, 241, 0.96);
  box-shadow: var(--premium-control-shadow-hover);
}

.category-chip {
  min-height: 40px;
  padding: 0.56rem 0.92rem;
  border-radius: var(--premium-control-radius-sm) !important;
  border-color: var(--premium-control-border);
  background: var(--premium-control-bg);
  color: var(--premium-control-text);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  box-shadow: var(--premium-control-shadow);
}

.category-chip:hover,
.category-chip.is-active {
  border-color: var(--premium-control-border-strong);
  background: rgba(249, 241, 233, 0.94);
  color: #1b2c3f;
  box-shadow: var(--premium-control-shadow-hover);
}

body[data-page='allflowers'] .shopping-dropdown-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

body[data-page='allflowers'] .shopping-dropdown-link,
body[data-page='allflowers'] .shop-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  min-height: 42px;
  padding: 0.72rem 0.96rem;
  border-radius: var(--premium-control-radius) !important;
  border-color: var(--premium-control-border);
  background: var(--premium-control-bg);
  color: var(--premium-control-text);
  box-shadow: var(--premium-control-shadow);
}

body[data-page='allflowers'] .shopping-dropdown-link:hover,
body[data-page='allflowers'] .shopping-dropdown-link.is-active,
body[data-page='allflowers'] .shop-filter-chip:hover,
body[data-page='allflowers'] .shop-filter-chip.is-active {
  border-color: var(--premium-control-border-strong);
  background: rgba(249, 241, 233, 0.94);
  color: #1b2c3f;
  box-shadow: var(--premium-control-shadow-hover);
}

body[data-page='allflowers'] .shopping-mobile-nav-trigger,
body[data-page='allflowers'] .mobile-nav-link-overview {
  border-radius: var(--premium-control-radius) !important;
  border-color: var(--premium-control-border);
  background: var(--premium-control-bg);
  box-shadow: var(--premium-control-shadow);
}

body[data-page='allflowers'] .shopping-dropdown-head .btn {
  min-height: auto;
  padding: 0.12rem 0;
  border-radius: 0 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page='allflowers'] .shopping-nav-shell {
  position: relative;
  overflow: visible;
}

body[data-page='allflowers'] .shopping-dropdown-shell {
  position: static;
  width: min(430px, 100%);
  max-width: 430px;
  margin-top: 0.8rem;
  padding: 0.95rem;
  border-radius: 24px;
  border: 1px solid rgba(173, 141, 121, 0.22);
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 26px 56px rgba(63, 39, 34, 0.14);
  z-index: auto;
}

body[data-page='allflowers'] .shopping-dropdown-shell[hidden] {
  display: none !important;
}

body[data-page='allflowers'] .shopping-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(173, 141, 121, 0.14);
}

body[data-page='allflowers'] .shopping-dropdown-head h3 {
  margin: 0.08rem 0 0;
  font-size: 1.06rem;
}

body[data-page='allflowers'] .shopping-dropdown-description {
  display: none;
}

body[data-page='allflowers'] .shopping-dropdown-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.42rem;
  max-height: 320px;
  overflow: auto;
  padding-right: 0.08rem;
}

body[data-page='allflowers'] .shopping-dropdown-link {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  min-height: 46px;
  padding: 0.78rem 0.95rem;
}

body[data-page='allflowers'] .shopping-dropdown-head .btn {
  min-height: 38px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px !important;
  border: 1px solid rgba(173, 141, 121, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

body[data-page='allflowers'] .shopping-dropdown-head .btn:hover {
  background: rgba(249, 241, 233, 0.96);
  border-color: rgba(129, 87, 61, 0.28);
}

@media (max-width: 860px) {
  body[data-page='allflowers'] .shopping-dropdown-shell {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.8rem;
  }
}

/* =========================================================
   HOMEPAGE PREMIUM SECTIONS
   ========================================================= */

/* --- shared section rhythm --- */
body[data-page='home'] .section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

body[data-page='home'] .section-head-split .btn {
  flex-shrink: 0;
}

/* --- home showcase grid (JS-rendered collection cards) --- */
.home-showcase-section {
  padding: 4.5rem 0 2rem;
}

body[data-page='home'] .home-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

body[data-page='home'] .home-showcase-grid .home-showcase-card,
body[data-page='home'] .home-showcase-grid .collection-showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(184, 136, 90, 0.13);
  box-shadow: 0 8px 32px rgba(89, 52, 57, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body[data-page='home'] .home-showcase-grid .home-showcase-card:hover,
body[data-page='home'] .home-showcase-grid .collection-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(89, 52, 57, 0.13);
}

body[data-page='home'] .home-collection-garden-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.2rem);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(250, 244, 238, 0.88)),
    radial-gradient(circle at 16% 18%, rgba(184, 107, 115, 0.12), transparent 25rem);
}

body[data-page='home'] .home-collection-garden-head {
  align-items: end;
  margin-bottom: clamp(1rem, 2.4vw, 1.65rem);
}

body[data-page='home'] .home-collection-garden-note {
  margin: 0.38rem 0 0;
  max-width: 34rem;
  color: rgba(50, 35, 40, 0.68);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-family: var(--font-head);
  line-height: 1.04;
}

body[data-page='home'] .home-collection-garden {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: stretch;
}

body[data-page='home'] .home-collection-garden a {
  color: inherit;
  text-decoration: none;
}

body[data-page='home'] .home-collection-garden-main,
body[data-page='home'] .home-collection-garden-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(112, 72, 76, 0.13);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 18px 48px rgba(54, 31, 36, 0.1);
}

body[data-page='home'] .home-collection-garden-main {
  min-height: clamp(410px, 48vw, 590px);
  background:
    linear-gradient(145deg, rgba(255, 249, 244, 0.94), rgba(233, 219, 210, 0.82)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.95), transparent 18rem);
}

body[data-page='home'] .home-collection-garden-main::before,
body[data-page='home'] .home-collection-garden-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(44, 22, 31, 0.8));
  pointer-events: none;
}

body[data-page='home'] .home-collection-garden-main img,
body[data-page='home'] .home-collection-garden-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: clamp(0.7rem, 1.8vw, 1.25rem);
  transform: scale(1.01);
  transition: transform 420ms ease;
}

body[data-page='home'] .home-collection-garden-main:hover img,
body[data-page='home'] .home-collection-garden-card:hover img {
  transform: scale(1.055) translateY(-4px);
}

body[data-page='home'] .home-collection-garden-copy,
body[data-page='home'] .home-collection-garden-card > span {
  position: absolute;
  left: clamp(1rem, 2.2vw, 1.6rem);
  right: clamp(1rem, 2.2vw, 1.6rem);
  bottom: clamp(1rem, 2.2vw, 1.55rem);
  z-index: 2;
  display: grid;
  gap: 0.38rem;
  color: #fffaf6;
}

body[data-page='home'] .home-collection-garden-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0.32rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 250, 246, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page='home'] .home-collection-garden-title {
  display: block;
  max-width: 16rem;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 0.98;
}

body[data-page='home'] .home-collection-garden-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.28rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-page='home'] .home-collection-garden-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

body[data-page='home'] .home-collection-garden-card {
  min-height: clamp(230px, 23vw, 286px);
}

body[data-page='home'] .home-collection-garden-card-wide {
  grid-column: 1 / -1;
}

body[data-page='home'] .home-collection-garden-card .home-collection-garden-title {
  font-size: clamp(1.25rem, 2.05vw, 2rem);
}

body[data-page='home'] .home-collection-garden-card-accent {
  background:
    linear-gradient(145deg, rgba(50, 29, 40, 0.92), rgba(121, 63, 78, 0.76)),
    radial-gradient(circle at 75% 20%, rgba(255, 227, 232, 0.18), transparent 12rem);
}

@media (max-width: 920px) {
  body[data-page='home'] .home-collection-garden {
    grid-template-columns: 1fr;
  }

  body[data-page='home'] .home-collection-garden-main {
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  body[data-page='home'] .home-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 540px) {
  body[data-page='home'] .home-showcase-grid {
    grid-template-columns: 1fr;
  }

  .home-showcase-section {
    padding: 3rem 0 1.4rem;
  }

  body[data-page='home'] .home-collection-garden-note {
    font-size: clamp(1.3rem, 8vw, 1.85rem);
  }

  body[data-page='home'] .home-collection-garden-rail {
    grid-template-columns: 1fr;
  }

  body[data-page='home'] .home-collection-garden-main,
  body[data-page='home'] .home-collection-garden-card {
    min-height: 320px;
    border-radius: 22px;
  }
}

/* --- shop by occasion grid --- */
.home-occasion-section {
  padding: 3.5rem 0 2.5rem;
  background: rgba(255, 251, 247, 0.6);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 0.25rem;
}

.occasion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.4rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid rgba(184, 136, 90, 0.15);
  box-shadow: 0 4px 16px rgba(89, 52, 57, 0.06);
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.occasion-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 248, 244, 0.98);
  border-color: rgba(184, 136, 90, 0.32);
  box-shadow: 0 10px 30px rgba(89, 52, 57, 0.11);
}

.occasion-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.occasion-card-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .occasion-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .occasion-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .occasion-card {
    padding: 1.1rem 0.6rem;
  }

  .occasion-card-icon {
    font-size: 1.5rem;
  }

  .home-occasion-section {
    padding: 2.5rem 0 2rem;
  }
}

@media (max-width: 380px) {
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- luxury collections horizontal strip --- */
.home-luxury-strip {
  padding: 3.5rem 0 2.5rem;
}

.luxury-strip-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 136, 90, 0.3) transparent;
}

.luxury-strip-scroll::-webkit-scrollbar {
  height: 4px;
}

.luxury-strip-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.luxury-strip-scroll::-webkit-scrollbar-thumb {
  background: rgba(184, 136, 90, 0.28);
  border-radius: 2px;
}

.luxury-strip-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem 1.6rem;
  min-width: 210px;
  max-width: 240px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(184, 136, 90, 0.16);
  box-shadow: 0 4px 16px rgba(89, 52, 57, 0.06);
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.luxury-strip-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 248, 244, 0.98);
  box-shadow: 0 12px 32px rgba(89, 52, 57, 0.12);
  border-color: rgba(184, 136, 90, 0.3);
}

.luxury-strip-card-accent {
  background: linear-gradient(135deg, rgba(184, 107, 115, 0.08) 0%, rgba(255, 252, 249, 0.9) 60%);
  border-color: rgba(184, 107, 115, 0.22);
}

.luxury-strip-label {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.luxury-strip-sub {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* --- concierge block --- */
.home-concierge-band {
  padding: 4rem 0;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(184, 107, 115, 0.06) 0%, rgba(255, 251, 247, 0.0) 60%);
  border-top: 1px solid rgba(184, 136, 90, 0.1);
}

.home-concierge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.home-concierge-copy h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.home-concierge-copy p {
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 40ch;
  line-height: 1.7;
}

.home-concierge-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.home-concierge-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.concierge-service-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.concierge-service-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.08rem;
  line-height: 1;
}

.concierge-service-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.concierge-service-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .home-concierge-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-concierge-services {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .home-concierge-services {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .home-concierge-band {
    padding: 2.5rem 0;
  }
}

/* =========================================================
   PRODUCT CARD PREMIUM BADGES
   ========================================================= */

.product-card-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.badge-same-day {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 120, 80, 0.1);
  color: #1a6644;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(34, 120, 80, 0.2);
}

.badge-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(184, 107, 115, 0.1);
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 107, 115, 0.22);
}

.badge-seasonal {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(184, 136, 90, 0.1);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 136, 90, 0.22);
}

/* enhanced florist note on product cards */
.product-florist-note {
  margin-top: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(184, 136, 90, 0.06);
  border-left: 2px solid rgba(184, 136, 90, 0.35);
  font-size: 0.76rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* product card occasion strip */
.product-occasion-strip {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.product-occasion-chip {
  padding: 0.15rem 0.48rem;
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(184, 136, 90, 0.18);
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

/* =========================================================
   PRODUCT CARD LAYOUT POLISH (all pages)
   ========================================================= */

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 252, 249, 0.88);
  border: 1px solid rgba(184, 136, 90, 0.12);
  box-shadow: 0 6px 24px rgba(89, 52, 57, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(89, 52, 57, 0.12);
}

.product-image-stage {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(248, 243, 239, 0.6);
  flex-shrink: 0;
}

.product-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
  display: block;
}

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

.product-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  margin: 0.15rem 0 0.4rem;
  font-size: 1.06rem;
  font-family: var(--font-head);
  line-height: 1.3;
  color: var(--ink);
}

.product-body p {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.product-tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(184, 136, 90, 0.1);
  flex-wrap: wrap;
}

.price {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.size-row {
  margin-bottom: 0.7rem;
}

.size-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  display: block;
}

.size-select {
  width: 100%;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 136, 90, 0.22);
  background: rgba(255, 252, 249, 0.95);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236f5e63' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
}

.size-select:focus {
  outline: none;
  border-color: rgba(184, 107, 115, 0.45);
  box-shadow: 0 0 0 3px rgba(184, 107, 115, 0.1);
}

/* =========================================================
   HOME PAGE OCCASION SECTION - DARK BG VARIANT
   ========================================================= */

body[data-page='home'] .home-occasion-section {
  background: rgba(184, 107, 115, 0.04);
  border-top: 1px solid rgba(184, 136, 90, 0.08);
  border-bottom: 1px solid rgba(184, 136, 90, 0.08);
}

body[data-page='home'] .occasion-card {
  background: rgba(255, 252, 249, 0.85);
}

body[data-page='home'] .occasion-card:hover {
  background: #fffaf7;
}

/* =========================================================
   SECTION HEAD (shared utility)
   ========================================================= */

.section-head {
  margin-bottom: 2.2rem;
}

.section-head .kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 56ch;
  line-height: 1.65;
}

/* =========================================================
   CART — PREMIUM SUMMARY CARD
   ========================================================= */

.premium-summary-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 136, 90, 0.16);
  background: rgba(255, 252, 249, 0.96);
  box-shadow: 0 8px 32px rgba(89, 52, 57, 0.08);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.summary-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
  color: var(--ink);
}

.summary-delivery-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
  line-height: 1.5;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(184, 136, 90, 0.1);
  border-bottom: 1px solid rgba(184, 136, 90, 0.1);
  padding: 0.8rem 0;
  margin-bottom: 1.1rem;
}

.summary-checkout-btn {
  margin-bottom: 0.55rem;
}

.summary-clear-btn {
  margin-bottom: 1.4rem;
}

.summary-trust-block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  background: rgba(248, 244, 240, 0.7);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.summary-trust-item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
}

.summary-trust-item span:first-child {
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.04rem;
}

.summary-help-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.summary-help-note a {
  color: var(--accent);
  font-weight: 600;
}

.summary-help-note a:hover {
  text-decoration: underline;
}

/* cart empty state */
.cart-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 420px;
  margin: 0 auto;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.cart-empty-state h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
}

.cart-empty-state p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.cart-empty-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   CATALOG MANAGER — ADMIN QUALITY-OF-LIFE
   ========================================================= */

/* health status badges for same-day and featured in catalog table */
.cm-badge-sameday {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(34, 120, 80, 0.1);
  color: #1a6644;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(34, 120, 80, 0.18);
}

.cm-badge-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(184, 107, 115, 0.1);
  color: var(--accent-strong);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 107, 115, 0.2);
}

/* =========================================================
   MOBILE NAV IMPROVEMENTS
   ========================================================= */

@media (max-width: 600px) {
  .home-luxury-strip {
    padding: 2.5rem 0 1.8rem;
  }

  .luxury-strip-card {
    min-width: 170px;
    padding: 1.2rem 1.3rem;
  }

  .luxury-strip-label {
    font-size: 0.98rem;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }

  .home-showcase-section {
    padding: 2.5rem 0 1.4rem;
  }
}

/* alias for reveal — supports both class names */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   CHECKOUT FORM — PREMIUM RHYTHM
   ========================================================= */

.form-section-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

.form-field {
  margin-top: 0.85rem;
}

.form-row-spaced {
  margin-top: 0.85rem;
}

.form-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.2rem 0;
}

.form-payment-note {
  margin: 0.35rem 0 0;
}

.form-concierge-block {
  margin-top: 0.9rem;
  padding: 1rem 1.1rem;
  background: rgba(248, 243, 239, 0.8);
  border: 1px solid rgba(184, 107, 115, 0.2);
  border-radius: var(--radius-sm);
}

.form-concierge-label {
  margin: 0 0 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-concierge-contact {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--ink);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-concierge-contact a {
  font-weight: 600;
  color: var(--ink);
}

.form-concierge-contact a:hover {
  color: var(--accent);
}

.form-concierge-hours {
  margin: 0.2rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
}

/* checkout concierge sidebar note */
.checkout-concierge-note {
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 136, 90, 0.12);
}

.checkout-concierge-label {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-concierge-contact {
  margin: 0 0 0.15rem;
  font-size: 0.86rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.checkout-concierge-contact a {
  color: var(--ink);
  font-weight: 600;
}

.checkout-concierge-contact a:hover {
  color: var(--accent);
}

.checkout-concierge-hours {
  margin: 0;
  font-size: 0.73rem;
  color: var(--muted);
}

/* =========================================================
   ABOUT PAGE — STORY BANDS (if used elsewhere)
   ========================================================= */

.home-story-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.home-story-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 249, 0.7);
  border: 1px solid rgba(184, 136, 90, 0.12);
}

.home-story-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.home-story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* =========================================================
   LUXURY GIFTS PAGE
   ========================================================= */

.luxury-gifts-hero {
  padding-bottom: 3rem;
}

.luxury-gifts-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.luxury-gifts-hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.luxury-gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.luxury-gift-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 249, 0.88);
  border: 1px solid rgba(184, 136, 90, 0.15);
  box-shadow: 0 6px 24px rgba(89, 52, 57, 0.07);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  min-height: 180px;
}

.luxury-gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(89, 52, 57, 0.13);
  border-color: rgba(184, 136, 90, 0.28);
}

.luxury-gift-card-lg {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(184, 107, 115, 0.06) 0%, rgba(255, 252, 249, 0.9) 70%);
  border-color: rgba(184, 107, 115, 0.2);
}

.luxury-gift-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.luxury-gift-card-body .kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.luxury-gift-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}

.luxury-gift-card-body p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.luxury-gift-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
  display: block;
}

.luxury-concierge-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 249, 0.7);
  border: 1px solid rgba(184, 136, 90, 0.14);
}

.luxury-concierge-copy h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.luxury-concierge-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

.luxury-concierge-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.luxury-concierge-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

@media (max-width: 980px) {
  .luxury-gifts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .luxury-gift-card-lg {
    grid-column: span 2;
  }

  .luxury-concierge-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .luxury-gifts-grid {
    grid-template-columns: 1fr;
  }

  .luxury-gift-card-lg {
    grid-column: span 1;
  }

  .luxury-concierge-services {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PRODUCT OPTIONS MODAL — PREMIUM INTELLIGENCE PANELS
   ========================================================= */

.product-options-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.9rem;
  background: rgba(248, 243, 239, 0.5);
}

.product-options-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-options-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  z-index: 2;
}

/* occasions chip row */
.product-options-occasions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.5rem 0 0.7rem;
}

.modal-occasions-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 0.15rem;
}

.product-options-occasions .product-occasion-chip {
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.product-options-occasions .product-occasion-chip:hover {
  background: rgba(184, 107, 115, 0.1);
  border-color: rgba(184, 107, 115, 0.3);
  color: var(--accent-strong);
}

/* florist note blockquote */
.product-options-florist-note {
  margin: 0.5rem 0 0.8rem;
  padding: 0.65rem 0.85rem 0.65rem 1rem;
  border-left: 2.5px solid rgba(184, 136, 90, 0.45);
  background: rgba(184, 136, 90, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* delivery confidence row */
.product-options-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.5rem 0 0.8rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(34, 120, 80, 0.06);
  border: 1px solid rgba(34, 120, 80, 0.14);
  font-size: 0.78rem;
  color: var(--ink);
  line-height: 1.5;
}

.product-options-delivery-note strong {
  font-weight: 700;
}

.modal-delivery-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.06rem;
}

/* size guide hint */
.product-options-size-guide {
  margin: 0.3rem 0 0.7rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(184, 136, 90, 0.14);
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
  transition: opacity 0.2s;
}

/* form section labels */
.product-options-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label-note {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.68rem;
  color: rgba(111, 94, 99, 0.65);
}

/* addon preview inline */
.product-addon-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(184, 136, 90, 0.1);
  min-height: 36px;
}

.product-addon-preview img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.addon-preview-name {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}

.addon-preview-range {
  font-size: 0.68rem;
  color: var(--muted);
  display: block;
}

/* full-width field */
.product-field-full {
  width: 100%;
}

.product-field-full textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(184, 136, 90, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 249, 0.95);
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--ink);
  line-height: 1.55;
  resize: vertical;
  min-height: 60px;
}

.product-field-full textarea::placeholder {
  color: rgba(111, 94, 99, 0.5);
}

.product-field-full textarea:focus {
  outline: none;
  border-color: rgba(184, 107, 115, 0.4);
  box-shadow: 0 0 0 3px rgba(184, 107, 115, 0.08);
}

/* badge-next-day (after cutoff) */
.badge-next-day {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(109, 77, 77, 0.08);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(109, 77, 77, 0.16);
}

/* =========================================================
   SAVED RECIPIENTS PANEL (checkout page)
   ========================================================= */

.recipients-panel {
  margin-bottom: 1.4rem;
  padding: 1.1rem 1.2rem;
  background: rgba(248, 244, 240, 0.7);
  border: 1px solid rgba(184, 136, 90, 0.18);
  border-radius: var(--radius-md);
}

.recipients-panel-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recipients-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.recipient-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(184, 136, 90, 0.14);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}

.recipient-item:hover {
  background: rgba(255, 248, 244, 0.98);
  border-color: rgba(184, 136, 90, 0.28);
}

.recipient-item.is-selected {
  background: rgba(184, 107, 115, 0.06);
  border-color: rgba(184, 107, 115, 0.3);
}

.recipient-item-info {
  flex: 1;
  min-width: 0;
}

.recipient-item-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-item-address {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-remove-btn {
  background: none;
  border: none;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.recipient-remove-btn:hover {
  opacity: 1;
  color: var(--accent);
}

.save-recipient-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(184, 136, 90, 0.1);
  font-size: 0.78rem;
  color: var(--muted);
}

.save-recipient-row label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  user-select: none;
}

/* =========================================================
   EXPLORER — QUICK FILTER CHIPS + SMART FEATURES
   ========================================================= */

.explorer-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.explorer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 136, 90, 0.22);
  background: rgba(255, 252, 249, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
  user-select: none;
}

.explorer-chip:hover {
  background: rgba(255, 248, 244, 0.98);
  border-color: rgba(184, 136, 90, 0.38);
}

.explorer-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.explorer-chip-icon {
  font-size: 0.85rem;
  line-height: 1;
}

/* smart empty state */
.explorer-smart-empty {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.explorer-smart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.explorer-smart-empty h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.explorer-smart-empty p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.explorer-smart-empty-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   MOBILE STICKY CART CTA
   ========================================================= */

.sticky-cart-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.9rem 1rem;
  background: rgba(255, 252, 249, 0.97);
  border-top: 1px solid rgba(184, 136, 90, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(89, 52, 57, 0.1);
}

.sticky-cart-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  max-width: var(--container);
  margin: 0 auto;
}

.sticky-cart-count {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.sticky-cart-cta .btn {
  flex: 1;
  max-width: 260px;
  justify-content: center;
}

@media (max-width: 640px) {
  .sticky-cart-cta {
    display: flex;
  }

  body[data-page='cart'],
  body[data-page='checkout'],
  body[data-page='home'] {
    /* don't show sticky CTA on cart/checkout/home since they already have CTAs */
  }

  body[data-page='cart'] .sticky-cart-cta,
  body[data-page='checkout'] .sticky-cart-cta,
  body[data-page='home'] .sticky-cart-cta {
    display: none !important;
  }
}

/* =========================================================
   ADMIN — SAME-DAY TOGGLE + HEALTH BADGE
   ========================================================= */

.admin-health-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(184, 136, 90, 0.16);
}

.admin-health-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid currentColor;
}

.admin-health-chip.ok { color: #1a6644; background: rgba(34, 120, 80, 0.08); border-color: rgba(34, 120, 80, 0.2); }
.admin-health-chip.warn { color: #7c5c0a; background: rgba(184, 136, 90, 0.1); border-color: rgba(184, 136, 90, 0.3); }
.admin-health-chip.error { color: #8f2020; background: rgba(184, 50, 50, 0.08); border-color: rgba(184, 50, 50, 0.22); }

.cm-price-anomaly {
  font-size: 0.7rem;
  color: #7c5c0a;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* =========================================================
   PHASE 5 — MOBILE-FIRST LUXURY REFINEMENT
   Premium feel on every screen width.
   ========================================================= */

/* ----------------------------------------------------------
   1. PRODUCT GRID — tight 2-col on phone, 1-col only at xs
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  /* Force 2-column product grid on phones — better browsing rhythm */
  body[data-page='allflowers'] .luxury-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage {
    min-height: unset;
    padding: 10px 10px 6px;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card .product-body {
    padding: 0.75rem 0.8rem 0.9rem;
    gap: 0.5rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card p {
    font-size: 0.76rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body[data-page='allflowers'] .luxury-product-grid .price {
    font-size: 0.95rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .btn {
    font-size: 0.73rem;
    min-height: 36px;
    padding-inline: 0.7rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding-top: 0.5rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .price-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  body[data-page='allflowers'] .luxury-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   2. LUXURY FILTER BAR — disable sticky on mobile
      (sticky filter is claustrophobic at 360px)
   ---------------------------------------------------------- */

@media (max-width: 760px) {
  body[data-page='allflowers'] .luxury-filter-bar {
    position: static;
    border-radius: 14px;
    padding: 0.6rem;
  }
}

@media (max-width: 640px) {
  body[data-page='allflowers'] .luxury-filter-bar {
    position: static;
    border-radius: 12px;
    padding: 0.55rem;
    gap: 0.5rem;
  }

  /* Collapse filter selects to 2-per-row on phone */
  body[data-page='allflowers'] .luxury-filter-bar select,
  body[data-page='allflowers'] .luxury-filter-bar input[type='search'] {
    min-height: 44px;
    font-size: 0.84rem;
    border-radius: var(--radius-sm);
  }
}

/* ----------------------------------------------------------
   3. EXPLORER QUICK CHIPS — smooth horizontal scroll on touch
   ---------------------------------------------------------- */

@media (max-width: 760px) {
  .explorer-quick-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0.5rem;
    scrollbar-width: none;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
    /* negative margin + padding trick for flush edges */
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .explorer-quick-chips::-webkit-scrollbar {
    display: none;
  }

  .explorer-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    min-height: 36px;
    padding: 0.3rem 0.75rem;
    font-size: 0.76rem;
  }
}

/* ----------------------------------------------------------
   4. SHOPPING NAV — touch-friendly groups + mobile panel
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  /* Top group buttons: horizontal scroll */
  .shopping-top-groups {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.45rem;
    padding-bottom: 0.2rem;
  }

  .shopping-top-groups::-webkit-scrollbar {
    display: none;
  }

  /* Each group button: min touch target */
  .shopping-top-groups .shopping-group-btn,
  .shopping-top-groups button {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 40px;
  }

  /* Mobile nav panel: full-height bottom sheet */
  .mobile-nav-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    max-height: 75dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px 20px 0 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 120;
    box-shadow: 0 -16px 48px rgba(48, 27, 35, 0.22);
    animation: slideUpPanel 0.28s cubic-bezier(0.32, 0, 0.24, 1);
  }

  @keyframes slideUpPanel {
    from { transform: translateY(40px); opacity: 0.6; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 119;
    background: rgba(14, 8, 12, 0.52);
    backdrop-filter: blur(4px);
  }

  /* shopping nav headline: shrink */
  .shopping-nav-headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ----------------------------------------------------------
   5. CART + CHECKOUT — summary visible before items on mobile
   ---------------------------------------------------------- */

@media (max-width: 760px) {
  /* On mobile the layout stacks — push summary to top */
  .cart-layout,
  .checkout-layout {
    display: flex;
    flex-direction: column;
  }

  .cart-layout .summary-card,
  .cart-layout .premium-summary-card,
  .checkout-layout .summary-card,
  .checkout-layout .premium-summary-card {
    order: -1;
  }

  /* Summary card: tighter padding on mobile */
  .premium-summary-card {
    padding: 1.1rem 1.1rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .summary-rows {
    margin-top: 0.75rem;
  }
}

/* ----------------------------------------------------------
   6. PRODUCT OPTIONS MODAL — bottom-sheet style on phone
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .product-options-modal {
    padding: 0;
    align-items: flex-end;
    place-items: end center;
  }

  .product-options-card {
    width: 100%;
    max-height: 90dvh;
    border-radius: 24px 24px 0 0;
    padding: 0.9rem 0.85rem 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Bottom-sheet slide-up animation */
    animation: sheetSlideUp 0.3s cubic-bezier(0.32, 0.0, 0.24, 1.0);
  }

  @keyframes sheetSlideUp {
    from { transform: translateY(60px); opacity: 0.5; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  /* Drag-handle hint at top of sheet */
  .product-options-card::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(200, 222, 240, 0.3);
  }

  /* Flatten preview panel — horizontal thumbnail + info */
  .product-options-preview {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.65rem 0.8rem;
    grid-template-areas:
      'image title'
      'image price'
      'occasions occasions'
      'florist florist'
      'delivery delivery'
      'sizeguide sizeguide'
      'promise promise'
      'total total';
    padding: 0.75rem;
    border-radius: 16px;
  }

  .product-options-image-wrap {
    grid-area: image;
    margin-bottom: 0;
    border-radius: var(--radius-sm);
  }

  .product-options-image-wrap img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  #productOptionsTitle {
    grid-area: title;
    font-size: 1.05rem;
    margin: 0;
    align-self: end;
  }

  #productOptionsBasePrice {
    grid-area: price;
    align-self: start;
    margin: 0;
  }

  #productOptionsOccasions {
    grid-area: occasions;
  }

  #productOptionsFloristNote {
    grid-area: florist;
  }

  #productOptionsDelivery {
    grid-area: delivery;
  }

  #productOptionsSizeGuide {
    grid-area: sizeguide;
  }

  .product-options-promise {
    grid-area: promise;
  }

  .product-options-total-panel {
    grid-area: total;
  }

  /* Form fields: full touch targets */
  .product-options-form select,
  .product-options-form input[type='number'],
  .product-options-form textarea {
    min-height: 44px;
    font-size: 0.9rem;
  }
}

/* ----------------------------------------------------------
   7. GLOBAL TOUCH TARGETS — 44px minimum across all pages
   ---------------------------------------------------------- */

@media (max-width: 760px) {
  /* Buttons */
  .btn,
  button.btn {
    min-height: 44px;
  }

  /* Form inputs and selects */
  input[type='text'],
  input[type='email'],
  input[type='tel'],
  input[type='date'],
  input[type='search'],
  input[type='number'],
  select,
  textarea {
    min-height: 44px;
    font-size: max(16px, 0.9rem); /* prevents iOS zoom on focus */
  }

  /* Occasion cards: larger tap area */
  .occasion-card {
    padding: 1.2rem 0.7rem;
    min-height: 80px;
  }

  /* Recipient items */
  .recipient-item {
    padding: 0.75rem 0.9rem;
  }

  .recipient-remove-btn {
    min-width: 36px;
    min-height: 36px;
  }
}

/* ----------------------------------------------------------
   8. PRODUCT CARD RHYTHM — disable hover lift on touch
   ---------------------------------------------------------- */

@media (hover: none) {
  .product-card:hover,
  .occasion-card:hover,
  .luxury-strip-card:hover,
  .home-showcase-grid .collection-showcase-card:hover,
  body[data-page='allflowers'] .luxury-product-grid .product-card:hover {
    transform: none;
    box-shadow: inherit;
  }

  .product-card:active,
  .occasion-card:active,
  .luxury-strip-card:active {
    transform: scale(0.985);
    opacity: 0.92;
    transition: transform 0.12s ease, opacity 0.12s ease;
  }

  .product-image-stage img,
  .product-card:hover .product-image-stage img {
    transform: none;
  }
}

/* ----------------------------------------------------------
   9. SECTION RHYTHM — tighter vertical spacing on mobile
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    line-height: 1.05;
  }

  /* Explorer shell: tighter padding on mobile */
  .explorer-shell {
    padding: 1rem 0.9rem 1.2rem;
  }

  /* Count pill: smaller on mobile */
  #allFlowersCount {
    font-size: 0.7rem;
    padding: 0.18rem 0.55rem;
  }

  /* Sticky cart CTA: add room for iOS home indicator */
  .sticky-cart-cta {
    padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
  }
}

/* ----------------------------------------------------------
   10. BODY SCROLL PADDING — room for sticky CTA on collection pages
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  body[data-page='allflowers'],
  body[data-page='catalog'],
  body[data-page='rose-collections'],
  body[data-page='bouquet-collection'] {
    /* Extra scroll padding so last product card isn't hidden behind sticky CTA */
    scroll-padding-bottom: 80px;
  }

  /* Last items in product grid get bottom margin */
  body[data-page='allflowers'] #allFlowersGrid {
    padding-bottom: 80px;
  }
}

/* ----------------------------------------------------------
   11. FILTER BAR SEARCH — bigger on touch, iOS safe font-size
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  #flowerSearch {
    font-size: max(16px, 0.84rem);
    padding: 0.7rem 0.85rem;
  }
}

/* ----------------------------------------------------------
   12. CATEGORY SHOWCASE GRID — 2-col on tablet, 1-col on phone
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .category-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

@media (max-width: 400px) {
  .category-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   13. CART EMPTY STATE — centered + tighter on mobile
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .cart-empty-state {
    padding: 2.5rem 1.2rem 3rem;
  }

  .cart-empty-state-icon {
    font-size: 2.8rem;
  }

  .cart-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ----------------------------------------------------------
   14. PRODUCT CARD BADGES — don't overlap on mobile
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .product-card-badges {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .badge-same-day,
  .badge-featured,
  .badge-seasonal,
  .badge-next-day {
    font-size: 0.6rem;
    padding: 0.15rem 0.45rem;
  }
}

/* ----------------------------------------------------------
   15. CHECKOUT PAGE — concierge block + form on mobile
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .form-concierge-block {
    padding: 0.8rem 0.9rem;
  }

  .form-concierge-contact {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .checkout-concierge-note {
    padding: 0.75rem 0.9rem;
  }

  .save-recipient-row {
    padding: 0.5rem 0;
  }

  .save-recipient-row label {
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ----------------------------------------------------------
   16. EXPLORER SMART EMPTY STATE — better on narrow
   ---------------------------------------------------------- */

@media (max-width: 640px) {
  .explorer-smart-empty {
    padding: 3rem 1.2rem 4rem;
  }

  .explorer-smart-empty-icon {
    font-size: 2.8rem;
  }

  .explorer-smart-empty h3 {
    font-size: 1.2rem;
  }

  .explorer-smart-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ----------------------------------------------------------
   17. HEADER UTILITIES — hide phone number text on very narrow
       screens but keep click target via icon only
   ---------------------------------------------------------- */

@media (max-width: 380px) {
  .header-phone-pill span:last-child {
    display: none;
  }

  .header-phone-pill {
    padding: 0.4rem 0.6rem;
    min-width: 40px;
    justify-content: center;
  }
}

/* =========================================================
   PHASE 6 — PRODUCT INTELLIGENCE, REORDER, REMINDERS,
   CURATED TAGS, RECOMMENDATION ROW, ADMIN UPGRADES
   ========================================================= */

/* ----------------------------------------------------------
   CONTEXTUAL ADDON SUGGESTION NOTE (product modal)
   ---------------------------------------------------------- */

.addon-suggestion-note {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(34, 120, 80, 0.07);
  border-left: 2px solid rgba(34, 120, 80, 0.3);
  font-size: 0.76rem;
  font-weight: 600;
  color: #1a6644;
  line-height: 1.45;
}

/* ----------------------------------------------------------
   CURATED COLLECTION TAGS (product cards on all-flowers)
   ---------------------------------------------------------- */

.curated-collection-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.tag-florists-pick {
  background: rgba(184, 107, 115, 0.1);
  color: var(--accent-strong);
  border: 1px solid rgba(184, 107, 115, 0.22);
}

.tag-signature {
  background: rgba(184, 136, 90, 0.1);
  color: var(--gold);
  border: 1px solid rgba(184, 136, 90, 0.25);
}

.tag-same-day-edit {
  background: rgba(34, 120, 80, 0.08);
  color: #1a6644;
  border: 1px solid rgba(34, 120, 80, 0.2);
}

.tag-seasonal {
  background: rgba(108, 51, 77, 0.08);
  color: var(--wine);
  border: 1px solid rgba(108, 51, 77, 0.18);
}

.tag-luxury-edit {
  background: rgba(142, 108, 64, 0.12);
  color: #7b5428;
  border: 1px solid rgba(142, 108, 64, 0.24);
}

.tag-petite-edit {
  background: rgba(113, 83, 139, 0.1);
  color: #6b4d86;
  border: 1px solid rgba(113, 83, 139, 0.2);
}

.tag-best-sellers {
  background: rgba(153, 106, 44, 0.1);
  color: #8c5f27;
  border: 1px solid rgba(153, 106, 44, 0.24);
}

/* ----------------------------------------------------------
   RECOMMENDATION ROW (all-flowers explorer)
   ---------------------------------------------------------- */

.explorer-recommendation-row {
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(184, 136, 90, 0.12);
}

.recommendation-row-head {
  margin-bottom: 1.4rem;
}

.recommendation-row-head .kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.recommendation-row-head h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--ink);
  line-height: 1.1;
}

.recommendation-row-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  .recommendation-row-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .explorer-recommendation-row {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

/* ----------------------------------------------------------
   REORDER SECTION (cart page)
   ---------------------------------------------------------- */

.reorder-section {
  margin-top: 1.8rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(184, 136, 90, 0.15);
  box-shadow: 0 4px 16px rgba(89, 52, 57, 0.06);
}

.reorder-section-head {
  margin-bottom: 1.1rem;
}

.reorder-section-head .kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.reorder-section-head h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--ink);
}

.reorder-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.reorder-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.95);
  border: 1px solid rgba(184, 136, 90, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.reorder-item:hover {
  background: rgba(255, 248, 242, 0.98);
  border-color: rgba(184, 136, 90, 0.24);
}

.reorder-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  flex: 1;
}

.reorder-item-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.reorder-item-products {
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reorder-item-total {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-strong);
  font-family: var(--font-head);
}

.reorder-btn {
  flex-shrink: 0;
  min-height: 36px;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .reorder-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .reorder-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   REMINDER PROMPT (order confirmation page)
   ---------------------------------------------------------- */

.reminder-prompt-wrap {
  margin-top: 1.8rem;
}

.reminder-prompt {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 249, 0.95);
  border: 1px solid rgba(184, 136, 90, 0.16);
  box-shadow: 0 4px 18px rgba(89, 52, 57, 0.07);
  text-align: left;
}

.reminder-prompt-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.reminder-prompt-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.reminder-prompt-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--ink);
}

.reminder-prompt-sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.reminder-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.reminder-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.reminder-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.reminder-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reminder-field input,
.reminder-field select {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 136, 90, 0.22);
  background: rgba(255, 253, 250, 0.98);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
}

.reminder-form-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.reminder-message {
  font-size: 0.82rem;
  margin: 0;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(34, 120, 80, 0.07);
  border-left: 2px solid rgba(34, 120, 80, 0.3);
}

@media (max-width: 640px) {
  .reminder-form-row {
    grid-template-columns: 1fr;
  }

  .reminder-form-actions {
    flex-direction: column;
  }

  .reminder-form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   ADMIN — MISSING DATA BADGES + COLLECTION TAG FIELD
   ---------------------------------------------------------- */

.cm-missing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.cm-missing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cm-missing-occasions {
  background: rgba(184, 136, 90, 0.1);
  color: #7c5c0a;
  border: 1px solid rgba(184, 136, 90, 0.25);
}

.cm-missing-desc {
  background: rgba(108, 51, 77, 0.07);
  color: var(--wine);
  border: 1px solid rgba(108, 51, 77, 0.18);
}

.cm-missing-image {
  background: rgba(184, 50, 50, 0.07);
  color: #8f2020;
  border: 1px solid rgba(184, 50, 50, 0.2);
}

.owner-collection-tag-field {
  margin-top: 0.5rem;
}

.owner-collection-tag-field select {
  width: 100%;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 136, 90, 0.22);
  background: rgba(255, 252, 249, 0.95);
  color: var(--ink);
}

/* health list warnings */
.cm-health-warn {
  color: #7c5c0a;
  font-weight: 600;
}

.cm-health-dup-list {
  margin: 0.4rem 0 0 1rem;
  padding: 0;
  list-style: disc;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cm-health-dup-item {
  color: var(--ink);
  line-height: 1.4;
}

.cm-dup-url {
  font-family: monospace;
  font-size: 0.68rem;
  color: var(--muted);
  margin-left: 0.4rem;
  word-break: break-all;
}


/* ============================================================
   PHASE 7 — Account Dashboard, Modal Depth, Rec Subsections
   ============================================================ */

/* ----------------------------------------------------------
   Account Hero
   ---------------------------------------------------------- */
.account-hero {
  background: linear-gradient(135deg, var(--parchment, #fdf8f2) 0%, #fff9f5 60%, #fef3ea 100%);
  border-bottom: 1px solid rgba(184, 136, 90, 0.14);
  padding: 3.2rem 0 2.6rem;
}

.account-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.account-hero-copy .kicker {
  margin-bottom: 0.4rem;
}

.account-hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.account-hero-sub {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 46ch;
  margin: 0;
  line-height: 1.55;
}

.account-hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Account Dashboard Section
   ---------------------------------------------------------- */
.account-dashboard-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* ----------------------------------------------------------
   Account Tabs
   ---------------------------------------------------------- */
.account-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(184, 136, 90, 0.14);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.account-tabs::-webkit-scrollbar { display: none; }

.account-tab {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
  border-radius: 0;
  letter-spacing: 0.01em;
}

.account-tab:hover {
  color: var(--accent);
}

.account-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.account-tab-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ----------------------------------------------------------
   Account Panels
   ---------------------------------------------------------- */
.account-panel {
  animation: panelFadeIn 0.22s ease;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.account-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.account-panel-head .kicker {
  margin-bottom: 0.25rem;
}

.account-panel-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.account-panel-head p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.account-empty-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0;
  padding: 1.5rem 0;
}

.account-form-message {
  font-size: 0.84rem;
  margin: 0.5rem 0 0;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(184, 136, 90, 0.08);
  color: var(--accent);
}

.account-form-message.is-error {
  background: rgba(180, 40, 40, 0.07);
  color: #a03030;
}

/* ----------------------------------------------------------
   Account Orders Panel
   ---------------------------------------------------------- */
.account-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-order-item {
  border: 1px solid rgba(184, 136, 90, 0.18);
  border-radius: var(--radius, 12px);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.18s;
}

.account-order-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.account-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(253, 248, 242, 0.7);
  border-bottom: 1px solid rgba(184, 136, 90, 0.1);
  flex-wrap: wrap;
}

.account-order-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.account-order-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.account-order-id {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: monospace;
  letter-spacing: 0.03em;
}

.account-order-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.65rem;
  border-radius: 99px;
  background: rgba(180, 180, 180, 0.15);
  color: var(--muted);
}

.account-order-status.status-paid {
  background: rgba(34, 139, 80, 0.1);
  color: #1e6e3f;
}

.account-order-status.status-processing {
  background: rgba(184, 136, 90, 0.12);
  color: var(--accent);
}

.account-order-total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.account-order-items {
  padding: 0.8rem 1.2rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  border-bottom: 1px solid rgba(184, 136, 90, 0.08);
}

.account-order-actions {
  padding: 0.7rem 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Account Recipients Panel
   ---------------------------------------------------------- */
.account-recipients-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.9rem;
}

.account-recipient-item {
  border: 1px solid rgba(184, 136, 90, 0.18);
  border-radius: var(--radius, 12px);
  background: #fff;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: box-shadow 0.18s;
}

.account-recipient-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

.account-recipient-info {
  flex: 1;
}

.account-recipient-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.account-recipient-detail {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.account-recipient-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.account-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: #a03030;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.account-remove-btn:hover {
  background: rgba(180, 40, 40, 0.07);
}

.recipient-form-wrap {
  margin-bottom: 1.6rem;
  border: 1px solid rgba(184, 136, 90, 0.22);
  border-radius: var(--radius, 12px);
  background: rgba(253, 248, 242, 0.55);
  padding: 1.4rem 1.5rem;
  animation: panelFadeIn 0.2s ease;
}

.recipient-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.9rem 1rem;
}

.recipient-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.recipient-form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recipient-form-field input {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(184, 136, 90, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.recipient-form-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 136, 90, 0.12);
}

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

.recipient-form-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Account Reminders Panel
   ---------------------------------------------------------- */
.account-reminders-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.account-reminder-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(184, 136, 90, 0.18);
  border-radius: var(--radius, 12px);
  background: #fff;
  transition: box-shadow 0.18s;
}

.account-reminder-item:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.account-reminder-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.account-reminder-info {
  flex: 1;
  min-width: 0;
}

.account-reminder-occasion {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.account-reminder-for {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.account-reminder-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.reminder-form-wrap-account {
  margin-bottom: 1.4rem;
  border: 1px solid rgba(184, 136, 90, 0.22);
  border-radius: var(--radius, 12px);
  background: rgba(253, 248, 242, 0.55);
  padding: 1.2rem 1.4rem;
  animation: panelFadeIn 0.2s ease;
}

.account-reminder-form .reminder-form-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.account-reminder-form .reminder-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  min-width: 140px;
}

.account-reminder-form .reminder-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-reminder-form .reminder-field select,
.account-reminder-form .reminder-field input {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(184, 136, 90, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.account-reminder-form .reminder-field select:focus,
.account-reminder-form .reminder-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 136, 90, 0.12);
}

.reminder-form-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Account Preferences Panel
   ---------------------------------------------------------- */
.account-preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}

.account-pref-card {
  border: 1px solid rgba(184, 136, 90, 0.18);
  border-radius: var(--radius, 12px);
  background: #fff;
  padding: 1.3rem 1.4rem;
}

.account-pref-card-wide {
  grid-column: 1 / -1;
}

.account-pref-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184, 136, 90, 0.12);
}

.account-profile-summary,
.account-address-summary {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.account-profile-row {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.88rem;
}

.account-profile-label {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 64px;
  flex-shrink: 0;
}

.account-pref-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.account-pref-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.account-pref-toggle:hover {
  background: rgba(184, 136, 90, 0.06);
}

.account-pref-toggle input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.account-pref-toggle-label {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.45;
}

/* ----------------------------------------------------------
   Product Modal — Why & Persona panels
   ---------------------------------------------------------- */
.product-options-why,
.product-options-persona {
  margin: 0.9rem 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(184, 136, 90, 0.07);
  border-left: 3px solid rgba(184, 136, 90, 0.35);
}

.modal-why-label,
.modal-persona-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.product-options-why p,
.product-options-persona p {
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* ----------------------------------------------------------
   Recommendation Subsections
   ---------------------------------------------------------- */
.rec-subsection {
  margin-bottom: 1.8rem;
}

.rec-subsection:last-child {
  margin-bottom: 0;
}

.rec-subsection-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.rec-subsection-head h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.rec-subsection-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.22rem 0.6rem;
  border-radius: 99px;
}

.rec-chip-sameday {
  background: rgba(34, 139, 80, 0.1);
  color: #1e6e3f;
}

.rec-chip-luxury {
  background: rgba(148, 102, 40, 0.12);
  color: #7a5020;
}

.rec-chip-addon {
  background: rgba(184, 136, 90, 0.12);
  color: var(--accent);
}

.recommendation-row-grid-sm {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}

/* ----------------------------------------------------------
   Phase 7 Mobile Breakpoints
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .account-hero {
    padding: 2rem 0 1.8rem;
  }

  .account-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .account-hero-actions {
    width: 100%;
  }

  .account-hero-actions .btn {
    flex: 1;
    text-align: center;
  }

  .account-tabs {
    gap: 0;
    margin-bottom: 1.4rem;
  }

  .account-tab {
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
    gap: 0.35rem;
  }

  .account-tab-icon {
    font-size: 0.9rem;
  }

  .account-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .account-panel-head .btn {
    align-self: flex-start;
  }

  .account-recipients-list {
    grid-template-columns: 1fr;
  }

  .account-preferences-grid {
    grid-template-columns: 1fr;
  }

  .account-pref-card-wide {
    grid-column: auto;
  }

  .recipient-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .account-reminder-form .reminder-form-row {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .account-hero-copy h1 {
    font-size: 1.75rem;
  }

  .account-order-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .recipient-form-grid {
    grid-template-columns: 1fr;
  }

  .account-tab span:not(.account-tab-icon) {
    display: none;
  }

  .account-tab {
    padding: 0.6rem 0.75rem;
    flex: 1;
    justify-content: center;
  }

  .recommendation-row-grid-sm {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PHASE 8 — Reminder Banner, Insights Panel, Loading States
   ============================================================ */

/* ----------------------------------------------------------
   Reminder Banner
   ---------------------------------------------------------- */
.reminder-banner {
  background: linear-gradient(90deg, #8b5e3c 0%, #b8885a 100%);
  color: #fff9f5;
  position: relative;
  z-index: 80;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.reminder-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  flex-wrap: wrap;
}

.reminder-banner-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}

.reminder-banner-copy {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.45;
  min-width: 0;
}

.reminder-banner-copy strong {
  font-weight: 700;
}

.reminder-banner-cta {
  display: inline-block;
  padding: 0.38rem 0.95rem;
  background: rgba(255, 249, 245, 0.18);
  border: 1.5px solid rgba(255, 249, 245, 0.45);
  border-radius: 99px;
  color: #fff9f5;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.reminder-banner-cta:hover {
  background: rgba(255, 249, 245, 0.3);
  color: #fff9f5;
}

.reminder-banner-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 249, 245, 0.7);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color 0.12s, background 0.12s;
}

.reminder-banner-close:hover {
  color: #fff9f5;
  background: rgba(255,249,245,0.15);
}

/* Urgency chip inside reminder list */
.reminder-urgency-chip {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  background: rgba(184, 136, 90, 0.14);
  color: var(--accent);
  margin-left: 0.4rem;
  vertical-align: middle;
}

.account-reminder-item.is-soon {
  border-color: rgba(184, 136, 90, 0.38);
  background: rgba(253, 248, 242, 0.55);
}

/* ----------------------------------------------------------
   Account Loading State
   ---------------------------------------------------------- */
.account-loading-note {
  opacity: 0.55;
  font-style: italic;
  animation: accountLoadPulse 1.2s ease-in-out infinite;
}

@keyframes accountLoadPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.7;  }
}

/* ----------------------------------------------------------
   Admin Insights Panel
   ---------------------------------------------------------- */
.owner-insights-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.owner-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.owner-insight-card {
  border: 1px solid rgba(184, 136, 90, 0.18);
  border-radius: var(--radius, 12px);
  background: #fff;
  padding: 1.2rem 1.4rem;
}

.owner-insight-title {
  font-family: var(--font-head, 'Georgia', serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink, #1a1a18);
  margin: 0 0 0.25rem;
}

.owner-insight-sub {
  font-size: 0.78rem;
  color: var(--muted, #8a7f78);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.owner-insight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.owner-insight-empty {
  font-size: 0.82rem;
  color: var(--muted, #8a7f78);
  font-style: italic;
}

.owner-insight-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.owner-insight-rank {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent, #b8885a);
  min-width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.owner-insight-bar-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.owner-insight-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink, #1a1a18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.owner-insight-bar {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent, #b8885a) 0%, rgba(184,136,90,0.35) 100%);
  width: var(--pct, 0%);
  transition: width 0.4s ease;
}

.owner-insight-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted, #8a7f78);
  flex-shrink: 0;
  min-width: 1.8rem;
  text-align: right;
}

/* ----------------------------------------------------------
   Phase 8 Mobile
   ---------------------------------------------------------- */
@media (max-width: 640px) {
  .reminder-banner-inner {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .reminder-banner-copy {
    font-size: 0.82rem;
  }

  .owner-insights-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PHASE 9 — PERSONALIZATION, RECIPIENT JOURNEY, SUBSCRIPTIONS,
              BUNDLE UPSELL, ACCOUNT HOME COMMAND CENTER
   ============================================================ */

/* ── Recipient Journey Overlay ─────────────────────────────── */
.recipient-journey-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(42,35,29,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.recipient-journey-overlay.is-open {
  opacity: 1;
}

.recipient-journey-panel {
  width: min(560px, 96vw);
  background: #fdf8f2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(40px);
  transition: transform 0.28s cubic-bezier(0.33,1,0.68,1);
  box-shadow: -8px 0 40px rgba(42,35,29,0.14);
}
.recipient-journey-overlay.is-open .recipient-journey-panel {
  transform: translateX(0);
}

.recipient-journey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(145deg,#8b5e3c,#b8885a);
  color: #fff9f5;
}
.recipient-journey-header h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0;
  color: #fff9f5;
}
.recipient-journey-close {
  background: rgba(255,249,245,0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: #fff9f5;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.recipient-journey-close:hover {
  background: rgba(255,249,245,0.35);
}

.recipient-journey-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.journey-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.journey-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b5e3c;
  margin: 0;
}
.journey-reminder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.journey-reminder-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #fff3e6;
  color: #7a4e2d;
  border: 1px solid rgba(139,94,60,0.2);
}
.journey-reminder-chip.is-soon {
  background: #fff0e0;
  color: #b85c00;
  border-color: rgba(184,92,0,0.25);
}

/* ── Mini Product Card ─────────────────────────────────────── */
.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
.mini-product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(184,136,90,0.18);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mini-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42,35,29,0.1);
}
.mini-product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #f5efe8;
  overflow: hidden;
}
.mini-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-product-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #8b5e3c;
  color: #fff9f5;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}
.mini-product-info {
  padding: 0.6rem 0.75rem;
}
.mini-product-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a231d;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-product-price {
  font-size: 0.75rem;
  color: #8b5e3c;
  font-weight: 700;
}

/* ── Bundle Upsell Section (cart page) ─────────────────────── */
.bundle-upsell-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg,#fdf8f2,#fff3e6);
  border-radius: 16px;
  border: 1px solid rgba(184,136,90,0.2);
}
.bundle-upsell-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #2a231d;
  margin: 0 0 0.4rem;
}
.bundle-upsell-subtitle {
  font-size: 0.82rem;
  color: #7a6659;
  margin: 0 0 1rem;
}
.bundle-upsell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}
.bundle-upsell-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(184,136,90,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bundle-upsell-item-img {
  aspect-ratio: 4/3;
  background: #f5efe8;
  overflow: hidden;
}
.bundle-upsell-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bundle-upsell-item-body {
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.bundle-upsell-item-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a231d;
  line-height: 1.3;
}
.bundle-upsell-item-price {
  font-size: 0.76rem;
  font-weight: 700;
  color: #8b5e3c;
}
.bundle-upsell-item-add {
  margin-top: auto;
  padding: 0.35rem 0;
  background: none;
  border: 1px solid #8b5e3c;
  border-radius: 999px;
  color: #8b5e3c;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: center;
  width: 100%;
}
.bundle-upsell-item-add:hover {
  background: #8b5e3c;
  color: #fff9f5;
}

/* ── Account Home Tab (Command Center) ─────────────────────── */
.account-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.account-home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.account-stat-card {
  background: #fff;
  border: 1px solid rgba(184,136,90,0.18);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.account-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #8b5e3c;
  line-height: 1;
}
.account-stat-label {
  font-size: 0.75rem;
  color: #9a897c;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-home-callout {
  background: linear-gradient(135deg,#fff3e6,#fdf8f2);
  border: 1px solid rgba(184,136,90,0.22);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}
.account-home-callout-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b85c00;
  margin: 0 0 0.3rem;
}
.account-home-callout-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: #2a231d;
}
.account-home-callout-body {
  font-size: 0.83rem;
  color: #5c4a3d;
  margin: 0 0 0.9rem;
  line-height: 1.6;
}

.account-home-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.account-quick-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(139,94,60,0.3);
  background: #fff;
  color: #8b5e3c;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.account-quick-action:hover {
  background: #8b5e3c;
  color: #fff9f5;
  border-color: #8b5e3c;
}

.account-home-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a897c;
  margin: 0 0 0.65rem;
}

/* ── Account Subscriptions ─────────────────────────────────── */
.subscription-form-wrap {
  background: #fff;
  border: 1px solid rgba(184,136,90,0.2);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.subscription-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}
.subscription-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.subscription-form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #5c4a3d;
  letter-spacing: 0.03em;
}
.subscription-form-field input,
.subscription-form-field select,
.subscription-form-field textarea {
  padding: 0.55rem 0.8rem;
  border: 1.5px solid rgba(184,136,90,0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  background: #fdf8f2;
  color: #2a231d;
  transition: border-color 0.15s;
}
.subscription-form-field input:focus,
.subscription-form-field select:focus,
.subscription-form-field textarea:focus {
  outline: none;
  border-color: #8b5e3c;
}
.subscription-form-field-wide {
  grid-column: 1 / -1;
}
.subscription-form-actions {
  display: flex;
  gap: 0.6rem;
}

.account-subscriptions-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.account-subscription-item {
  background: #fff;
  border: 1.5px solid rgba(184,136,90,0.2);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.account-subscription-item.is-active {
  border-color: rgba(139,94,60,0.35);
}
.account-subscription-item.is-paused {
  opacity: 0.75;
  border-style: dashed;
}
.account-subscription-item.is-cancelled {
  opacity: 0.5;
}
.account-subscription-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.account-subscription-status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.is-active .account-subscription-status-badge {
  background: #e8f5e9;
  color: #2e7d32;
}
.is-paused .account-subscription-status-badge {
  background: #fff3e0;
  color: #e65100;
}
.is-cancelled .account-subscription-status-badge {
  background: #f5f5f5;
  color: #9a897c;
}
.account-subscription-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a231d;
  text-transform: capitalize;
}
.account-subscription-meta {
  font-size: 0.78rem;
  color: #7a6659;
}
.account-subscription-notes {
  font-size: 0.76rem;
  color: #9a897c;
  font-style: italic;
}
.account-subscription-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Order Upgrade Hint ─────────────────────────────────────── */
.account-order-upgrade-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  margin-top: 0.65rem;
  background: linear-gradient(135deg,#fff3e6,#fdf8f2);
  border: 1px solid rgba(184,136,90,0.2);
  border-radius: 10px;
  font-size: 0.8rem;
  color: #5c4a3d;
}
.account-order-upgrade-hint strong {
  color: #8b5e3c;
}
.account-order-upgrade-btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Subscription empty state ──────────────────────────────── */
.subscription-empty-state {
  padding: 1.2rem 0;
}

/* ── Mobile: Phase 9 breakpoints ───────────────────────────── */
@media (max-width: 768px) {
  .recipient-journey-panel {
    width: 100vw;
  }

  .account-home-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .account-stat-number {
    font-size: 1.6rem;
  }

  .subscription-form-grid {
    grid-template-columns: 1fr;
  }

  .account-subscription-item {
    flex-direction: column;
  }
  .account-subscription-actions {
    justify-content: flex-start;
  }

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

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

  .account-order-upgrade-hint {
    flex-wrap: wrap;
  }
  .account-order-upgrade-btn {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .account-home-stats {
    grid-template-columns: 1fr 1fr;
  }
  .account-stat-card:last-child {
    grid-column: 1 / -1;
  }

  .bundle-upsell-grid {
    grid-template-columns: 1fr;
  }

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

  .account-home-quick-actions {
    flex-direction: column;
  }
  .account-quick-action {
    justify-content: center;
  }

  .recipient-journey-header h2 {
    font-size: 1.1rem;
  }
}


/* ============================================================
   PHASE 10 — RECIPIENT-CENTRIC SHOPPING
   Context bar, checkout mode, modal cues, recipient memory
   ============================================================ */

/* ── Recipient Context Bar (all shopping pages) ────────────── */
.recipient-ctx-bar {
  background: linear-gradient(135deg, #f9f0e3 0%, #fdf5eb 100%);
  border-bottom: 1.5px solid rgba(139,94,60,0.18);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
  animation: ctxBarFadeIn 0.3s ease both;
}
@keyframes ctxBarFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.recipient-ctx-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recipient-ctx-petal {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.recipient-ctx-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.recipient-ctx-headline {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a231d;
  font-family: var(--font-head);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-ctx-sub {
  font-size: 0.73rem;
  color: #7a6659;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-ctx-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.recipient-ctx-change {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8b5e3c;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border: 1.5px solid rgba(139,94,60,0.35);
  border-radius: 999px;
  background: #fff;
  transition: background 0.15s, color 0.15s;
}
.recipient-ctx-change:hover {
  background: #8b5e3c;
  color: #fff9f5;
  border-color: #8b5e3c;
}

.recipient-ctx-clear {
  background: none;
  border: none;
  color: #9a897c;
  cursor: pointer;
  font-size: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.recipient-ctx-clear:hover {
  background: rgba(139,94,60,0.1);
  color: #5c4a3d;
}

/* ── Checkout Recipient Bar ────────────────────────────────── */
.checkout-recipient-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fdf8f2, #fff3e6);
  border: 1.5px solid rgba(184,136,90,0.25);
  border-radius: 12px;
  margin: 0.75rem 0 1.25rem;
  animation: ctxBarFadeIn 0.3s ease both;
}

.checkout-recipient-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.checkout-recipient-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.checkout-recipient-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2a231d;
  font-family: var(--font-head);
}

.checkout-recipient-occasion,
.checkout-recipient-address {
  font-size: 0.76rem;
  color: #7a6659;
}

.checkout-recipient-actions {
  flex-shrink: 0;
}

/* ── Product Modal Recipient Cue ───────────────────────────── */
.recipient-modal-cue {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(135deg, #fdf8f2, #fff3e6);
  border: 1.5px solid rgba(184,136,90,0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: #5c4a3d;
  line-height: 1.5;
  font-style: italic;
  animation: ctxBarFadeIn 0.25s ease both;
}

.recipient-modal-cue-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ── Recipient Memory (account card stats) ─────────────────── */
.account-recipient-memory {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.3rem;
  font-size: 0.73rem;
  color: #9a897c;
  font-style: italic;
}

.account-recipient-memory span {
  display: inline;
}

.mem-dot {
  color: #c4b09a;
  padding: 0 0.15rem;
}

/* ── Recipient Card Actions (expanded) ─────────────────────── */
.account-recipient-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.6rem;
}

.account-recipient-item {
  background: #fff;
  border: 1.5px solid rgba(184,136,90,0.18);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.account-recipient-item:hover {
  border-color: rgba(139,94,60,0.3);
  box-shadow: 0 3px 12px rgba(42,35,29,0.06);
}

/* ── Reminder Actions (expanded layout) ────────────────────── */
.account-reminder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.5rem;
}

.account-reminder-item {
  background: #fff;
  border: 1.5px solid rgba(184,136,90,0.18);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.2s;
}
.account-reminder-item.is-soon {
  border-color: rgba(184,92,0,0.3);
  background: linear-gradient(135deg, #fffaf4, #fff7ed);
}

/* ── Reorder Section Enhancements ──────────────────────────── */
.reorder-section-sub {
  font-size: 0.82rem;
  color: #7a6659;
  margin: 0.2rem 0 0;
  font-style: italic;
}

.reorder-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(184,136,90,0.12);
}
.reorder-item:first-child {
  border-top: none;
}

.reorder-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Admin Recipient Insight Panels ────────────────────────── */
.owner-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

/* ── Mobile: Phase 10 ──────────────────────────────────────── */
@media (max-width: 768px) {
  .recipient-ctx-bar {
    position: relative; /* don't sticky on mobile — avoids layout conflicts */
  }

  .recipient-ctx-headline {
    font-size: 0.82rem;
  }

  .checkout-recipient-bar {
    flex-wrap: wrap;
  }

  .account-recipient-actions {
    gap: 0.3rem;
  }
  .account-recipient-actions .btn {
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
  }

  .reorder-item {
    flex-direction: column;
    gap: 0.6rem;
  }
  .reorder-item-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .recipient-ctx-bar-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .recipient-ctx-actions {
    margin-left: auto;
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   PHASE 10 / 11 — TIMELINE · CORPORATE · REFERRAL · LOYALTY
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Loyalty Tier Badge ─────────────────────────────────────────────────── */
.loyalty-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid currentColor;
  margin-top: 0.5rem;
}
.loyalty-tier-badge.tier-classic  { color: #9a897c; border-color: rgba(154,137,124,0.35); background: rgba(154,137,124,0.07); }
.loyalty-tier-badge.tier-premium  { color: #8b5e3c; border-color: rgba(139,94,60,0.35);  background: rgba(139,94,60,0.07);  }
.loyalty-tier-badge.tier-elite    { color: #7a4e2d; border-color: rgba(122,78,45,0.35);  background: rgba(122,78,45,0.10);  }
.loyalty-tier-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.3rem 0 0;
  font-style: italic;
}
.account-profile-loyalty {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(184,136,90,0.15);
}
.account-profile-loyalty-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* ── Recipient Timeline Panel ───────────────────────────────────────────── */
#accountTimelineContent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline-loading,
.timeline-empty {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 2rem 0;
}
.timeline-recipient-block {
  background: #fff;
  border: 1.5px solid rgba(184,136,90,0.18);
  border-radius: 16px;
  overflow: hidden;
}
.timeline-recipient-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(184,136,90,0.12);
  flex-wrap: wrap;
}
.timeline-recipient-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c4996b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.timeline-recipient-name {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-primary);
}
.timeline-recipient-ltv {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
}
.timeline-recipient-ltv strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.timeline-recipient-stats {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(184,136,90,0.10);
}
.tl-stat {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  border-right: 1px solid rgba(184,136,90,0.10);
}
.tl-stat:last-child { border-right: none; }
.tl-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}
.timeline-entries {
  padding: 0.9rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-entry {
  display: flex;
  gap: 0.85rem;
  position: relative;
  padding-bottom: 1rem;
}
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-entry:last-child .timeline-entry-line { display: none; }
.timeline-entry-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}
.timeline-entry-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(184,136,90,0.3);
  flex-shrink: 0;
  margin-top: 3px;
}
.timeline-entry-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(184,136,90,0.3), rgba(184,136,90,0.05));
  margin-top: 4px;
}
.timeline-entry-card {
  flex: 1;
  background: rgba(250,245,238,0.5);
  border: 1px solid rgba(184,136,90,0.12);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
}
.timeline-entry-date {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.timeline-entry-product {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.timeline-entry-occasion {
  font-size: 0.75rem;
  color: var(--accent-dark, #8b5e3c);
  font-style: italic;
}
.timeline-entry-amount {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── Corporate Gifting Panel ────────────────────────────────────────────── */
.corporate-panel-intro {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.corporate-form-wrap {
  background: linear-gradient(135deg, #fdfaf6, #faf5ef);
  border: 1.5px solid rgba(184,136,90,0.2);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.5rem;
}
.corporate-form-wrap h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1rem;
}
.corporate-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.corporate-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
}
.corporate-form-grid input,
.corporate-form-grid select {
  padding: 0.5rem 0.7rem;
  border: 1.5px solid rgba(184,136,90,0.25);
  border-radius: 8px;
  font-size: 0.87rem;
  font-family: inherit;
  background: #fff;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.corporate-form-grid input:focus,
.corporate-form-grid select:focus {
  border-color: var(--accent);
}
.corporate-tag-group {
  grid-column: 1 / -1;
}
.corporate-tag-group .tag-label {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
}
.corporate-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.corporate-tag {
  padding: 0.28rem 0.7rem;
  border-radius: 14px;
  border: 1.5px solid rgba(184,136,90,0.25);
  background: #fff;
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.18s;
  user-select: none;
}
.corporate-tag.is-selected,
.corporate-tag:hover {
  background: rgba(184,136,90,0.1);
  border-color: var(--accent);
  color: var(--accent-dark, #8b5e3c);
}
.corporate-form-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  justify-content: flex-end;
}
.corporate-contacts-section h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--text-primary);
}
.corporate-contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}
.corporate-contact-card {
  background: #fff;
  border: 1.5px solid rgba(184,136,90,0.15);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.corporate-contact-card:hover {
  border-color: rgba(184,136,90,0.35);
  box-shadow: 0 2px 10px rgba(184,136,90,0.08);
}
.corporate-contact-card.is-selected {
  border-color: var(--accent);
  background: rgba(184,136,90,0.04);
}
.corporate-contact-checkbox {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}
.corporate-contact-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  padding-right: 1.8rem;
}
.corporate-contact-company {
  font-size: 0.78rem;
  color: var(--muted);
}
.corporate-contact-budget {
  font-size: 0.78rem;
  color: var(--accent-dark, #8b5e3c);
  font-weight: 500;
  margin-top: 0.1rem;
}
.corporate-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
.corporate-contact-tag-chip {
  background: rgba(184,136,90,0.08);
  border-radius: 10px;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  color: var(--accent-dark, #8b5e3c);
}
.corporate-contact-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.corporate-bulk-bar {
  position: sticky;
  bottom: 1rem;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: #fff;
  border-radius: 14px;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  z-index: 80;
  margin-top: 1rem;
}
.corporate-bulk-bar .bulk-count {
  font-weight: 700;
  font-size: 0.92rem;
}
.corporate-bulk-bar .bulk-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  flex-wrap: wrap;
}

/* ── Referral / Invite Panel ────────────────────────────────────────────── */
.referral-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.referral-hero {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
.referral-hero-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.referral-hero h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.4rem;
}
.referral-hero p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.55;
}
.referral-link-block {
  background: linear-gradient(135deg, #fdfaf6, #faf5ef);
  border: 1.5px solid rgba(184,136,90,0.2);
  border-radius: 14px;
  padding: 1.2rem 1.35rem;
}
.referral-link-block h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.referral-link-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.referral-link-input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid rgba(184,136,90,0.25);
  border-radius: 9px;
  font-size: 0.87rem;
  background: #fff;
  color: var(--text-primary);
  font-family: inherit;
  min-width: 0;
}
.referral-link-input:focus { outline: none; border-color: var(--accent); }
.referral-code-display {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.referral-code-display strong {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}
.referral-share-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.referral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.referral-stat {
  background: #fff;
  border: 1.5px solid rgba(184,136,90,0.15);
  border-radius: 12px;
  padding: 0.9rem 0.75rem;
  text-align: center;
}
.referral-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.referral-stat-label {
  font-size: 0.73rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.referral-how-it-works {
  background: rgba(250,245,238,0.6);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.referral-how-it-works h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}
.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.referral-step {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: var(--text-primary);
}
.referral-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Subscription Intelligence (skip / reschedule) ──────────────────────── */
.sub-intel-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.sub-skip-info {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.25rem;
}
.sub-reschedule-input {
  padding: 0.3rem 0.6rem;
  border: 1.5px solid rgba(184,136,90,0.25);
  border-radius: 7px;
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
}
.sub-reschedule-input:focus { outline: none; border-color: var(--accent); }

/* ── Mobile Breakpoints: Phase 10/11 ────────────────────────────────────── */
@media (max-width: 640px) {
  .corporate-form-grid {
    grid-template-columns: 1fr;
  }
  .corporate-contacts-grid {
    grid-template-columns: 1fr;
  }
  .referral-stats {
    grid-template-columns: 1fr 1fr;
  }
  .corporate-bulk-bar .bulk-actions {
    margin-left: 0;
    width: 100%;
  }
  .timeline-recipient-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .tl-stat {
    border-right: 1px solid rgba(184,136,90,0.10);
    border-bottom: 1px solid rgba(184,136,90,0.10);
  }
  .tl-stat:nth-child(even) { border-right: none; }
  .referral-link-row {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .referral-stats {
    grid-template-columns: 1fr;
  }
  .referral-share-row .btn {
    flex: 1;
  }
}



/* ── Admin Insight Panel Extensions (Phase 10/11) ──────────────────────── */
.owner-insight-card--wide {
  grid-column: 1 / -1;
}
.owner-kpi-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.owner-kpi-card {
  flex: 1;
  min-width: 120px;
  background: linear-gradient(135deg, #fdfaf6, #faf5ef);
  border: 1.5px solid rgba(184,136,90,0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: center;
}
.owner-kpi-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary, #2c1a0e);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.owner-kpi-label {
  font-size: 0.73rem;
  color: #7a6659;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.owner-insight-subhead {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a6659;
  margin: 0.75rem 0 0.4rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .owner-kpi-row {
    flex-direction: column;
  }
}



/* ══════════════════════════════════════════════════════════════════════
   PHASE 12 — PRODUCTION HARDENING: PERFORMANCE + TRUST + MOBILE
   ══════════════════════════════════════════════════════════════════════ */

/* ── Performance: content-visibility for off-screen heavy sections ──── */
.catalog-section,
.product-grid,
.owner-insights-grid,
.account-panel,
#reorderSection,
#bundleUpsellSection {
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
/* Exclude above-fold sections from containment */
.site-header,
.home-hero,
#recipientContextBar {
  content-visibility: visible;
}

/* ── Lazy image fade-in ─────────────────────────────────────────────── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}
img[loading="lazy"].is-loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ── Trust cues: delivery + handcrafted badges ──────────────────────── */
.trust-badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.65rem 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #6d655d;
  font-weight: 500;
}
.trust-badge-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ── Checkout contact fallback panel ────────────────────────────────── */
.checkout-fallback-panel {
  background: linear-gradient(135deg, #fdfaf6, #faf5ef);
  border: 1.5px solid rgba(184,136,90,0.22);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  text-align: center;
}
.checkout-fallback-panel h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}
.checkout-fallback-panel p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.checkout-fallback-contacts {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.checkout-fallback-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(184,136,90,0.3);
  background: #fff;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.checkout-fallback-contact-link:hover {
  border-color: var(--accent);
  background: rgba(184,136,90,0.06);
}

/* ── Empty state premium placeholders ──────────────────────────────── */
.empty-state-premium {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1.5px dashed rgba(184,136,90,0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, #fdfaf6, #faf5ef);
}
.empty-state-premium .empty-state-icon {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  display: block;
}
.empty-state-premium h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.4rem;
}
.empty-state-premium p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

/* ── Form: better focus ring + disabled state ───────────────────────── */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Loading skeleton animation ─────────────────────────────────────── */
@keyframes _fb_skeleton_pulse {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}
.skeleton-pulse {
  animation: _fb_skeleton_pulse 1.4s ease-in-out infinite;
  background: linear-gradient(90deg, #f0ebe4, #e6dfd6, #f0ebe4);
  border-radius: 8px;
}

/* ── Mobile: final pass ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Prevent horizontal overflow on collection pages */
  .product-grid,
  .catalog-section-grid {
    overflow-x: hidden;
  }

  /* Checkout form stacking */
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  /* Cart totals full-width on mobile */
  .cart-totals {
    width: 100%;
  }

  /* Account tabs scroll horizontally on small screens */
  .account-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 0;
  }
  .account-tabs::-webkit-scrollbar { display: none; }
  .account-tab {
    flex-shrink: 0;
  }

  /* Modal: full-screen on mobile */
  .product-modal-overlay .modal-inner {
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* WhatsApp button: smaller on mobile to avoid covering nav */
  .whatsapp-float {
    bottom: 70px;
    right: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
  }

  /* Recipient context bar: don't overflow */
  .recipient-ctx-bar-inner {
    max-width: 100vw;
    overflow: hidden;
  }

  /* Trust badges wrap cleanly */
  .trust-badge-row {
    gap: 0.6rem;
  }
}

@media (max-width: 400px) {
  /* Very small screens: single-column everything */
  .account-recipient-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .account-recipient-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ── Print: hide chrome ─────────────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  #recipientContextBar,
  .cart-badge,
  nav,
  .btn,
  .account-tabs {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}



/* ==========================================================================
   FLORABELLA ADMIN PANEL — Phase 13
   Shell, sidebar, topbar, sections, tables, drawers, KPI cards
   ========================================================================== */

/* --- Reset / Shell --- */
.fadmin-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #f4f3f0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #1a1714;
}

/* --- Auth Overlay --- */
.fadmin-auth-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #0d2f4a 0%, #1a5276 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  margin: 0;
  border: none;
}

.fadmin-auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.fadmin-auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.fadmin-auth-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #10395a, #285f8f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  flex-shrink: 0;
}

.fadmin-auth-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #10395a;
  letter-spacing: -0.02em;
}

.fadmin-auth-card h1 {
  font-size: 24px;
  font-weight: 700;
  color: #10395a;
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.fadmin-auth-card p {
  color: #6d7b87;
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.fadmin-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.fadmin-auth-field label {
  font-size: 13px;
  font-weight: 600;
  color: #3a4a56;
}

.fadmin-auth-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d4dce4;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1714;
  background: #f9fbfc;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.fadmin-auth-field input:focus {
  outline: none;
  border-color: #285f8f;
  background: #fff;
}

.fadmin-auth-status {
  font-size: 13px;
  color: #c0392b;
  min-height: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.fadmin-auth-status:empty {
  display: none;
}

/* --- Sidebar --- */
.fadmin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #0f2d44;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.25s ease;
  z-index: 200;
}

.fadmin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.fadmin-sidebar-logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #2d7dbf, #1a5990);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  flex-shrink: 0;
}

.fadmin-sidebar-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #e8f4ff;
  letter-spacing: -0.01em;
}

.fadmin-sidebar-logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

/* --- Nav --- */
.fadmin-nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fadmin-nav-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 14px 10px 6px;
}

.fadmin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s, color 0.12s;
  position: relative;
}

.fadmin-nav-item:hover {
  background: rgba(255,255,255,0.08);
  color: #e8f4ff;
}

.fadmin-nav-item.is-active {
  background: rgba(45,125,191,0.22);
  color: #7ec8f4;
  font-weight: 600;
}

.fadmin-nav-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: #5ab4e8;
  border-radius: 0 2px 2px 0;
}

.fadmin-nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.85;
  flex-shrink: 0;
}

.fadmin-nav-badge {
  margin-left: auto;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  padding: 1px 6px;
  min-width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.fadmin-nav-badge--yellow {
  background: #f39c12;
}

/* --- Sidebar Footer --- */
.fadmin-sidebar-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.fadmin-sidebar-session {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  word-break: break-all;
  line-height: 1.4;
}

.fadmin-sidebar-session strong {
  color: rgba(255,255,255,0.7);
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

/* --- Content Wrap --- */
.fadmin-content-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* --- Top Bar --- */
.fadmin-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 24px;
  background: #fff;
  border-bottom: 1px solid #e8e3dc;
  flex-shrink: 0;
  z-index: 100;
}

.fadmin-mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #4a3f36;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.fadmin-topbar-title {
  flex-shrink: 0;
}

.fadmin-topbar-title h1 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1714;
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.fadmin-topbar-title .fadmin-breadcrumb {
  font-size: 11px;
  color: #9e9085;
  margin-top: 1px;
}

.fadmin-topbar-search {
  flex: 1;
  max-width: 360px;
  margin: 0 auto;
}

.fadmin-topbar-search input {
  width: 100%;
  padding: 8px 14px;
  border: 1.5px solid #e2dcd5;
  border-radius: 20px;
  font-size: 13.5px;
  color: #3a3028;
  background: #faf8f5;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.fadmin-topbar-search input:focus {
  outline: none;
  border-color: #285f8f;
  background: #fff;
}

.fadmin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.fadmin-topbar-icon-btn {
  position: relative;
  background: transparent;
  border: 1.5px solid #e2dcd5;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 15px;
  color: #6d5e52;
  display: flex;
  align-items: center;
  transition: background 0.12s;
}

.fadmin-topbar-icon-btn:hover {
  background: #f4f1ec;
}

.fadmin-topbar-icon-btn .fadmin-nav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 9px;
  padding: 0 4px;
  margin: 0;
}

/* --- Owner Avatar Menu --- */
.fadmin-owner-menu {
  position: relative;
}

.fadmin-owner-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10395a, #285f8f);
  border: none;
  color: #e8f4ff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  transition: opacity 0.15s;
}

.fadmin-owner-avatar:hover {
  opacity: 0.85;
}

.fadmin-owner-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e2dcd5;
  border-radius: 12px;
  padding: 10px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 500;
}

.fadmin-owner-email {
  font-size: 12px;
  color: #7a6e65;
  padding: 4px 8px 10px;
  border-bottom: 1px solid #f0ebe4;
  margin-bottom: 8px;
  word-break: break-all;
}

/* --- Main Content --- */
.fadmin-main {
  flex: 1;
  overflow-y: auto;
  padding: 28px 28px 48px;
}

/* --- Sections --- */
.fadmin-section {
  display: none;
}

.fadmin-section.is-active {
  display: block;
}

.fadmin-section-header {
  margin-bottom: 24px;
}

.fadmin-section-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1714;
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.01em;
}

.fadmin-section-header p {
  font-size: 14px;
  color: #7a6e65;
  margin: 0;
  line-height: 1.5;
}

.fadmin-section-meta {
  font-size: 13px;
  color: #9e9085;
  margin-bottom: 20px;
}

/* --- KPI Grid --- */
.fadmin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.fadmin-kpi-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #ede8e1;
  transition: box-shadow 0.2s;
}

.fadmin-kpi-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.fadmin-kpi-label {
  font-size: 12px;
  font-weight: 600;
  color: #9e9085;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.fadmin-kpi-value {
  font-size: 30px;
  font-weight: 800;
  color: #10395a;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  font-family: 'Manrope', system-ui, sans-serif;
}

.fadmin-kpi-value--currency::before {
  content: '$';
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.fadmin-kpi-trend {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fadmin-kpi-trend--up   { color: #27ae60; }
.fadmin-kpi-trend--down { color: #e74c3c; }
.fadmin-kpi-trend--flat { color: #95a5a6; }

.fadmin-kpi-card--accent {
  background: linear-gradient(135deg, #10395a, #1a5276);
  border-color: transparent;
  color: #fff;
}

.fadmin-kpi-card--accent .fadmin-kpi-label {
  color: rgba(255,255,255,0.65);
}

.fadmin-kpi-card--accent .fadmin-kpi-value {
  color: #fff;
}

/* --- Secondary stats row --- */
.fadmin-stat-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.fadmin-stat-pill {
  background: #fff;
  border: 1px solid #ede8e1;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: #4a3f36;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fadmin-stat-pill strong {
  color: #10395a;
  font-weight: 700;
}

/* --- Panels (cards) --- */
.fadmin-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ede8e1;
  margin-bottom: 20px;
  overflow: hidden;
}

.fadmin-panel-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0ebe4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fadmin-panel-head h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1714;
  margin: 0;
}

.fadmin-panel-head p {
  font-size: 12.5px;
  color: #9e9085;
  margin: 2px 0 0;
}

.fadmin-panel-body {
  padding: 16px 20px;
}

/* --- Filter Bar --- */
.fadmin-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ede8e1;
}

.fadmin-filter-bar input,
.fadmin-filter-bar select {
  padding: 8px 12px;
  border: 1.5px solid #e0dbd4;
  border-radius: 8px;
  font-size: 13.5px;
  color: #3a3028;
  background: #faf8f5;
  font-family: inherit;
  transition: border-color 0.15s;
}

.fadmin-filter-bar input:focus,
.fadmin-filter-bar select:focus {
  outline: none;
  border-color: #285f8f;
  background: #fff;
}

.fadmin-filter-bar input[type="search"],
.fadmin-filter-search {
  flex: 1;
  min-width: 160px;
}

.fadmin-filter-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

/* --- Tables --- */
.fadmin-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #ede8e1;
  background: #fff;
}

.fadmin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.fadmin-table th {
  text-align: left;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6e65;
  background: #faf8f5;
  border-bottom: 1px solid #ede8e1;
  white-space: nowrap;
}

.fadmin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f4f1ec;
  color: #2a2318;
  vertical-align: middle;
}

.fadmin-table tr:last-child td {
  border-bottom: none;
}

.fadmin-table tbody tr {
  cursor: pointer;
  transition: background 0.1s;
}

.fadmin-table tbody tr:hover {
  background: #f9f7f4;
}

.fadmin-table-empty {
  text-align: center;
  color: #9e9085;
  padding: 40px 16px !important;
  cursor: default !important;
}

.fadmin-table-loading {
  text-align: center;
  color: #b0a89e;
  padding: 32px 16px;
  font-size: 13px;
}

/* --- Order Status Badges --- */
.fadmin-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: capitalize;
}

.fadmin-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
  opacity: 0.7;
}

.fadmin-status--paid,
.fadmin-status--completed {
  background: #e8f8ef;
  color: #1d7a3e;
}

.fadmin-status--pending,
.fadmin-status--processing {
  background: #fff8e6;
  color: #b07d10;
}

.fadmin-status--cancelled,
.fadmin-status--refunded {
  background: #fef0ef;
  color: #c0392b;
}

.fadmin-status--default {
  background: #f0ece8;
  color: #7a6e65;
}

/* --- Buttons --- */
.fadmin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s;
  white-space: nowrap;
}

.fadmin-btn--primary {
  background: #10395a;
  color: #fff;
}

.fadmin-btn--primary:hover {
  background: #1a5276;
}

.fadmin-btn--ghost {
  background: transparent;
  color: #4a3f36;
  border: 1.5px solid #d8d2ca;
}

.fadmin-btn--ghost:hover {
  background: #f4f1ec;
}

.fadmin-btn--danger {
  background: #c0392b;
  color: #fff;
}

.fadmin-btn--danger:hover {
  background: #a93226;
}

.fadmin-btn--sm {
  padding: 6px 13px;
  font-size: 12.5px;
}

.fadmin-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* --- Action Row --- */
.fadmin-action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

/* --- Pagination --- */
.fadmin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid #f0ebe4;
}

.fadmin-pagination-info {
  font-size: 13px;
  color: #9e9085;
  flex: 1;
}

/* --- Side Drawer --- */
.fadmin-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  max-width: 95vw;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #e2dcd5;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  z-index: 800;
  display: flex;
  flex-direction: column;
  transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fadmin-drawer.is-open {
  right: 0;
}

.fadmin-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #ede8e1;
  flex-shrink: 0;
}

.fadmin-drawer-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1714;
  margin: 0;
}

.fadmin-drawer-header .fadmin-drawer-sub {
  font-size: 12px;
  color: #9e9085;
  margin-top: 2px;
}

.fadmin-drawer-close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #7a6e65;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.1s;
}

.fadmin-drawer-close:hover {
  background: #f4f1ec;
}

.fadmin-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
}

.fadmin-drawer-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
}

.fadmin-drawer-row dt {
  width: 120px;
  flex-shrink: 0;
  font-weight: 600;
  color: #7a6e65;
  font-size: 12.5px;
  padding-top: 2px;
}

.fadmin-drawer-row dd {
  flex: 1;
  color: #1a1714;
  margin: 0;
  word-break: break-word;
}

.fadmin-drawer-section {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a89e;
  margin: 18px 0 10px;
  padding-top: 14px;
  border-top: 1px solid #f0ebe4;
}

.fadmin-drawer-section:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.fadmin-drawer-footer {
  padding: 16px 22px;
  border-top: 1px solid #ede8e1;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.fadmin-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 790;
  display: none;
}

.fadmin-drawer.is-open ~ .fadmin-drawer-overlay,
.fadmin-drawer-overlay.is-active {
  display: block;
}

/* --- Orders line items --- */
.fadmin-order-items {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}

.fadmin-order-items th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9e9085;
  padding: 6px 0;
  border-bottom: 1px solid #f0ebe4;
}

.fadmin-order-items td {
  padding: 9px 0;
  border-bottom: 1px solid #f9f5f0;
  vertical-align: top;
}

.fadmin-order-items tr:last-child td {
  border-bottom: none;
}

.fadmin-order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1.5px solid #e8e3dc;
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}

/* --- Quick Actions --- */
.fadmin-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.fadmin-quick-action-card {
  background: #f9f7f4;
  border: 1.5px solid #ede8e1;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
}

.fadmin-quick-action-card:hover {
  border-color: #285f8f;
  background: #f0f6fc;
}

.fadmin-quick-action-card .fadmin-qac-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

.fadmin-quick-action-card .fadmin-qac-label {
  font-size: 13px;
  font-weight: 600;
  color: #2a2318;
  display: block;
}

/* --- Health Cards --- */
.fadmin-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.fadmin-health-card {
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid transparent;
}

.fadmin-health-card--ok {
  background: #eef9f2;
  border-color: #b7e4c7;
}

.fadmin-health-card--warn {
  background: #fffbec;
  border-color: #f9e4a0;
}

.fadmin-health-card--error {
  background: #fef3f2;
  border-color: #f5c6c2;
}

.fadmin-health-card .fadmin-health-value {
  font-size: 24px;
  font-weight: 800;
  color: #1a1714;
  display: block;
  margin-bottom: 4px;
}

.fadmin-health-card .fadmin-health-label {
  font-size: 12px;
  color: #6d7b87;
  font-weight: 500;
}

/* --- Pending Orders Panel --- */
.fadmin-pending-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fadmin-pending-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f0ebe4;
  gap: 12px;
  cursor: pointer;
  transition: background 0.1s;
}

.fadmin-pending-item:last-child {
  border-bottom: none;
}

.fadmin-pending-item:hover {
  background: #faf8f5;
  margin: 0 -20px;
  padding: 11px 20px;
}

.fadmin-pending-id {
  font-size: 13px;
  font-weight: 700;
  color: #10395a;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fadmin-pending-email {
  font-size: 12px;
  color: #9e9085;
  margin-top: 2px;
}

.fadmin-pending-amount {
  font-size: 14px;
  font-weight: 700;
  color: #1a1714;
  flex-shrink: 0;
}

/* --- Empty State --- */
.fadmin-empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #b0a89e;
}

.fadmin-empty-state p {
  font-size: 15px;
  margin: 0 0 16px;
}

/* --- Form grid (reused for settings) --- */
.fadmin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.fadmin-form-grid label,
.fadmin-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #4a3f36;
}

.fadmin-form-grid label span,
.fadmin-form-label span {
  font-size: 12.5px;
  font-weight: 600;
  color: #7a6e65;
}

.fadmin-form-grid input,
.fadmin-form-grid textarea,
.fadmin-form-grid select,
.fadmin-form-input {
  padding: 9px 12px;
  border: 1.5px solid #dcd7d0;
  border-radius: 8px;
  font-size: 14px;
  color: #2a2318;
  background: #faf8f5;
  font-family: inherit;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.fadmin-form-grid input:focus,
.fadmin-form-grid textarea:focus,
.fadmin-form-grid select:focus,
.fadmin-form-input:focus {
  outline: none;
  border-color: #285f8f;
  background: #fff;
}

.fadmin-form-grid .fadmin-form-span-2 {
  grid-column: span 2;
}

.fadmin-form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #3a3028;
}

.fadmin-form-section-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9e9085;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0ebe4;
}

/* --- Status / Alert messages --- */
.fadmin-status-msg {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
}

.fadmin-status-msg--info    { background: #eef6fd; color: #1a5276; }
.fadmin-status-msg--success { background: #eef9f2; color: #1d7a3e; }
.fadmin-status-msg--error   { background: #fef3f2; color: #c0392b; }
.fadmin-status-msg--warn    { background: #fffbec; color: #9a6600; }

/* --- Mobile overlay (sidebar) --- */
.fadmin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 190;
}

/* --- Skeleton pulse --- */
.fadmin-skeleton {
  background: linear-gradient(90deg, #f0ece6 25%, #e8e3dc 50%, #f0ece6 75%);
  background-size: 200% 100%;
  animation: fadmin-pulse 1.4s ease-in-out infinite;
  border-radius: 6px;
  height: 1em;
}

@keyframes fadmin-pulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Products section specific --- */
.fadmin-category-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fadmin-category-nav select {
  padding: 8px 12px;
  border: 1.5px solid #e0dbd4;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  background: #faf8f5;
}

/* --- Insights grid (reuse owner-insights style in admin context) --- */
.fadmin-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.fadmin-insight-card {
  background: #fff;
  border: 1px solid #ede8e1;
  border-radius: 14px;
  padding: 18px 20px;
}

.fadmin-insight-card--wide {
  grid-column: span 2;
}

.fadmin-insight-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1714;
  margin: 0 0 4px;
}

.fadmin-insight-card p {
  font-size: 12.5px;
  color: #9e9085;
  margin: 0 0 12px;
}

/* --- Responsive / Mobile --- */
@media (max-width: 880px) {
  .fadmin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    z-index: 200;
  }

  .fadmin-sidebar.is-open {
    transform: translateX(0);
  }

  .fadmin-sidebar-overlay {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }

  .fadmin-sidebar-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .fadmin-mobile-menu-btn {
    display: flex;
  }

  .fadmin-topbar-search {
    display: none;
  }

  .fadmin-main {
    padding: 16px 16px 40px;
  }

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

  .fadmin-drawer {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }

  .fadmin-insight-card--wide {
    grid-column: span 1;
  }

  .fadmin-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .fadmin-filter-actions {
    margin-left: 0;
  }

  .fadmin-form-grid .fadmin-form-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .fadmin-kpi-grid {
    grid-template-columns: 1fr;
  }

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

  .fadmin-topbar {
    padding: 0 14px;
    gap: 8px;
  }

  .fadmin-topbar-title h1 {
    font-size: 15px;
  }
}



/* ==========================================================================
   FLORABELLA PREMIUM DESIGN SYSTEM — v2 (Apple x Aesop x Florabella)
   Full override: typography, cards, grid, toolbar, modal, cart, checkout
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --fb-bg:          #f7f3f0;
  --fb-surface:     #fffdfa;
  --fb-surface-2:   #f2ece8;
  --fb-text:        #241c19;
  --fb-text-soft:   rgba(36,28,25,0.68);
  --fb-text-muted:  rgba(70,52,47,0.45);
  --fb-line:        rgba(57,42,37,0.08);
  --fb-accent:      #b7747d;
  --fb-accent-soft: #f4dde1;
  --fb-success:     #789a7a;
  --fb-success-soft:#e5f0e5;
  --fb-warm:        #c89c6d;
  --fb-warm-soft:   #f4e7d8;
  --fb-shadow-card: 0 10px 30px rgba(38,28,24,0.06);
  --fb-shadow-hover:0 16px 40px rgba(38,28,24,0.10);
  --fb-shadow-panel:0 20px 60px rgba(28,20,17,0.08);
  --fb-ease:        cubic-bezier(0.22,1,0.36,1);
  --fb-font-ui:     Inter, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  --fb-font-serif:  "Cormorant Garamond", Georgia, serif;
}

/* --- Price typography (everywhere) --- */
.price,
.price-row .price,
.summary-row strong,
.summary-row .total strong,
.cart-line-price,
.checkout-line-price,
#cartSubtotal, #cartDeliveryFee, #cartTax, #cartTotal,
#checkoutSubtotal, #checkoutDeliveryFee, #checkoutTax, #checkoutTotal,
#productOptionsBasePrice, #productOptionsTotal {
  font-family: var(--fb-font-ui) !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #201917;
}

/* --- Global font fallback for UI elements --- */
input, select, textarea, button,
.filter-bar input, .filter-bar select,
.btn, .explorer-chip, .kicker,
.product-tag, .product-body p,
.summary-card, .form-card {
  font-family: var(--fb-font-ui);
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.luxury-product-grid,
#allFlowersGrid.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .luxury-product-grid, #allFlowersGrid.product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .luxury-product-grid, #allFlowersGrid.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .luxury-product-grid, #allFlowersGrid.product-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */
.product-card {
  border-radius: 22px !important;
  background: var(--fb-surface) !important;
  border: 1px solid var(--fb-line) !important;
  padding: 10px !important;
  box-shadow: var(--fb-shadow-card) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  transition: transform 0.22s var(--fb-ease), box-shadow 0.22s var(--fb-ease) !important;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--fb-shadow-hover) !important;
}

/* Image stage — taller, editorial */
.product-card .product-image-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px !important;
  overflow: hidden;
  background: var(--fb-surface-2);
  flex-shrink: 0;
}

.product-card .product-image-stage img,
.product-card .product-image-stage [data-product-image] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px !important;
  display: block;
  transition: transform 0.38s var(--fb-ease);
}

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

/* Badges — overlay on image */
.product-card .product-card-badges {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  z-index: 2;
}

/* Product body */
.product-card .product-body {
  padding: 2px 4px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  flex: 1;
}

/* Category label */
.product-card .product-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--fb-text-muted) !important;
  display: block;
}

/* Title — serif, restrained */
.product-card .product-body h3 {
  font-family: var(--fb-font-serif) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  color: var(--fb-text) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 !important;
}

/* Description */
.product-card .product-body > p {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--fb-text-soft) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 !important;
}

/* Curated tag — minimal, below description */
.product-card .curated-collection-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--fb-accent) !important;
  opacity: 0.85;
}

/* Price row */
.product-card .price-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: auto !important;
  padding-top: 6px !important;
}

.product-card .price {
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* Card CTA button */
.product-card .btn-sm,
.product-card .price-row .btn {
  height: 40px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}

/* ==========================================================================
   BADGES (pill style, small, restrained)
   ========================================================================== */
.badge-featured,
.badge-same-day,
.badge-seasonal,
.product-occasion-chip,
.curated-collection-tag,
.tag-same-day-edit,
.tag-signature,
.tag-florists-pick,
.tag-seasonal,
.tag-luxury-edit,
.tag-petite-edit,
.tag-best-sellers {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--fb-font-ui);
}

.badge-featured,
.tag-florists-pick,
.tag-signature {
  background: var(--fb-accent-soft);
  color: #8f4d59;
}

.badge-same-day,
.tag-same-day-edit {
  background: var(--fb-success-soft);
  color: #3d7044;
}

.badge-seasonal,
.tag-seasonal {
  background: var(--fb-warm-soft);
  color: #7a5530;
}

.tag-luxury-edit,
.tag-best-sellers {
  background: rgba(205, 176, 122, 0.24);
  color: #815a2f;
}

.tag-petite-edit {
  background: rgba(177, 154, 206, 0.22);
  color: #70508d;
}

/* ==========================================================================
   FILTER TOOLBAR
   ========================================================================== */
.luxury-filter-bar,
.premium-explorer-filters {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr !important;
  gap: 10px !important;
  padding: 14px 16px !important;
  border-radius: 20px !important;
  background: rgba(255,253,250,0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid var(--fb-line) !important;
  box-shadow: 0 12px 32px rgba(38,28,24,0.05) !important;
  margin-bottom: 16px !important;
}

.luxury-filter-bar input,
.luxury-filter-bar select,
.premium-explorer-filters input,
.premium-explorer-filters select {
  height: 46px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-family: var(--fb-font-ui) !important;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid var(--fb-line) !important;
  color: var(--fb-text) !important;
  transition: border-color 0.16s var(--fb-ease), box-shadow 0.16s var(--fb-ease) !important;
  outline: none !important;
  width: 100%;
  box-sizing: border-box;
}

.luxury-filter-bar input:focus,
.luxury-filter-bar select:focus,
.premium-explorer-filters input:focus,
.premium-explorer-filters select:focus {
  border-color: rgba(183,116,125,0.45) !important;
  box-shadow: 0 0 0 4px rgba(183,116,125,0.10) !important;
  background: #fff !important;
}

@media (max-width: 900px) {
  .luxury-filter-bar, .premium-explorer-filters {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 580px) {
  .luxury-filter-bar, .premium-explorer-filters {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }
}

/* ==========================================================================
   QUICK CHIPS
   ========================================================================== */
.explorer-quick-chips {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  padding-bottom: 4px !important;
  scrollbar-width: none !important;
  margin-bottom: 16px !important;
}

.explorer-quick-chips::-webkit-scrollbar { display: none; }

.explorer-chip {
  height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  font-family: var(--fb-font-ui) !important;
  border: 1px solid var(--fb-line) !important;
  background: var(--fb-surface) !important;
  color: #4f3f3a !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background 0.16s var(--fb-ease), border-color 0.16s var(--fb-ease), color 0.16s var(--fb-ease) !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.explorer-chip:hover {
  background: var(--fb-accent-soft) !important;
  border-color: rgba(183,116,125,0.2) !important;
  color: #8f4d59 !important;
}

.explorer-chip.is-active {
  background: var(--fb-accent-soft) !important;
  color: #8f4d59 !important;
  border-color: rgba(183,116,125,0.22) !important;
  font-weight: 700 !important;
}

.explorer-chip-clear {
  background: #f0e8e8 !important;
  color: #7a3040 !important;
  border-color: rgba(183,116,125,0.15) !important;
}

.explorer-chip-icon { font-size: 13px; }

/* ==========================================================================
   SHOPPING NAV — master category horizontal row
   ========================================================================== */
.shopping-nav-shell {
  margin-bottom: 20px;
}

/* Hide the verbose headline paragraph */
.shopping-nav-headline p {
  display: none !important;
}

.shopping-nav-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.shopping-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fb-text-muted);
}

.shopping-top-groups {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding-bottom: 2px;
}

.shopping-top-groups::-webkit-scrollbar { display: none; }

/* Top-group buttons styled as premium pills */
.shopping-top-groups [data-browse-group],
.shopping-top-groups button,
.shopping-top-groups .shopping-group-btn {
  height: 42px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: var(--fb-font-ui) !important;
  background: var(--fb-surface) !important;
  border: 1px solid var(--fb-line) !important;
  color: var(--fb-text) !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all 0.18s var(--fb-ease) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shopping-top-groups [data-browse-group]:hover,
.shopping-top-groups button:hover {
  background: var(--fb-accent-soft) !important;
  border-color: rgba(183,116,125,0.25) !important;
  color: #8f4d59 !important;
}

.shopping-top-groups [data-browse-group].is-active,
.shopping-top-groups button.is-active {
  background: var(--fb-accent) !important;
  color: #fff !important;
  border-color: var(--fb-accent) !important;
}

/* Dropdown panel */
.shopping-dropdown-shell {
  margin-top: 12px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255,253,250,0.95);
  border: 1px solid var(--fb-line);
  box-shadow: 0 12px 32px rgba(38,28,24,0.05);
}

.shopping-dropdown-head h3 {
  font-family: var(--fb-font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 4px 0;
}

.shopping-dropdown-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.shopping-dropdown-links [data-dropdown-kind],
.shopping-dropdown-links a,
.shopping-dropdown-links button {
  height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  font-family: var(--fb-font-ui) !important;
  background: var(--fb-surface-2) !important;
  border: 1px solid var(--fb-line) !important;
  color: var(--fb-text) !important;
  cursor: pointer !important;
  transition: all 0.16s var(--fb-ease) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.shopping-dropdown-links [data-dropdown-kind]:hover,
.shopping-dropdown-links a:hover,
.shopping-dropdown-links button:hover {
  background: var(--fb-accent-soft) !important;
  color: #8f4d59 !important;
  border-color: rgba(183,116,125,0.2) !important;
}

/* ==========================================================================
   CATEGORY SHOWCASE GRID (rendered by renderCategoryShowcase)
   ========================================================================== */
.category-showcase-grid {
  display: flex !important;
  gap: 12px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding-bottom: 4px !important;
}

.category-showcase-grid::-webkit-scrollbar { display: none; }

.category-showcase-card,
.category-card,
[data-category-card] {
  flex-shrink: 0;
  width: 220px !important;
  min-height: 280px !important;
  border-radius: 24px !important;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.22s var(--fb-ease), box-shadow 0.22s var(--fb-ease) !important;
  border: none !important;
}

.category-showcase-card:hover,
.category-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--fb-shadow-hover) !important;
}

.category-showcase-card img,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.category-showcase-card-overlay,
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,12,10,0.72) 0%, rgba(20,12,10,0.12) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.category-showcase-card-title,
.category-card-title {
  font-family: var(--fb-font-serif) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 0.95 !important;
  color: #fff !important;
  margin: 0 0 6px !important;
  letter-spacing: -0.01em;
}

.category-showcase-card-description,
.category-card-description {
  font-size: 12px !important;
  color: rgba(255,255,255,0.80) !important;
  line-height: 1.5 !important;
  margin: 0 0 12px !important;
  max-width: 88%;
  font-family: var(--fb-font-ui);
}

.category-showcase-card-cta,
.category-card-cta {
  display: inline-flex;
  align-items: center;
  height: 28px !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: rgba(255,255,255,0.22) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  font-family: var(--fb-font-ui);
  text-decoration: none;
  width: fit-content;
}

/* ==========================================================================
   BUTTON SYSTEM (global override)
   ========================================================================== */

/* Primary button */
.btn-primary {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--fb-accent) !important;
  color: #fff !important;
  border: none !important;
  font-family: var(--fb-font-ui);
  cursor: pointer;
  transition: transform 0.16s var(--fb-ease), box-shadow 0.16s var(--fb-ease) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(183,116,125,0.24) !important;
}

.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

/* Secondary / ghost button */
.btn-ghost, .btn-secondary {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px !important;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--fb-font-ui);
  background: rgba(255,255,255,0.75) !important;
  color: #2a211e !important;
  border: 1px solid var(--fb-line) !important;
  cursor: pointer;
  transition: background 0.16s var(--fb-ease) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover:not(:disabled), .btn-secondary:hover:not(:disabled) {
  background: var(--fb-surface-2) !important;
}

/* Small variant */
.btn-sm {
  height: 36px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
}

/* Block */
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Checkout CTA */
.summary-checkout-btn,
.product-options-submit,
[type="submit"].btn-primary {
  height: 48px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   EXPLORER SECTION — header cleanup
   ========================================================================== */
.explorer-shell .section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.explorer-shell .section-head h2 {
  font-family: var(--fb-font-serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 6px 0 0;
  color: var(--fb-text);
}

.explorer-shell .section-head .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fb-accent);
}

.explorer-shell .section-head p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fb-text-soft);
  margin: 6px 0 0;
  max-width: 540px;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--fb-surface-2);
  color: var(--fb-text-soft);
  border: 1px solid var(--fb-line);
  white-space: nowrap;
  font-family: var(--fb-font-ui);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Load more */
#allFlowersPagination {
  text-align: center;
  margin-top: 32px;
}

/* ==========================================================================
   PRODUCT OPTIONS MODAL
   ========================================================================== */
.product-options-modal:not([hidden]) {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1000 !important;
  padding: 20px !important;
}

.product-options-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(28,20,17,0.48) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.product-options-card {
  position: relative !important;
  max-width: 980px !important;
  width: 100% !important;
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
  border-radius: 28px !important;
  padding: 28px !important;
  background: var(--fb-surface) !important;
  box-shadow: 0 28px 80px rgba(28,20,17,0.22) !important;
  z-index: 1001;
}

.product-options-card::-webkit-scrollbar { display: none; }

.product-options-layout {
  display: grid !important;
  align-items: start;
}

.product-options-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: var(--fb-surface-2) !important;
  border: 1px solid var(--fb-line) !important;
  font-size: 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--fb-text-soft) !important;
  transition: background 0.16s var(--fb-ease) !important;
  z-index: 2;
}

.product-options-close:hover {
  background: var(--fb-accent-soft) !important;
  color: var(--fb-accent) !important;
}

/* Modal left (image + intelligence) */
.product-options-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-options-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px !important;
  overflow: hidden;
  background: var(--fb-surface-2);
}

.product-options-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px !important;
}

.product-options-badges {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

/* Modal title */
#productOptionsTitle {
  font-family: var(--fb-font-serif) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: var(--fb-text) !important;
  margin: 0 !important;
}

/* Modal base price */
.product-options-price {
  font-family: var(--fb-font-ui) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  color: #201917 !important;
  margin: 0 !important;
}

/* Modal intelligence panels — editorial callout */
.product-options-why,
.product-options-persona,
.product-options-florist-note,
.product-options-delivery-note,
.recipient-modal-cue,
.addon-suggestion-note {
  padding: 13px 16px !important;
  border-radius: 16px !important;
  background: #f6efeb !important;
  border-left: 3px solid var(--fb-accent) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: var(--fb-text-soft) !important;
  margin: 0 !important;
}

.product-options-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-options-total-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 4px;
  border-top: 1px solid var(--fb-line);
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-text-soft);
}

.product-options-total-panel strong {
  font-size: 20px !important;
  font-weight: 700 !important;
  font-family: var(--fb-font-ui) !important;
  letter-spacing: -0.01em;
  color: #201917 !important;
}

.product-options-promise {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--fb-text-muted);
  font-family: var(--fb-font-ui);
}

/* Modal right (form) */
.product-options-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-options-section-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--fb-text-muted) !important;
  font-family: var(--fb-font-ui) !important;
  padding-top: 4px;
}

.product-options-input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.product-field span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fb-text-muted);
  font-family: var(--fb-font-ui);
}

.product-field input,
.product-field select,
.product-field textarea {
  height: 46px;
  padding: 0 14px;
  border-radius: 14px !important;
  font-size: 14px;
  font-family: var(--fb-font-ui);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--fb-line) !important;
  color: var(--fb-text);
  transition: border-color 0.16s var(--fb-ease), box-shadow 0.16s var(--fb-ease);
  outline: none;
}

.product-field input:focus,
.product-field select:focus,
.product-field textarea:focus {
  border-color: rgba(183,116,125,0.45) !important;
  box-shadow: 0 0 0 4px rgba(183,116,125,0.10) !important;
  background: #fff;
}

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

.product-field textarea {
  height: auto !important;
  min-height: 90px !important;
  padding: 12px 14px !important;
  resize: vertical;
}

/* Add-ons */
.product-addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-addon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--fb-line);
  background: rgba(255,253,250,0.8);
  transition: border-color 0.16s var(--fb-ease);
}

.product-addon-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-text);
  font-family: var(--fb-font-ui);
}

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

.product-addon-controls select {
  height: 40px;
  padding: 0 12px;
  border-radius: 12px !important;
  font-size: 13px;
  font-family: var(--fb-font-ui);
  border: 1px solid var(--fb-line) !important;
  background: rgba(255,255,255,0.9);
  outline: none;
}

.product-addon-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--fb-text-soft);
  font-family: var(--fb-font-ui);
}

/* Modal footer */
.product-options-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--fb-line);
}

.product-options-note {
  font-size: 12px !important;
  color: var(--fb-text-muted) !important;
  text-align: center !important;
  margin: 0 !important;
  font-family: var(--fb-font-ui) !important;
}

/* Modal on mobile — bottom sheet */
@media (max-width: 700px) {
  .product-options-modal:not([hidden]) {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .product-options-card {
    border-radius: 28px 28px 0 0 !important;
    max-height: 90vh !important;
    padding: 24px 20px !important;
  }

  .product-options-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .product-options-image-wrap {
    aspect-ratio: 16/9 !important;
  }

  .product-options-input-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ==========================================================================
   CART PAGE
   ========================================================================== */

/* Cart page hero — compact */
.cart-layout ~ .section .page-hero,
body[data-page="cart"] .page-hero {
  padding-top: 32px;
  padding-bottom: 24px;
}

.cart-layout {
  display: grid !important;
  grid-template-columns: 1.35fr 0.65fr !important;
  gap: 24px !important;
  align-items: start !important;
}

/* Cart items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Cart item card (rendered by JS) */
.cart-item,
[data-cart-item] {
  display: grid !important;
  grid-template-columns: 110px 1fr auto !important;
  gap: 16px !important;
  padding: 16px !important;
  border-radius: 22px !important;
  background: var(--fb-surface) !important;
  border: 1px solid var(--fb-line) !important;
  box-shadow: 0 6px 18px rgba(38,28,24,0.04) !important;
  align-items: start;
  transition: box-shadow 0.2s var(--fb-ease);
}

.cart-item:hover { box-shadow: 0 10px 28px rgba(38,28,24,0.07) !important; }

.cart-item-image,
.cart-item img {
  width: 110px !important;
  height: 132px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  display: block;
  background: var(--fb-surface-2);
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name,
.cart-item h4,
.cart-item h3 {
  font-family: var(--fb-font-serif) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--fb-text) !important;
  margin: 0 0 4px !important;
  line-height: 1.3;
}

.cart-item-meta,
.cart-item p,
.cart-item-options {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--fb-text-soft) !important;
  margin: 0 !important;
  font-family: var(--fb-font-ui) !important;
}

.cart-item-price,
.cart-item .item-price {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #201917 !important;
  font-family: var(--fb-font-ui) !important;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Quantity stepper */
.qty-stepper,
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn,
.cart-qty-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--fb-line) !important;
  background: var(--fb-surface) !important;
  color: var(--fb-text) !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.14s var(--fb-ease) !important;
}

.qty-btn:hover, .cart-qty-btn:hover {
  background: var(--fb-surface-2) !important;
}

.qty-display,
.cart-qty-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-text);
  min-width: 20px;
  text-align: center;
  font-family: var(--fb-font-ui);
}

.cart-item-remove,
.cart-remove-btn,
[data-remove-item] {
  font-size: 12px !important;
  color: var(--fb-text-muted) !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 4px 0 !important;
  font-family: var(--fb-font-ui) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item-remove:hover { color: #c0392b !important; }

/* ==========================================================================
   SUMMARY CARD (cart + checkout)
   ========================================================================== */
.summary-card,
.premium-summary-card {
  padding: 24px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #fffdfa 0%, #f5ede7 100%) !important;
  border: 1px solid var(--fb-line) !important;
  box-shadow: 0 18px 42px rgba(38,28,24,0.07) !important;
  position: sticky !important;
  top: 24px !important;
}

.summary-card-title {
  font-family: var(--fb-font-serif) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--fb-text) !important;
  margin: 0 0 16px !important;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--fb-line);
  border-bottom: 1px solid var(--fb-line);
  padding: 14px 0;
  margin: 0 0 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 14px;
  font-family: var(--fb-font-ui);
  color: var(--fb-text-soft);
}

.summary-row strong {
  color: #201917 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.summary-row.total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--fb-line);
}

.summary-row.total span {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--fb-text) !important;
}

.summary-row.total strong {
  font-size: 20px !important;
  font-weight: 700 !important;
}

.summary-checkout-btn {
  margin-bottom: 10px;
}

.summary-clear-btn {
  margin-bottom: 16px;
}

.summary-trust-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--fb-line);
}

.summary-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--fb-text-soft);
  line-height: 1.5;
  font-family: var(--fb-font-ui);
}

.summary-trust-item span:first-child {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

.summary-help-note {
  font-size: 12px;
  color: var(--fb-text-muted);
  text-align: center;
  margin-top: 12px;
  font-family: var(--fb-font-ui);
}

.summary-help-note a {
  color: var(--fb-accent);
  text-decoration: none;
}

.summary-delivery-note,
.inline-note {
  font-size: 12.5px;
  color: var(--fb-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
  font-family: var(--fb-font-ui);
}

/* Cart empty state — premium */
.cart-empty-state {
  padding: 48px 32px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #fffdfa 0%, #f6efeb 100%) !important;
  border: 1px solid var(--fb-line) !important;
  text-align: center !important;
}

.cart-empty-icon { font-size: 40px; margin-bottom: 16px; }

.cart-empty-state h3 {
  font-family: var(--fb-font-serif) !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  color: var(--fb-text) !important;
  margin: 0 0 10px !important;
}

.cart-empty-state p {
  font-size: 14px !important;
  color: var(--fb-text-soft) !important;
  line-height: 1.6 !important;
  max-width: 380px !important;
  margin: 0 auto 24px !important;
}

.cart-empty-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cart responsive */
@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr !important;
  }
  .summary-card { position: static !important; order: -1; }
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.checkout-layout {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.form-card,
#checkoutForm {
  padding: 28px !important;
  border-radius: 24px !important;
  background: var(--fb-surface) !important;
  border: 1px solid var(--fb-line) !important;
  box-shadow: 0 12px 30px rgba(38,28,24,0.05) !important;
}

/* Section rhythm inside form */
.form-section-title {
  font-family: var(--fb-font-serif) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--fb-text) !important;
  margin: 0 0 20px !important;
}

.form-divider,
#checkoutForm hr {
  border: none !important;
  border-top: 1px solid var(--fb-line) !important;
  margin: 24px 0 !important;
}

/* Section spacing within form */
#checkoutForm .kicker,
.form-card .kicker {
  display: block;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--fb-accent) !important;
  margin-bottom: 6px !important;
}

/* Form fields */
.form-field,
.form-row {
  margin-bottom: 14px !important;
}

.form-row-spaced {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

label[for],
.form-field label,
.form-row label {
  display: block;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: rgba(70,52,47,0.52) !important;
  margin-bottom: 7px !important;
  font-family: var(--fb-font-ui) !important;
}

#checkoutForm input[type="text"],
#checkoutForm input[type="email"],
#checkoutForm input[type="tel"],
#checkoutForm input[type="date"],
#checkoutForm input[type="number"],
#checkoutForm textarea,
.form-card input:not([type="checkbox"]):not([type="radio"]),
.form-card textarea {
  height: 48px;
  padding: 0 14px;
  border-radius: 14px !important;
  font-size: 14.5px;
  font-family: var(--fb-font-ui);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--fb-line) !important;
  color: var(--fb-text);
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.16s var(--fb-ease), box-shadow 0.16s var(--fb-ease);
  /* Prevent iOS font zoom on focus */
  -webkit-text-size-adjust: 100%;
}

#checkoutForm textarea,
.form-card textarea {
  height: auto !important;
  min-height: 112px;
  padding: 14px !important;
  resize: vertical;
  line-height: 1.6;
}

#checkoutForm input:focus,
#checkoutForm textarea:focus,
.form-card input:focus,
.form-card textarea:focus {
  border-color: rgba(183,116,125,0.45) !important;
  box-shadow: 0 0 0 4px rgba(183,116,125,0.10) !important;
  background: #fff;
}

/* Concierge block */
.form-concierge-block {
  padding: 16px 18px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #f6ece8 0%, #f1e2df 100%) !important;
  border: 1px solid rgba(183,116,125,0.12) !important;
  margin: 20px 0 !important;
}

.form-concierge-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--fb-accent) !important;
  margin: 0 0 6px !important;
  font-family: var(--fb-font-ui) !important;
}

.form-concierge-contact {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--fb-text) !important;
  margin: 0 0 4px !important;
  font-family: var(--fb-font-ui) !important;
}

.form-concierge-contact a { color: var(--fb-accent) !important; text-decoration: none; }

.form-concierge-hours {
  font-size: 12px !important;
  color: var(--fb-text-soft) !important;
  margin: 0 !important;
  font-family: var(--fb-font-ui) !important;
}

/* Payment note */
.form-payment-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--fb-surface-2);
  border: 1px solid var(--fb-line);
  font-size: 13px !important;
  color: var(--fb-text-soft) !important;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Recipients panel */
.recipients-panel {
  margin-bottom: 16px;
}

/* Save recipient row */
.save-recipient-row {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--fb-text-soft);
  font-family: var(--fb-font-ui);
}

/* Checkout inline style overrides */
#checkoutForm [style*="margin-top:0.5rem"],
#checkoutForm [style*="margin-top:0.3rem"],
#checkoutForm [style*="margin-top: 1rem"] {
  margin-top: 14px !important;
}

/* Checkout concierge note in summary */
.checkout-concierge-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--fb-accent-soft);
  border: 1px solid rgba(183,116,125,0.12);
  margin-top: 14px;
}

.checkout-concierge-label {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--fb-accent) !important;
  margin: 0 0 5px !important;
  font-family: var(--fb-font-ui) !important;
}

.checkout-concierge-contact, .checkout-concierge-hours {
  font-size: 12.5px !important;
  color: var(--fb-text-soft) !important;
  margin: 0 0 3px !important;
  font-family: var(--fb-font-ui) !important;
}

.checkout-concierge-contact a { color: var(--fb-accent) !important; text-decoration: none; }

/* Checkout responsive */
@media (max-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1fr !important;
  }
  .checkout-layout .summary-card { order: -1; position: static !important; }

  .form-row-spaced {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   CHECKOUT ITEMS (summary sidebar)
   ========================================================================== */
.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.checkout-item,
[data-checkout-item] {
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkout-item img {
  width: 52px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--fb-surface-2);
}

.checkout-item-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fb-text);
  font-family: var(--fb-font-serif);
  flex: 1;
  line-height: 1.3;
}

.checkout-item-meta {
  font-size: 12px;
  color: var(--fb-text-soft);
  font-family: var(--fb-font-ui);
}

.checkout-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #201917;
  font-family: var(--fb-font-ui);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* ==========================================================================
   COLLECTION PAGE HERO (used by all-flowers, etc.)
   ========================================================================== */
.collections-showcase-section .section-head h2 {
  font-family: var(--fb-font-serif) !important;
  font-size: 30px !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  color: var(--fb-text) !important;
}

.collections-showcase-section .kicker {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--fb-accent) !important;
}

/* ==========================================================================
   MOBILE GLOBAL
   ========================================================================== */
@media (max-width: 640px) {
  .product-options-input-grid {
    grid-template-columns: 1fr !important;
  }

  .product-addon-controls {
    grid-template-columns: 1fr !important;
  }

  .cart-item, [data-cart-item] {
    grid-template-columns: 80px 1fr !important;
  }

  .cart-item-image, .cart-item img {
    width: 80px !important;
    height: 96px !important;
  }

  .cart-item-price, .cart-item .item-price {
    grid-column: 1 / -1 !important;
  }
}

/* ==========================================================================
   MOTION — Apple-like micro-animations
   ========================================================================== */
.explorer-chip,
.product-card,
.shopping-top-groups button,
.category-showcase-card,
.btn-primary,
.btn-ghost,
.btn-secondary {
  will-change: transform;
}

/* Lazy image reveal */
img[loading="lazy"].is-loaded {
  animation: fb-img-reveal 0.38s var(--fb-ease) both;
}

@keyframes fb-img-reveal {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}

/* Modal open */
.product-options-card {
  animation: fb-modal-in 0.28s var(--fb-ease) both;
}

@keyframes fb-modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}



/* ==========================================================================
   ALLFLOWERS UI FIX — dead space, nav tabs, card hierarchy  (append-v2)
   ========================================================================== */

/* ------------------------------------------------------------------
   1. KILL DEAD SPACE — reduce section padding on allflowers page
   ------------------------------------------------------------------ */
body[data-page='allflowers'] .collections-showcase-section {
  padding: 2.4rem 0 1.6rem !important;
}

body[data-page='allflowers'] .collections-explorer-section {
  padding: 2rem 0 3.6rem !important;
}

/* Section-head margin tighter on allflowers */
body[data-page='allflowers'] .collections-showcase-section .section-head {
  margin-bottom: 1.4rem !important;
}

body[data-page='allflowers'] .explorer-shell .section-head {
  margin-bottom: 20px !important;
}

/* Suppress the long explorer section-head copy block on allflowers */
body[data-page='allflowers'] #shopExplorerKicker,
body[data-page='allflowers'] #shopExplorerTitle,
body[data-page='allflowers'] #shopExplorerCopy {
  display: none !important;
}

/* The count pill should be alone at top of explorer shell, not inside a big section-head */
body[data-page='allflowers'] .explorer-shell .section-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px !important;
  min-height: 0 !important;
}

/* ------------------------------------------------------------------
   2. CATEGORY NAV TABS — flat uppercase tab style (replaces pills)
   ------------------------------------------------------------------ */

/* Container */
.shopping-nav-shell {
  padding: 0 0 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  margin-bottom: 16px !important;
}

/* Tab row */
.shopping-top-groups {
  display: flex !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  align-items: center !important;
  min-height: 44px !important;
  border-bottom: 1px solid var(--fb-line) !important;
  padding-bottom: 0 !important;
}

.shopping-top-groups::-webkit-scrollbar { display: none !important; }

/* Individual tab buttons — flat, uppercase, tracked */
.shopping-top-groups [data-browse-group],
.shopping-top-groups button,
.shopping-top-groups .shopping-group-btn {
  height: 44px !important;
  padding: 0 18px !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: var(--fb-font-ui) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(36,28,25,0.58) !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  position: relative !important;
  transition: color 0.16s ease, border-color 0.16s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: -1px !important;
}

.shopping-top-groups [data-browse-group]:hover,
.shopping-top-groups button:hover {
  color: #241c19 !important;
  background: transparent !important;
  border-bottom-color: rgba(199,154,99,0.3) !important;
}

/* Active tab — strong, amber underline */
.shopping-top-groups [data-browse-group].is-active,
.shopping-top-groups button.is-active {
  color: #241c19 !important;
  background: transparent !important;
  border-bottom-color: #c79a63 !important;
  font-weight: 700 !important;
}

/* Remove the ::after pseudo underline from Phase 14 (border-bottom replaces it) */
.shopping-top-groups [data-browse-group].is-active::after,
.shopping-top-groups button.is-active::after {
  display: none !important;
}

/* Shopping nav headline — tighter, label only */
.shopping-nav-headline {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ------------------------------------------------------------------
   3. PRODUCT CARD — stronger hierarchy
   ------------------------------------------------------------------ */

/* Image frame — warm gradient mat, lighter visual weight */
.product-card .product-image-stage {
  background: linear-gradient(180deg, #f5efeb 0%, #ece4df 100%) !important;
  border-radius: 14px !important;
}

/* Category label — very muted, tight */
.product-card .product-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(36,28,25,0.42) !important;
}

/* Title — clean, confident */
.product-card .product-body h3 {
  font-size: 17px !important;
  line-height: 1.28 !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: #241c19 !important;
}

/* Price — Inter, no serif, strong */
.product-card .price {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  color: #201917 !important;
}

/* CTA — uppercase authority */
.product-card .btn-sm,
.product-card .price-row .btn {
  height: 40px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* ------------------------------------------------------------------
   4. EXPLORER SECTION — hide verbose copy block, tighten wrapper
   ------------------------------------------------------------------ */

/* Hide "calm navigation system" paragraph and long section sub-headline */
body[data-page='allflowers'] .shopping-nav-headline p {
  display: none !important;
}

body[data-page='allflowers'] .shopping-nav-headline {
  margin-bottom: 0 !important;
  min-height: 0 !important;
  display: none !important;
}

/* Tighten the filter bar gap */
body[data-page='allflowers'] .explorer-quick-chips {
  margin-top: 12px !important;
  margin-bottom: 4px !important;
}

/* Section padding safety — override any min-height on intro wrappers */
.collection-intro,
.allflowers-hero,
.explorer-hero {
  min-height: auto !important;
  padding-bottom: 32px !important;
}

html[data-allflowers-state='booting'] body[data-page='allflowers'] .collections-page,
html[data-allflowers-state='booting'] body[data-page='allflowers'] .site-footer {
  opacity: 0 !important;
  visibility: hidden !important;
}

html[data-allflowers-state='ready'] body[data-page='allflowers'] .collections-page,
html[data-allflowers-state='ready'] body[data-page='allflowers'] .site-footer {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease;
}

html[data-allflowers-state='booting'] body[data-page='allflowers'] {
  background: linear-gradient(180deg, #fffaf7 0%, #fdf5ef 100%);
}

html[data-allflowers-state='booting'] body[data-page='allflowers']::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(198, 149, 128, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(253, 245, 239, 0.96) 100%);
  z-index: 30;
}

html[data-allflowers-state='booting'] body[data-page='allflowers']::after {
  content: 'Loading Florabella collections';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 156, 129, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(72, 38, 41, 0.08);
  color: #6f5a51;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  z-index: 31;
}

/* ------------------------------------------------------------------
   5. ALLFLOWERS SHOWCASE GRID RECOVERY
   Restore premium collection cards after legacy flex override.
   ------------------------------------------------------------------ */
body[data-page='allflowers'] .category-showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
  gap: 1.3rem !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
  align-items: stretch !important;
}

body[data-page='allflowers'] .category-showcase-grid > * {
  width: auto !important;
  min-width: 0 !important;
  flex: initial !important;
}

body[data-page='allflowers'] .category-showcase-grid .collection-showcase-card {
  width: 100% !important;
  min-height: 500px !important;
}

body[data-page='allflowers'] .category-showcase-grid .collection-showcase-card > img,
body[data-page='allflowers'] .category-showcase-grid .collection-showcase-card .collection-showcase-slide {
  min-height: 500px !important;
}

@media (max-width: 860px) {
  body[data-page='allflowers'] .shopping-nav-headline {
    display: flex !important;
    justify-content: flex-end !important;
  }

  body[data-page='allflowers'] .category-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body[data-page='allflowers'] .category-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  body[data-page='allflowers'] .category-showcase-grid .collection-showcase-card,
  body[data-page='allflowers'] .category-showcase-grid .collection-showcase-card > img,
  body[data-page='allflowers'] .category-showcase-grid .collection-showcase-card .collection-showcase-slide {
    min-height: 360px !important;
  }
}

/* ------------------------------------------------------------------
   6. ALLFLOWERS CURATED LANDING
   Distinct from homepage showcase: quieter, editorial, utility-first.
   ------------------------------------------------------------------ */
body[data-page='allflowers'] .collections-landing-section {
  padding: 2.6rem 0 1.35rem !important;
}

body[data-page='allflowers'] .collection-landing-shell {
  padding: 1.4rem 1.45rem 1.25rem;
  border-radius: 34px;
  border: 1px solid rgba(188, 156, 129, 0.16);
  background:
    radial-gradient(circle at top right, rgba(198, 149, 128, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 249, 0.92) 0%, rgba(255, 248, 244, 0.86) 100%);
  box-shadow: 0 20px 54px rgba(72, 38, 41, 0.08);
}

body[data-page='allflowers'] .collection-landing-intro {
  max-width: 46rem;
  margin-bottom: 1.35rem;
}

body[data-page='allflowers'] .collection-landing-intro h2 {
  margin: 0.28rem 0 0.6rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

body[data-page='allflowers'] .collection-landing-intro p {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

body[data-page='allflowers'] .collection-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

body[data-page='allflowers'] .collection-landing-feature,
body[data-page='allflowers'] .collection-landing-panel {
  min-width: 0;
  border-radius: 28px;
  border: 1px solid rgba(188, 156, 129, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body[data-page='allflowers'] .collection-landing-feature {
  padding: 1.5rem 1.5rem 1.35rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88) 0%, rgba(253, 247, 242, 0.9) 60%, rgba(248, 239, 233, 0.96) 100%);
}

body[data-page='allflowers'] .collection-landing-panel {
  padding: 1.35rem 1.25rem 1.2rem;
}

body[data-page='allflowers'] .collection-landing-panel-accent {
  background:
    linear-gradient(155deg, rgba(255, 249, 246, 0.95) 0%, rgba(252, 243, 239, 0.92) 50%, rgba(249, 236, 231, 0.96) 100%);
}

body[data-page='allflowers'] .collection-landing-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(174, 135, 107, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #8a5d4f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page='allflowers'] .collection-landing-feature h3,
body[data-page='allflowers'] .collection-landing-panel h3 {
  margin: 0.95rem 0 0.55rem;
  font-family: var(--font-head);
  font-size: clamp(1.52rem, 2vw, 2.1rem);
  line-height: 1.04;
  color: var(--ink);
}

body[data-page='allflowers'] .collection-landing-feature p,
body[data-page='allflowers'] .collection-landing-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

body[data-page='allflowers'] .collection-landing-links,
body[data-page='allflowers'] .collection-chip-list,
body[data-page='allflowers'] .collection-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.05rem;
}

body[data-page='allflowers'] .collection-landing-links a,
body[data-page='allflowers'] .collection-chip-list a,
body[data-page='allflowers'] .collection-service-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(170, 133, 108, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

body[data-page='allflowers'] .collection-landing-links a:hover,
body[data-page='allflowers'] .collection-chip-list a:hover,
body[data-page='allflowers'] .collection-service-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(170, 133, 108, 0.34);
  background: rgba(255, 251, 247, 0.98);
  box-shadow: 0 10px 22px rgba(89, 52, 57, 0.08);
}

body[data-page='allflowers'] .collection-landing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(188, 156, 129, 0.15);
}

body[data-page='allflowers'] .collection-landing-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6f5a51;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body[data-page='allflowers'] .collection-landing-note span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 107, 115, 0.62);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  body[data-page='allflowers'] .collection-landing-grid {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page='allflowers'] .collection-landing-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body[data-page='allflowers'] .collection-landing-shell {
    padding: 1.1rem 1rem 1rem;
    border-radius: 26px;
  }

  body[data-page='allflowers'] .collection-landing-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='allflowers'] .collection-landing-feature,
  body[data-page='allflowers'] .collection-landing-panel {
    padding: 1.15rem 1rem 1rem;
    border-radius: 22px;
  }

  body[data-page='allflowers'] .collection-landing-intro {
    margin-bottom: 1rem;
  }

  body[data-page='allflowers'] .collection-landing-intro h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  body[data-page='allflowers'] .collection-landing-links a,
  body[data-page='allflowers'] .collection-chip-list a,
  body[data-page='allflowers'] .collection-service-list a {
    min-height: 40px;
    font-size: 0.8rem;
    padding: 0 0.88rem;
  }
}

/* ============================================================
   FLORABELLA LUXURY OVERHAUL — $10K EDITORIAL FEEL
   ============================================================ */

/* ---------- PRODUCT GRID: editorial spacing ---------- */
body[data-page='allflowers'] .luxury-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ---------- PRODUCT CARD: premium card shell ---------- */
body[data-page='allflowers'] .luxury-product-grid .product-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(101, 71, 76, 0.1);
  box-shadow: 0 8px 32px rgba(40, 20, 25, 0.07), 0 2px 8px rgba(40, 20, 25, 0.04);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-page='allflowers'] .luxury-product-grid .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(40, 20, 25, 0.14), 0 8px 24px rgba(40, 20, 25, 0.08);
  border-color: rgba(184, 107, 115, 0.22);
}

/* ---------- PRODUCT IMAGE STAGE: tall editorial ---------- */
body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage {
  aspect-ratio: 3 / 4;
  min-height: 340px;
  padding: 0;
  background: linear-gradient(160deg, #faf8f5 0%, #f5f0ec 60%, #efe8e3 100%);
  border-bottom: 1px solid rgba(125, 92, 98, 0.08);
  overflow: hidden;
}

body[data-page='allflowers'] .luxury-product-grid .product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 20px 16px 10px;
  filter: drop-shadow(0 12px 28px rgba(30, 18, 22, 0.18));
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
}

body[data-page='allflowers'] .luxury-product-grid .product-card:hover img {
  transform: scale(1.05) translateY(-6px);
  filter: drop-shadow(0 20px 40px rgba(30, 18, 22, 0.24));
}

/* ---------- PRODUCT BODY: refined typography ---------- */
body[data-page='allflowers'] .luxury-product-grid .product-card .product-body {
  padding: 1.35rem 1.5rem 1.6rem;
  gap: 0.55rem;
}

body[data-page='allflowers'] .luxury-product-grid .product-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2b1b1f;
  min-height: auto;
  margin: 0;
}

body[data-page='allflowers'] .luxury-product-grid .product-card p {
  font-size: 0.84rem;
  color: #7a5a62;
  line-height: 1.55;
}

body[data-page='allflowers'] .luxury-product-grid .product-card .product-tag {
  background: rgba(184, 107, 115, 0.08);
  color: #8f4e5f;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

body[data-page='allflowers'] .luxury-product-grid .product-card .price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #2b1b1f;
  letter-spacing: -0.01em;
}

body[data-page='allflowers'] .luxury-product-grid .product-card .price-row {
  margin-top: 0.35rem;
  align-items: center;
  gap: 0.9rem;
}

body[data-page='allflowers'] .luxury-product-grid .product-card .btn-primary {
  padding: 0.58rem 1.3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #2b1b1f;
  color: #faf8f5;
  border: none;
  transition: background 0.22s ease, transform 0.18s ease;
  white-space: nowrap;
}

body[data-page='allflowers'] .luxury-product-grid .product-card .btn-primary:hover {
  background: #b86b73;
  transform: scale(1.03);
}

/* ---------- FILTER BAR: refined ---------- */
body[data-page='allflowers'] .luxury-filter-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
  border: 1px solid rgba(101, 71, 76, 0.12);
  box-shadow: 0 4px 16px rgba(40, 20, 25, 0.05);
}

body[data-page='allflowers'] .luxury-filter-bar input[type='search'],
body[data-page='allflowers'] .luxury-filter-bar select {
  border-radius: 10px;
  border: 1px solid rgba(101, 71, 76, 0.18);
  background: #faf8f5;
  font-size: 0.84rem;
  color: #2b1b1f;
  padding: 0.58rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-page='allflowers'] .luxury-filter-bar input[type='search']:focus,
body[data-page='allflowers'] .luxury-filter-bar select:focus {
  outline: none;
  border-color: #b86b73;
  box-shadow: 0 0 0 3px rgba(184, 107, 115, 0.12);
}

/* ---------- COLLECTION LANDING GRID: editorial cards ---------- */
body[data-page='allflowers'] .collection-landing-grid {
  gap: 1.5rem;
}

body[data-page='allflowers'] .collection-landing-feature,
body[data-page='allflowers'] .collection-landing-panel {
  border-radius: 20px;
  border: 1px solid rgba(101, 71, 76, 0.1);
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(40, 20, 25, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body[data-page='allflowers'] .collection-landing-feature:hover,
body[data-page='allflowers'] .collection-landing-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(40, 20, 25, 0.11);
}

body[data-page='allflowers'] .collection-landing-feature h3,
body[data-page='allflowers'] .collection-landing-panel h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ---------- VISUAL CATEGORY STRIP: image-led nav ---------- */
.florabella-category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  padding: 0.5rem 0 1.5rem;
}

.florabella-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.65rem;
  cursor: pointer;
  transition: transform 0.28s ease;
}

.florabella-category-card:hover {
  transform: translateY(-4px);
}

.florabella-category-card:hover .fccard-img-wrap {
  box-shadow: 0 12px 32px rgba(40, 20, 25, 0.16);
  border-color: rgba(184, 107, 115, 0.35);
}

.florabella-category-card:hover .fccard-label {
  color: #b86b73;
}

.fccard-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(140deg, #faf8f5 0%, #f0e8e4 100%);
  border: 2px solid rgba(184, 107, 115, 0.14);
  box-shadow: 0 4px 16px rgba(40, 20, 25, 0.08);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fccard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.fccard-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a3a42;
  text-align: center;
  transition: color 0.22s ease;
}

/* ---------- HOME SHOWCASE CARDS: with real images ---------- */
.home-showcase-card .product-image-stage {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #faf8f5 0%, #f0e8e4 100%);
}

.home-showcase-card .product-image-stage img {
  object-fit: contain;
  object-position: center bottom;
  padding: 12px;
  filter: drop-shadow(0 10px 24px rgba(30, 18, 22, 0.16));
  transition: transform 0.4s ease;
}

.home-showcase-card:hover .product-image-stage img {
  transform: scale(1.05) translateY(-4px);
}

/* ---------- OCCASION CARDS: elevated visual ---------- */
.occasion-card {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(101, 71, 76, 0.1);
  box-shadow: 0 4px 16px rgba(40, 20, 25, 0.06);
  padding: 1.35rem 0.9rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.22s ease;
}

.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(40, 20, 25, 0.13);
  background: #faf3f0;
  border-color: rgba(184, 107, 115, 0.22);
}

.occasion-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.occasion-card-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2b1b1f;
}

/* ---------- SECTION HEADS: refined typographic hierarchy ---------- */
.section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #2b1b1f;
}

.kicker {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b86b73;
  margin-bottom: 0.5rem;
}

/* ---------- LUXURY STRIP / HERO SECTION: editorial feel ---------- */
.collections-hero-slide {
  background-size: cover;
  background-position: center;
}

/* ---------- CATEGORY SHOWCASE GRID: editorial cards ---------- */
.category-showcase-grid .category-card,
.luxury-showcase-grid .category-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(101, 71, 76, 0.09);
  box-shadow: 0 6px 24px rgba(40, 20, 25, 0.06);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease;
}

.category-showcase-grid .category-card:hover,
.luxury-showcase-grid .category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(40, 20, 25, 0.13);
}

.category-showcase-grid .category-card img,
.luxury-showcase-grid .category-card img {
  object-fit: contain;
  background: linear-gradient(160deg, #faf8f5 0%, #f0e8e4 100%);
  padding: 16px;
  filter: drop-shadow(0 8px 18px rgba(30, 18, 22, 0.14));
  transition: transform 0.4s ease;
}

.category-showcase-grid .category-card:hover img,
.luxury-showcase-grid .category-card:hover img {
  transform: scale(1.06);
}

/* ---------- PRODUCT CARD (non-allflowers pages): refined ---------- */
.product-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(101, 71, 76, 0.1);
  box-shadow: 0 6px 20px rgba(40, 20, 25, 0.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(40, 20, 25, 0.12);
}

.product-image-stage {
  background: linear-gradient(160deg, #faf8f5 0%, #f0e8e4 100%);
}

.product-image-stage img {
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(30, 18, 22, 0.15));
  padding: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image-stage img {
  transform: scale(1.04) translateY(-4px);
}

/* ---------- RESPONSIVE LUXURY GRID ---------- */
@media (max-width: 768px) {
  body[data-page='allflowers'] .luxury-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage {
    min-height: 220px;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card h3 {
    font-size: 1.15rem;
  }

  .florabella-category-strip {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  body[data-page='allflowers'] .luxury-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  body[data-page='allflowers'] .luxury-product-grid .product-card .product-image-stage {
    min-height: 180px;
  }

  .florabella-category-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 1200px) {
  body[data-page='allflowers'] .luxury-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ---------- FINAL PREMIUM COMMERCE POLISH: IMPORTED CATALOG + HEADER ---------- */
:root {
  --flb-ivory: #fbf7f2;
  --flb-cream: #fffdf9;
  --flb-porcelain: #f7f9fb;
  --flb-navy: #172b40;
  --flb-slate: #526171;
  --flb-champagne: #d8b071;
  --flb-rose: #b76a78;
  --flb-border: rgba(190, 159, 120, 0.2);
  --flb-shadow-soft: 0 18px 44px rgba(34, 26, 20, 0.08);
  --flb-shadow-lift: 0 26px 70px rgba(34, 26, 20, 0.13);
}

.site-header .header-utilities {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
}

.site-header .header-account-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
}

.site-header .header-phone-pill,
.site-header .header-account-actions .btn {
  min-height: 46px !important;
  border-radius: 16px !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(19, 43, 64, 0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
}

.site-header .header-phone-pill {
  min-width: 220px !important;
  color: var(--flb-navy) !important;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(251, 247, 242, 0.92)) !important;
  border: 1px solid rgba(216, 176, 113, 0.35) !important;
}

.site-header .header-utility-icon {
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1f5f91, #3f91c9) !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
}

.site-header .header-account-actions .btn-ghost {
  color: var(--flb-navy) !important;
  background: rgba(255, 253, 249, 0.92) !important;
  border: 1px solid rgba(216, 176, 113, 0.28) !important;
}

.site-header .header-account-actions .btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #235f91, #3f91c9) !important;
  border: 1px solid rgba(63, 145, 201, 0.28) !important;
}

.site-header .header-phone-pill:hover,
.site-header .header-account-actions .btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 18px 38px rgba(19, 43, 64, 0.13) !important;
}

body[data-page='allflowers'] .collections-page {
  background:
    radial-gradient(circle at 15% 4%, rgba(216, 176, 113, 0.12), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(183, 106, 120, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffdf9 0%, #fbf7f2 55%, #f8f1ec 100%);
}

body[data-page='allflowers'] .collection-landing-shell,
body[data-page='allflowers'] .explorer-shell {
  border-radius: 28px !important;
  background: rgba(255, 253, 249, 0.92) !important;
  border: 1px solid rgba(190, 159, 120, 0.16) !important;
  box-shadow: var(--flb-shadow-soft) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body[data-page='allflowers'] .collection-landing-feature,
body[data-page='allflowers'] .collection-landing-panel {
  border-radius: 22px !important;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(251, 247, 242, 0.88)) !important;
  border: 1px solid rgba(190, 159, 120, 0.18) !important;
  box-shadow: 0 12px 34px rgba(34, 26, 20, 0.06) !important;
}

body[data-page='allflowers'] .collection-landing-label,
body[data-page='allflowers'] .kicker {
  color: #a46472 !important;
  letter-spacing: 0.16em !important;
}

body[data-page='allflowers'] .collection-landing-links a,
body[data-page='allflowers'] .collection-chip-list a,
body[data-page='allflowers'] .collection-service-list a,
body[data-page='allflowers'] .subcategory-chip,
body[data-page='allflowers'] .quick-filter-chip,
body[data-page='allflowers'] .florabella-category-card,
body[data-page='allflowers'] .btn,
body[data-page='allflowers'] button {
  border-radius: 16px !important;
}

body[data-page='allflowers'] .collection-landing-links a,
body[data-page='allflowers'] .collection-chip-list a,
body[data-page='allflowers'] .collection-service-list a,
body[data-page='allflowers'] .subcategory-chip,
body[data-page='allflowers'] .quick-filter-chip {
  min-height: 40px !important;
  padding: 0.72rem 1rem !important;
  color: var(--flb-navy) !important;
  background: rgba(255, 253, 249, 0.82) !important;
  border: 1px solid rgba(190, 159, 120, 0.2) !important;
  box-shadow: 0 10px 22px rgba(34, 26, 20, 0.045) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.035em !important;
  text-transform: none !important;
}

body[data-page='allflowers'] .collection-landing-links a:hover,
body[data-page='allflowers'] .collection-chip-list a:hover,
body[data-page='allflowers'] .collection-service-list a:hover,
body[data-page='allflowers'] .subcategory-chip:hover,
body[data-page='allflowers'] .quick-filter-chip:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #235f91, #3f91c9) !important;
  border-color: rgba(63, 145, 201, 0.24) !important;
  transform: translateY(-1px);
}

body[data-page='allflowers'] .premium-explorer-filters {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(150px, 1fr)) !important;
  gap: 12px !important;
  padding: 14px !important;
  border-radius: 22px !important;
  background: rgba(255, 253, 249, 0.96) !important;
  border: 1px solid rgba(190, 159, 120, 0.16) !important;
  box-shadow: 0 12px 30px rgba(34, 26, 20, 0.06) !important;
}

body[data-page='allflowers'] .premium-explorer-filters input,
body[data-page='allflowers'] .premium-explorer-filters select {
  min-height: 48px !important;
  border-radius: 14px !important;
  color: var(--flb-navy) !important;
  background: #fffdf9 !important;
  border: 1px solid rgba(190, 159, 120, 0.2) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem !important;
}

body[data-page='allflowers'] .florabella-category-strip {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)) !important;
  gap: 16px !important;
}

body[data-page='allflowers'] .florabella-category-card {
  min-height: 180px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid rgba(190, 159, 120, 0.18) !important;
  background: #fffdf9 !important;
  box-shadow: 0 16px 36px rgba(34, 26, 20, 0.08) !important;
}

body[data-page='allflowers'] .florabella-category-card .fccard-img-wrap {
  height: 140px !important;
  border-radius: 0 !important;
  background: #f8f3ed !important;
}

body[data-page='allflowers'] .florabella-category-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body[data-page='allflowers'] .florabella-category-card .fccard-label {
  min-height: 40px !important;
  display: grid !important;
  place-items: center !important;
  color: var(--flb-navy) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: linear-gradient(180deg, #fffdf9, #fbf7f2) !important;
}

body[data-page='allflowers'] .luxury-product-grid,
body[data-page='allflowers'] .product-grid {
  align-items: stretch !important;
  gap: 22px !important;
}

body[data-page='allflowers'] .product-card {
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: rgba(255, 253, 249, 0.96) !important;
  border: 1px solid rgba(190, 159, 120, 0.16) !important;
  box-shadow: 0 18px 42px rgba(34, 26, 20, 0.08) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

body[data-page='allflowers'] .product-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(216, 176, 113, 0.34) !important;
  box-shadow: var(--flb-shadow-lift) !important;
}

body[data-page='allflowers'] .product-image-stage {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 14px !important;
  background:
    linear-gradient(180deg, rgba(251, 247, 242, 0.92), rgba(255, 253, 249, 0.98)) !important;
}

body[data-page='allflowers'] .product-image-stage img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  background: #fffdf9 !important;
  box-shadow: inset 0 0 0 1px rgba(190, 159, 120, 0.1) !important;
}

body[data-page='allflowers'] .product-body {
  min-height: 250px !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 18px !important;
}

body[data-page='allflowers'] .product-tag {
  width: fit-content !important;
  max-width: 100% !important;
  margin-bottom: 10px !important;
  padding: 0.42rem 0.62rem !important;
  border-radius: 10px !important;
  color: #a46472 !important;
  background: rgba(183, 106, 120, 0.1) !important;
  font-size: 0.64rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

body[data-page='allflowers'] .product-card h3 {
  min-height: 2.65em !important;
  color: #2c1c24 !important;
  font-size: 1.04rem !important;
  line-height: 1.28 !important;
  letter-spacing: -0.01em !important;
}

body[data-page='allflowers'] .product-card p {
  color: rgba(44, 28, 36, 0.68) !important;
  font-size: 0.82rem !important;
  line-height: 1.6 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body[data-page='allflowers'] .price-row {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

body[data-page='allflowers'] .price-row .btn,
body[data-page='allflowers'] .product-card .btn-primary {
  min-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #a95568, #bd7180) !important;
  border: 1px solid rgba(169, 85, 104, 0.2) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(169, 85, 104, 0.2) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  white-space: nowrap !important;
}

body[data-page='login'] .member-entry-shell,
body[data-page='register'] .member-entry-shell {
  min-height: calc(100vh - 104px) !important;
  display: grid !important;
  align-items: center !important;
  justify-content: center !important;
}

body[data-page='login'] .member-entry-card,
body[data-page='register'] .member-entry-card {
  border-radius: 24px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18) !important;
}

@media (max-width: 1100px) {
  body[data-page='allflowers'] .premium-explorer-filters {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 760px) {
  .site-header .header-main {
    gap: 14px !important;
  }

  .site-header .header-utilities {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .site-header .header-phone-pill {
    min-width: min(100%, 260px) !important;
  }

  body[data-page='allflowers'] .premium-explorer-filters {
    grid-template-columns: 1fr !important;
  }

  body[data-page='allflowers'] .florabella-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page='allflowers'] .product-body {
    min-height: 230px !important;
    padding: 14px !important;
  }
}

/* ---------- FINAL PREMIUM PRODUCT CONFIGURATOR ---------- */
.product-options-modal:not([hidden]) {
  padding: clamp(14px, 2vw, 30px) !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 20% 15%, rgba(216, 176, 113, 0.13), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(183, 106, 120, 0.16), transparent 30rem) !important;
}

.product-options-backdrop {
  background: rgba(12, 24, 36, 0.48) !important;
  backdrop-filter: blur(18px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.05) !important;
}

.product-options-card {
  width: min(1180px, calc(100vw - 32px)) !important;
  max-width: 1180px !important;
  max-height: min(860px, calc(100vh - 32px)) !important;
  padding: clamp(18px, 2.4vw, 30px) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(251, 247, 242, 0.94)) !important;
  border: 1px solid rgba(216, 176, 113, 0.28) !important;
  box-shadow:
    0 30px 90px rgba(10, 24, 36, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  scrollbar-width: none;
}

.product-options-layout {
  gap: clamp(0px, 0px, 0px);
}

.product-options-close {
  top: 16px !important;
  right: 16px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 16px !important;
  color: var(--flb-navy) !important;
  background: rgba(255, 253, 249, 0.9) !important;
  border: 1px solid rgba(190, 159, 120, 0.28) !important;
  box-shadow: 0 14px 32px rgba(34, 26, 20, 0.08) !important;
}

.product-options-preview,
.product-options-form {
  border-radius: 26px !important;
  border: 1px solid rgba(190, 159, 120, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(248, 241, 236, 0.9)) !important;
  box-shadow: 0 18px 46px rgba(34, 26, 20, 0.08) !important;
}

.product-options-preview {
  padding: clamp(16px, 2vw, 22px) !important;
}

.product-options-form {
  padding: clamp(18px, 2.2vw, 26px) !important;
  gap: 18px !important;
}

.pom-visual .product-options-image-wrap {
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.pom-visual .product-options-image-wrap img {
  object-fit: cover !important;
  border-radius: 0 !important;
  background: none !important;
  filter: none !important;
}

#productOptionsTitle {
  font-size: clamp(1.9rem, 3vw, 2.55rem) !important;
  color: #2c1c24 !important;
}

.product-options-price {
  color: var(--flb-navy) !important;
  font-size: 1.2rem !important;
  font-weight: 850 !important;
}

.product-options-why,
.product-options-persona,
.product-options-florist-note,
.product-options-delivery-note,
.recipient-modal-cue,
.addon-suggestion-note,
.product-options-size-guide {
  border-radius: 18px !important;
  background: rgba(255, 253, 249, 0.88) !important;
  border: 1px solid rgba(190, 159, 120, 0.18) !important;
  border-left: 3px solid rgba(183, 106, 120, 0.72) !important;
  box-shadow: 0 12px 26px rgba(34, 26, 20, 0.055) !important;
  color: rgba(44, 28, 36, 0.78) !important;
}

.product-options-section-label {
  margin-top: 2px !important;
  color: #8e6570 !important;
  letter-spacing: 0.15em !important;
}

.section-label-note {
  color: rgba(82, 97, 113, 0.62) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  font-weight: 650 !important;
}

.product-options-input-grid {
  grid-template-columns: 0.82fr 1.08fr 1.1fr !important;
  gap: 14px !important;
}

.product-field span {
  color: rgba(23, 43, 64, 0.62) !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.095em !important;
}

.product-field input,
.product-field select,
.product-field textarea,
.product-addon-controls select {
  min-height: 52px !important;
  height: auto !important;
  border-radius: 16px !important;
  background: rgba(255, 253, 249, 0.96) !important;
  border: 1px solid rgba(190, 159, 120, 0.24) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  color: var(--flb-navy) !important;
  font-size: 0.92rem !important;
  font-weight: 750 !important;
}

.product-field textarea {
  min-height: 104px !important;
  line-height: 1.55 !important;
}

.product-options-vase-preview {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(244, 236, 229, 0.78));
  border: 1px solid rgba(190, 159, 120, 0.2);
  box-shadow: 0 14px 34px rgba(34, 26, 20, 0.065);
}

.product-options-vase-media {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 1), rgba(235, 226, 216, 0.78));
  border: 1px solid rgba(190, 159, 120, 0.18);
}

.product-options-vase-media::before {
  content: "";
  width: 34px;
  height: 58px;
  border-radius: 10px 10px 16px 16px;
  border: 2px solid rgba(35, 95, 145, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(63,145,201,0.12));
}

.product-options-vase-media img:not([hidden]) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-options-vase-media:has(img:not([hidden]))::before {
  content: none;
}

.product-options-vase-kicker {
  display: block;
  margin-bottom: 4px;
  color: #a46472;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-options-vase-preview strong {
  display: block;
  color: var(--flb-navy);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.product-options-vase-preview p {
  margin: 5px 0 0;
  color: rgba(44, 28, 36, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-addon-list {
  gap: 14px !important;
}

.product-addon {
  padding: 16px !important;
  border-radius: 20px !important;
  background: rgba(255, 253, 249, 0.82) !important;
  border: 1px solid rgba(190, 159, 120, 0.18) !important;
  box-shadow: 0 12px 28px rgba(34, 26, 20, 0.055) !important;
}

.product-addon.is-enabled {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(247, 235, 231, 0.92)) !important;
  border-color: rgba(183, 106, 120, 0.36) !important;
  box-shadow: 0 18px 38px rgba(183, 106, 120, 0.12) !important;
}

.product-addon-head {
  color: var(--flb-navy) !important;
  font-size: 0.96rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

.product-addon-head input[type='checkbox'] {
  width: 20px !important;
  height: 20px !important;
  accent-color: #a95568;
}

.product-addon-controls {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
  gap: 10px !important;
}

.product-addon select:disabled {
  opacity: 0.42 !important;
  color: rgba(23, 43, 64, 0.5) !important;
}

.product-addon-preview {
  min-height: 54px;
  padding-top: 10px;
  border-top: 1px solid rgba(190, 159, 120, 0.16);
}

.product-addon-preview img:not([hidden]) {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  object-fit: contain !important;
  background: #fffdf9 !important;
  border: 1px solid rgba(190, 159, 120, 0.16) !important;
}

.addon-preview-name {
  color: var(--flb-navy) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

.addon-preview-range {
  color: rgba(44, 28, 36, 0.68) !important;
  font-size: 0.82rem !important;
}

.product-options-footer {
  gap: 12px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(190, 159, 120, 0.18) !important;
}

.product-options-submit {
  width: min(280px, 100%) !important;
  align-self: center !important;
  min-height: 58px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #a95568, #c77d8b) !important;
  box-shadow: 0 18px 38px rgba(169, 85, 104, 0.22) !important;
  letter-spacing: 0.07em !important;
}

.product-options-note {
  color: rgba(44, 28, 36, 0.62) !important;
  font-size: 0.86rem !important;
}

.product-options-total-panel {
  margin-top: auto;
  padding: 16px !important;
  border-radius: 18px;
  border: 1px solid rgba(190, 159, 120, 0.18) !important;
  background: rgba(255, 253, 249, 0.86);
}

.product-options-total-panel strong {
  color: var(--flb-navy) !important;
}

@media (max-width: 860px) {
  .product-options-layout {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .pom-visual .product-options-image-wrap {
    aspect-ratio: 16 / 9 !important;
    height: 220px !important;
  }
}

@media (max-width: 620px) {
  .product-options-modal:not([hidden]) {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .product-options-card {
    width: 100% !important;
    max-height: 92vh !important;
    border-radius: 26px 26px 0 0 !important;
    padding: 16px !important;
  }

  .product-options-preview,
  .product-options-form {
    padding: 14px !important;
  }

  .product-options-input-grid,
  .product-addon-controls {
    grid-template-columns: 1fr !important;
  }

  .product-options-vase-preview {
    grid-template-columns: 74px 1fr;
  }

  .product-options-vase-media {
    width: 74px;
    height: 74px;
  }
}

/* ---------- FINAL 4K CINEMATIC HERO SLIDES ---------- */
body[data-page='home'] .hero-slide-item,
body[data-page='allflowers'] .collections-hero-slide {
  background-size: cover !important;
  background-position: var(--hero-focus-x, 50%) var(--hero-focus-y, 44%) !important;
  background-repeat: no-repeat !important;
  transform: scale(1.01);
  filter: saturate(1.05) contrast(1.03);
}

body[data-page='home'] .hero-slide-item::before,
body[data-page='allflowers'] .collections-hero-slide::before {
  background:
    linear-gradient(90deg, rgba(5, 15, 24, 0.56) 0%, rgba(5, 15, 24, 0.25) 42%, rgba(5, 15, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 15, 24, 0.14) 0%, rgba(5, 15, 24, 0.4) 100%) !important;
}

body[data-page='allflowers'] .collections-hero.page-hero {
  min-height: clamp(280px, 34vw, 460px) !important;
  overflow: hidden !important;
  background: #071826 !important;
}

body[data-page='allflowers'] .collections-hero-stage {
  inset: 0 !important;
  border-radius: 0 !important;
}

/* ==========================================================================
   POM (Product Options Modal) — Final layout overrides
   ========================================================================== */

.product-options-layout {
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
  min-height: min(540px, 80vh) !important;
}

/* Left image column */
.pom-visual {
  position: relative !important;
  border-radius: 12px 0 0 12px !important;
  overflow: hidden !important;
  background: #f0ebe4 !important;
  min-height: 300px !important;
}

.pom-visual .product-options-image-wrap {
  position: absolute !important;
  inset: 0 !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.pom-visual .product-options-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  filter: none !important;
  background: none !important;
  transition: opacity 0.3s ease;
}

/* Right scrollable form */
.pom-panel {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 1.25rem !important;
  border-radius: 0 12px 12px 0 !important;
  border-left: 1px solid rgba(190, 159, 120, 0.18) !important;
  max-height: min(540px, 80vh) !important;
  background: rgba(255, 253, 249, 0.98) !important;
}

.pom-header {
  display: grid !important;
  gap: 0.4rem !important;
}

.pom-title {
  margin: 0 !important;
  font-family: var(--fb-font-serif, Georgia, serif) !important;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem) !important;
  line-height: 1.1 !important;
  color: #2c1c18 !important;
}

.pom-label {
  display: block !important;
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  font-weight: 700 !important;
  color: rgba(70, 52, 47, 0.55) !important;
  margin-bottom: 0.3rem !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
}

.pom-section {
  display: flex !important;
  flex-direction: column !important;
}

.pom-section--grow { flex: 1 !important; }

.pom-row-2col {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 0.75rem !important;
  align-items: end !important;
}

/* Size picker */
.pom-size-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.45rem !important;
}

.pom-size-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 0.6rem 0.3rem !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(190, 159, 120, 0.28) !important;
  background: rgba(255, 253, 249, 0.6) !important;
  color: #3a2820 !important;
  cursor: pointer !important;
  gap: 0.12rem !important;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
  box-shadow: none !important;
}

.pom-size-btn:hover {
  border-color: #a95568 !important;
  background: rgba(169, 85, 104, 0.07) !important;
  transform: translateY(-1px) !important;
}

.pom-size-btn.is-active {
  border-color: #a95568 !important;
  background: rgba(169, 85, 104, 0.1) !important;
  box-shadow: 0 0 0 2px rgba(169, 85, 104, 0.15) !important;
}

.pom-size-btn-name {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: #2c1c18 !important;
}

.pom-size-btn-price {
  font-size: 0.68rem !important;
  color: rgba(44, 28, 24, 0.62) !important;
}

/* Qty stepper */
.pom-qty {
  display: flex !important;
  align-items: center !important;
  border: 1px solid rgba(190, 159, 120, 0.32) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(255, 253, 249, 0.9) !important;
  width: 108px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.pom-qty-btn {
  width: 34px !important;
  height: 44px !important;
  font-size: 1.05rem !important;
  border: none !important;
  background: transparent !important;
  color: #2c1c18 !important;
  cursor: pointer !important;
  transition: background 0.14s ease !important;
  flex-shrink: 0 !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
}

.pom-qty-btn:hover {
  background: rgba(169, 85, 104, 0.1) !important;
  color: #a95568 !important;
}

.pom-qty #productOptionsQty {
  flex: 1 !important;
  min-width: 0 !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  color: #2c1c18 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 0 !important;
  -moz-appearance: textfield !important;
  min-height: 0 !important;
  height: auto !important;
}

.pom-qty #productOptionsQty::-webkit-inner-spin-button,
.pom-qty #productOptionsQty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Vase select */
.pom-section select,
.pom-row-2col select {
  min-height: 46px !important;
  height: auto !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(190, 159, 120, 0.24) !important;
  color: #2c1c18 !important;
  font-size: 0.9rem !important;
  padding: 0 12px !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* Gift message textarea */
.pom-panel textarea {
  min-height: 68px !important;
  height: auto !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(190, 159, 120, 0.24) !important;
  color: #2c1c18 !important;
  font-size: 0.9rem !important;
  padding: 10px 12px !important;
  resize: vertical !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
  line-height: 1.5 !important;
}

/* Add-ons collapsible */
.pom-addons {
  border: 1px solid rgba(190, 159, 120, 0.22) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: rgba(248, 241, 236, 0.6) !important;
}

.pom-addons-header {
  padding: 0.65rem 0.9rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(70, 52, 47, 0.72) !important;
  cursor: pointer !important;
  list-style: none !important;
  user-select: none !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
  background: transparent !important;
}

.pom-addons-header::-webkit-details-marker { display: none; }
.pom-addons-header::marker { display: none; }

.pom-addons[open] .pom-addons-header {
  border-bottom: 1px solid rgba(190, 159, 120, 0.18) !important;
}

.pom-addons > .product-addon-list {
  padding: 0.75rem !important;
  margin: 0 !important;
  background: rgba(255, 253, 249, 0.9) !important;
}

.pom-optional {
  font-weight: 400 !important;
  opacity: 0.55 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-left: 0.3rem !important;
}

/* Promise strip */
.pom-panel .product-options-promise {
  flex-direction: column !important;
  font-size: 0.8rem !important;
  color: rgba(70, 52, 47, 0.62) !important;
  gap: 3px !important;
}

/* Footer */
.pom-footer {
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  padding-top: 0.8rem !important;
  border-top: 1px solid rgba(190, 159, 120, 0.18) !important;
}

.pom-total {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
}

.pom-total span {
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: rgba(70, 52, 47, 0.55) !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
}

.pom-total strong {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #2c1c18 !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
}

.pom-cta-btn {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  border-radius: 16px !important;
  border: none !important;
  background: linear-gradient(135deg, #a95568, #c77d8b) !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  box-shadow: 0 14px 30px rgba(169, 85, 104, 0.22) !important;
  padding: 0.8rem 1.5rem !important;
  font-size: 0.9rem !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
}

.pom-cta-btn:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.06) !important;
  box-shadow: 0 18px 36px rgba(169, 85, 104, 0.28) !important;
}

.product-options-note {
  font-size: 0.8rem !important;
  color: rgba(70, 52, 47, 0.52) !important;
  text-align: center !important;
  margin: 0 !important;
  font-family: var(--fb-font-ui, system-ui, sans-serif) !important;
}

@media (max-width: 860px) {
  .product-options-layout {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .pom-visual {
    border-radius: 12px !important;
    height: 220px !important;
    min-height: 0 !important;
  }

  .pom-visual .product-options-image-wrap {
    position: absolute !important;
    inset: 0 !important;
    height: 220px !important;
    aspect-ratio: auto !important;
  }

  .pom-panel {
    border-radius: 12px !important;
    border-left: none !important;
    border-top: 1px solid rgba(190, 159, 120, 0.18) !important;
    max-height: none !important;
    overflow-y: visible !important;
  }
}

@media (max-width: 620px) {
  .pom-row-2col {
    grid-template-columns: 1fr !important;
  }

  .pom-panel {
    padding: 1.1rem 1rem 1rem !important;
  }
}

/* ---------- HERO REPAIR: product-led, responsive first view ---------- */
body[data-page='home'] {
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7efe8 54%, #efe3da 100%) !important;
}

body[data-page='home'] .home-stage {
  min-height: calc(100dvh - var(--home-header-height, 78px));
  background:
    linear-gradient(112deg, rgba(255, 253, 249, 0.98) 0%, rgba(250, 241, 235, 0.96) 48%, rgba(238, 222, 214, 0.98) 100%) !important;
  color: #14263d;
}

body[data-page='home'] .home-stage::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.16) 44%, rgba(122, 72, 82, 0.08) 100%) !important;
  animation: none !important;
}

body[data-page='home'] .home-stage-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.68) 42%, rgba(255, 253, 249, 0.08) 100%) !important;
}

body[data-page='home'] .hero-stage {
  z-index: 0;
  transform: none !important;
}

body[data-page='home'] .hero-slide-item {
  background-size: min(48vw, 680px) auto !important;
  background-position: right 5vw center !important;
  background-color: transparent !important;
  opacity: 0 !important;
  filter: saturate(1.02) contrast(1.02) !important;
  transform: none !important;
  transition: opacity 900ms ease !important;
}

body[data-page='home'] .hero-slide-item::before,
body[data-page='home'] .hero-slide-item::after {
  display: none !important;
}

body[data-page='home'] .hero-slide-item.active {
  opacity: 0.12 !important;
  animation: none !important;
}

body[data-page='home'] .page-petal-rain {
  display: none !important;
}

body[data-page='home'] .home-stage-shell {
  align-items: center;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 3vw, 2.5rem) !important;
}

body[data-page='home'] .home-stage-frame {
  width: min(1300px, 100%);
  min-height: clamp(600px, calc(100dvh - var(--home-header-height, 78px) - 3rem), 780px);
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

body[data-page='home'] .home-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: clamp(1.6rem, 5vw, 4.8rem);
  align-items: center;
  justify-content: initial;
  padding: 0 !important;
}

body[data-page='home'] .home-stage-frame .hero-stage,
body[data-page='home'] .home-stage-frame .home-stage-overlay {
  border-radius: 0 !important;
}

body[data-page='home'] .home-spotlight-drop {
  justify-content: flex-start;
  transform: none !important;
}

body[data-page='home'] .home-spotlight {
  align-items: flex-start;
  max-width: 760px;
}

body[data-page='home'] .home-hanging-title-wrap {
  animation: none !important;
  padding: 0 !important;
}

body[data-page='home'] .home-hanging-title-wrap::before {
  display: none !important;
}

body[data-page='home'] .home-spotlight h1 {
  max-width: 10.2ch;
  text-align: left;
  font-size: clamp(3.55rem, 7.2vw, 7.1rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  color: #132741 !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
  animation: none !important;
}

body[data-page='home'] .home-cinematic-copy {
  margin-top: clamp(1.25rem, 3vh, 2.1rem);
  justify-items: start;
  gap: clamp(0.8rem, 1.5vh, 1.1rem);
}

body[data-page='home'] .home-spotlight-tagline {
  max-width: 15ch;
  text-align: left;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 0.98;
  color: #20314a !important;
  text-shadow: none !important;
}

body[data-page='home'] .home-spotlight-mantra {
  margin: 0;
  max-width: 39rem;
  text-align: left;
  color: rgba(32, 49, 74, 0.76) !important;
  text-shadow: none !important;
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.65;
}

body[data-page='home'] .home-rhythm-shell {
  display: none !important;
}

body[data-page='home'] .home-hero-actions {
  justify-content: flex-start;
  margin-top: 0.65rem;
}

body[data-page='home'] .home-hero-actions .btn {
  min-height: 50px;
  border-radius: 999px;
  animation: none !important;
  box-shadow: 0 16px 34px rgba(156, 83, 101, 0.22);
}

body[data-page='home'] .home-hero-proof {
  justify-content: flex-start;
  gap: 0.55rem;
}

body[data-page='home'] .home-hero-proof span {
  min-height: 34px;
  border-color: rgba(35, 55, 82, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(32, 49, 74, 0.78);
  box-shadow: 0 10px 22px rgba(75, 52, 55, 0.06);
  animation: none !important;
}

.home-hero-visual {
  position: relative;
  min-height: clamp(430px, 54vw, 650px);
  display: block;
  isolation: isolate;
}

.home-hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% 2% 2% 10%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(203, 126, 143, 0.2), rgba(255, 255, 255, 0.2) 48%, rgba(31, 55, 76, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  transform: rotate(-2deg);
}

.home-hero-product {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(82, 56, 56, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 58px rgba(76, 47, 51, 0.16);
}

.home-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(0.45rem, 1.2vw, 0.9rem);
}

.home-hero-product-main {
  inset: 6% 4% 10% 13%;
  z-index: 2;
}

.home-hero-product-top {
  top: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 1 / 1;
  z-index: 3;
  transform: rotate(-5deg);
}

.home-hero-product-bottom {
  right: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 0.88 / 1;
  z-index: 3;
  transform: rotate(4deg);
}

body[data-page='allflowers'] .collections-hero.page-hero {
  position: relative;
  display: flex !important;
  align-items: center;
  min-height: clamp(570px, calc(100dvh - 78px), 760px) !important;
  padding: clamp(2rem, 4vw, 4rem) 0 !important;
  background:
    linear-gradient(112deg, #fffdf9 0%, #f8eee7 50%, #efe1d8 100%) !important;
  overflow: hidden !important;
}

body[data-page='allflowers'] .collections-hero.page-hero::before {
  content: '';
  position: absolute;
  inset: 0 !important;
  z-index: 1;
  width: auto !important;
  height: auto !important;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 253, 249, 0.78) 42%, rgba(255, 253, 249, 0.15) 100%) !important;
  box-shadow: none !important;
  pointer-events: none;
}

body[data-page='allflowers'] .collections-hero-stage {
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  min-height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page='allflowers'] .collections-hero-stage::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 1) 0%, rgba(255, 253, 249, 0.76) 44%, rgba(255, 253, 249, 0.32) 100%) !important;
}

body[data-page='allflowers'] .collections-hero-slide {
  background-size: min(45vw, 640px) auto !important;
  background-position: right 6vw center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  opacity: 0 !important;
  filter: saturate(1.02) contrast(1.02) !important;
  transform: none !important;
}

body[data-page='allflowers'] .collections-hero-slide::before {
  display: none !important;
}

body[data-page='allflowers'] .collections-hero-slide.is-active {
  opacity: 0.1 !important;
  transform: none !important;
}

body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
  position: relative;
  z-index: 3;
  display: grid !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.78fr);
  gap: clamp(1.6rem, 5vw, 4.6rem);
  align-items: center;
  width: min(100% - 2.4rem, var(--container));
  min-height: 0;
  padding-inline: 0 !important;
}

body[data-page='allflowers'] .collections-hero-copy {
  display: grid !important;
  gap: 0.85rem;
  max-width: 720px;
}

body[data-page='allflowers'] .breadcrumb {
  display: block !important;
  color: rgba(32, 49, 74, 0.62) !important;
}

body[data-page='allflowers'] .breadcrumb a {
  color: rgba(32, 49, 74, 0.78);
}

body[data-page='allflowers'] .collections-hero-scene {
  display: inline-flex !important;
  width: fit-content;
  color: #9f5868 !important;
}

body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] {
  max-width: 11ch;
  min-height: 0 !important;
  margin: 0;
  color: #132741;
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
}

body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] span {
  display: block;
  white-space: normal !important;
}

body[data-page='allflowers'] .collections-hero-copy [data-collections-hero-description] {
  display: block !important;
  max-width: 40rem;
  min-height: 0 !important;
  color: rgba(32, 49, 74, 0.76) !important;
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.65;
}

body[data-page='allflowers'] .collections-hero-actions {
  display: flex !important;
  gap: 0.7rem;
  margin-top: 0.55rem;
}

body[data-page='allflowers'] .collections-hero-actions .btn {
  min-height: 48px;
  border-radius: 999px;
}

body[data-page='allflowers'] .collections-hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(30, 48, 72, 0.14);
  color: #20314a;
}

body[data-page='allflowers'] .collections-hero-shortcuts {
  display: flex !important;
  margin-top: 0.65rem;
}

body[data-page='allflowers'] .collections-hero-shortcuts .category-chip {
  border-color: rgba(32, 49, 74, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(32, 49, 74, 0.78);
  box-shadow: 0 9px 20px rgba(75, 52, 55, 0.05);
}

body[data-page='allflowers'] .collections-hero-shortcuts .category-chip:hover,
body[data-page='allflowers'] .collections-hero-shortcuts .category-chip.is-active {
  border-color: rgba(184, 107, 115, 0.34);
  background: rgba(255, 246, 247, 0.95);
  color: #8f4e5f;
}

body[data-page='allflowers'] .collections-hero-indicators {
  display: inline-flex !important;
}

body[data-page='allflowers'] .collections-hero-indicators button {
  background: rgba(32, 49, 74, 0.18);
}

body[data-page='allflowers'] .collections-hero-indicators button.is-active {
  background: #b86b73;
}

.collections-hero-product-stack {
  position: relative;
  display: block !important;
  min-height: clamp(410px, 48vw, 610px);
  isolation: isolate;
}

.collections-hero-product-stack::before {
  content: '';
  position: absolute;
  inset: 10% 4% 5% 10%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(184, 107, 115, 0.18), rgba(255, 255, 255, 0.18) 50%, rgba(38, 65, 89, 0.12));
  transform: rotate(2.5deg);
}

.collections-hero-product {
  position: absolute;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(82, 56, 56, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 58px rgba(76, 47, 51, 0.16);
}

.collections-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(0.45rem, 1.2vw, 0.9rem);
}

.collections-hero-product-main {
  inset: 5% 8% 9% 9%;
  z-index: 2;
}

.collections-hero-product-left {
  left: 0;
  bottom: 5%;
  width: 38%;
  aspect-ratio: 0.88 / 1;
  z-index: 3;
  transform: rotate(-4deg);
}

.collections-hero-product-right {
  top: 0;
  right: 0;
  width: 36%;
  aspect-ratio: 0.9 / 1;
  z-index: 3;
  transform: rotate(5deg);
}

@media (max-width: 980px) {
  body[data-page='home'] .home-stage-grid,
  body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='home'] .home-stage-frame,
  body[data-page='allflowers'] .collections-hero.page-hero {
    min-height: auto !important;
  }

  body[data-page='home'] .home-spotlight h1,
  body[data-page='home'] .home-spotlight-tagline,
  body[data-page='home'] .home-spotlight-mantra,
  body[data-page='allflowers'] .page-hero h1[data-collections-hero-title],
  body[data-page='allflowers'] .collections-hero-copy [data-collections-hero-description] {
    max-width: 100%;
  }

  .home-hero-visual,
  .collections-hero-product-stack {
    min-height: 420px;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  body[data-page='home'] .home-stage-shell,
  body[data-page='allflowers'] .collections-hero.page-hero {
    padding-block: 1.4rem 2.2rem !important;
  }

  body[data-page='home'] .home-spotlight h1,
  body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] {
    font-size: clamp(2.65rem, 14vw, 4.15rem);
  }

  body[data-page='home'] .home-spotlight-tagline {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  body[data-page='home'] .home-hero-actions,
  body[data-page='allflowers'] .collections-hero-actions {
    width: 100%;
  }

  body[data-page='home'] .home-hero-actions .btn,
  body[data-page='allflowers'] .collections-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-hero-visual,
  .collections-hero-product-stack {
    min-height: 330px;
  }

  .home-hero-product,
  .collections-hero-product {
    border-radius: 18px;
  }

  body[data-page='home'] .home-hero-proof,
  body[data-page='allflowers'] .collections-hero-shortcuts {
    gap: 0.45rem;
  }
}

@media (max-width: 900px) {
  html body .site-header.floral-header.utility-header.home-utility-header .header-utilities {
    justify-self: center !important;
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn,
  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn.btn-sm {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

/* ---------- HERO REPAIR LOCK: bypass legacy animated title/card rules ---------- */
html body[data-page='home'] .home-stage-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr) !important;
  gap: clamp(1.8rem, 5vw, 5rem) !important;
  align-items: center !important;
}

.home-hero-copy-wrap {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  transform: none !important;
}

.home-hero-copy-panel {
  display: grid;
  gap: clamp(0.95rem, 1.7vh, 1.25rem);
  max-width: 720px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero-copy-panel h1 {
  margin: 0;
  max-width: 10.5ch;
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 7.3vw, 7.25rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: #132741;
}

.home-hero-lede {
  margin: 0;
  max-width: 40rem;
  color: rgba(32, 49, 74, 0.76);
  font-size: clamp(1rem, 1.22vw, 1.17rem);
  line-height: 1.66;
}

html body[data-page='home'] .home-hero-copy-panel .home-hero-actions,
html body[data-page='home'] .home-hero-copy-panel .home-hero-proof {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

html[data-allflowers-state='ready'] body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
  opacity: 1 !important;
  visibility: visible !important;
}

html[data-allflowers-state='ready'] body[data-page='allflowers']::before,
html[data-allflowers-state='ready'] body[data-page='allflowers']::after {
  display: none !important;
}

html body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
  opacity: 1 !important;
  filter: none !important;
}

@media (max-width: 980px) {
  html body[data-page='home'] .home-stage-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero-copy-panel h1 {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .site-header.floral-header.utility-header.home-utility-header .container {
    width: 100% !important;
    padding-inline: 1rem !important;
  }

  .site-header.floral-header.utility-header.home-utility-header .utility-header-main {
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    padding-block: 0.55rem !important;
  }

  .site-header.floral-header.utility-header.home-utility-header .utility-brand {
    justify-self: center !important;
  }

  .site-header.floral-header.utility-header.home-utility-header .header-utilities {
    justify-self: center !important;
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
  }

  .site-header.floral-header.utility-header.home-utility-header .header-phone-pill,
  .site-header.floral-header.utility-header.home-utility-header .header-account-actions {
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-header.floral-header.utility-header.home-utility-header .header-account-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 0.55rem !important;
  }

  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn,
  html body .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn.btn-sm {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 0.55rem !important;
  }

  .home-hero-copy-panel {
    width: 100%;
    min-width: 0;
    gap: 0.85rem;
  }

  .home-hero-copy-panel h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 14vw, 4.25rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .home-hero-lede {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  html body[data-page='home'] .home-stage-shell,
  html body[data-page='home'] .home-stage-frame,
  html body[data-page='home'] .home-stage-grid,
  html body[data-page='home'] .home-hero-copy-wrap,
  html body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid,
  html body[data-page='allflowers'] .collections-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html body[data-page='home'] .home-stage-shell,
  html body[data-page='allflowers'] .collections-hero.page-hero {
    padding-inline: 1rem !important;
  }

  html body[data-page='home'] .home-hero-actions,
  html body[data-page='allflowers'] .collections-hero-actions {
    max-width: calc(100vw - 2rem) !important;
  }

  html body[data-page='allflowers'] .page-hero h1[data-collections-hero-title] {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  html body[data-page='allflowers'] .collections-hero-copy [data-collections-hero-description] {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  html body[data-page='home'] .home-hero-actions .btn,
  html body[data-page='allflowers'] .collections-hero-actions .btn {
    max-width: 100%;
  }
}

/* ---------- HERO SLIDE FRAME RESTORE ---------- */
html body[data-page='home'] .home-stage,
html body[data-page='allflowers'] .collections-hero.page-hero {
  position: relative !important;
  overflow: hidden !important;
  background: #07131f !important;
}

html body[data-page='home'] .home-stage {
  min-height: calc(100dvh - var(--home-header-height, 78px)) !important;
}

html body[data-page='allflowers'] .collections-hero.page-hero {
  display: flex !important;
  align-items: center !important;
  min-height: calc(100dvh - var(--home-header-height, 78px)) !important;
  padding: 0 !important;
}

html body[data-page='home'] .hero-stage,
html body[data-page='allflowers'] .collections-hero-stage {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

html body[data-page='home'] .hero-slide-item,
html body[data-page='allflowers'] .collections-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  opacity: 0 !important;
  transform: scale(1.02) !important;
  filter: saturate(1.08) contrast(1.05) brightness(0.82) !important;
  transition: opacity 950ms ease, transform 4200ms ease !important;
}

html body[data-page='home'] .hero-slide-item.active,
html body[data-page='allflowers'] .collections-hero-slide.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

html body[data-page='home'] .home-stage-overlay,
html body[data-page='allflowers'] .collections-hero.page-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 247, 239, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(4, 13, 22, 0.58), rgba(6, 16, 25, 0.2) 48%, rgba(4, 13, 22, 0.58)),
    linear-gradient(180deg, rgba(5, 12, 18, 0.2), rgba(5, 12, 18, 0.74)) !important;
  pointer-events: none !important;
}

html body[data-page='home'] .home-stage-shell,
html body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100dvh - var(--home-header-height, 78px)) !important;
  padding: clamp(1rem, 3vw, 2.4rem) !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

html body[data-page='home'] .home-stage-frame,
html body[data-page='home'] .home-stage-grid,
html body[data-page='home'] .home-spotlight-drop,
html body[data-page='allflowers'] .collections-hero-loop-frame {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

html body[data-page='home'] .home-stage-grid {
  grid-template-columns: none !important;
  gap: 0 !important;
}

html body[data-page='home'] .home-hero-copy-wrap,
html body[data-page='home'] .home-hero-visual,
html body[data-page='allflowers'] .collections-hero-product-stack {
  display: none !important;
}

html body[data-page='home'] .home-spotlight,
html body[data-page='allflowers'] .collections-loop-spotlight {
  position: relative !important;
  z-index: 4 !important;
  display: grid !important;
  justify-items: center !important;
  gap: clamp(0.75rem, 1.45vw, 1.25rem) !important;
  width: min(1120px, 92vw) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: clamp(1.05rem, 2.45vw, 2rem) clamp(1rem, 3.5vw, 2.65rem) !important;
  border: 1px solid rgba(207, 226, 241, 0.34) !important;
  border-radius: clamp(22px, 2.3vw, 34px) !important;
  background:
    linear-gradient(155deg, rgba(9, 24, 36, 0.86), rgba(9, 28, 39, 0.72)),
    radial-gradient(circle at 18% 8%, rgba(236, 245, 253, 0.15), transparent 36%) !important;
  box-shadow: 0 28px 90px rgba(2, 8, 14, 0.48) !important;
  backdrop-filter: blur(13px) saturate(1.04) !important;
  text-align: center !important;
  transform: none !important;
}

html body[data-page='home'] .home-hanging-title-wrap,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hanging-title-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 980px) !important;
  margin: 0 auto !important;
  padding: clamp(0.48rem, 1vw, 0.8rem) clamp(0.75rem, 2vw, 1.35rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 6px !important;
  background: rgba(250, 246, 238, 0.94) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 32px rgba(0, 0, 0, 0.16) !important;
  overflow: hidden !important;
  animation: none !important;
}

html body[data-page='home'] .home-hanging-title-wrap::before,
html body[data-page='home'] .home-hanging-title-wrap::after,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hanging-title-wrap::before,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hanging-title-wrap::after {
  display: none !important;
}

html body[data-page='home'] .home-spotlight h1,
html body[data-page='allflowers'] .collections-loop-spotlight h1 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  color: #102641 !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  text-align: center !important;
  text-transform: uppercase !important;
  font-family: var(--font-head) !important;
  font-size: clamp(1.22rem, 2.45vw, 2.05rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: 0.16em !important;
  text-shadow: none !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  white-space: normal !important;
}

html body[data-page='home'] .home-spotlight h1 {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  column-gap: 0.34em !important;
  row-gap: 0.08em !important;
}

html body[data-page='allflowers'] .collections-loop-spotlight h1 {
  display: block !important;
}

html body[data-page='home'] .home-spotlight h1 .home-headline-word {
  display: inline-block !important;
  margin: 0 !important;
  color: inherit !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

html body[data-page='home'] .home-cinematic-copy,
html body[data-page='allflowers'] .collections-loop-spotlight .home-cinematic-copy {
  display: grid !important;
  justify-items: center !important;
  gap: clamp(0.62rem, 1.35vw, 1rem) !important;
  width: 100% !important;
  opacity: 1 !important;
  transform: none !important;
}

html body[data-page='home'] .home-spotlight-tagline,
html body[data-page='allflowers'] .collections-loop-spotlight .home-spotlight-tagline {
  width: 100% !important;
  max-width: min(94vw, 760px) !important;
  margin: 0 auto !important;
  color: rgba(245, 249, 253, 0.98) !important;
  font-family: var(--font-head) !important;
  font-size: clamp(1.55rem, 3vw, 2.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  text-align: center !important;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.38) !important;
  opacity: 1 !important;
  transform: none !important;
}

html body[data-page='home'] .home-spotlight-mantra,
html body[data-page='allflowers'] .collections-loop-spotlight .home-spotlight-mantra {
  width: 100% !important;
  max-width: min(92vw, 780px) !important;
  margin: 0 auto !important;
  color: rgba(231, 239, 247, 0.94) !important;
  font-family: var(--font-body, Inter, sans-serif) !important;
  font-size: clamp(1rem, 1.35vw, 1.22rem) !important;
  font-weight: 650 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.36) !important;
  opacity: 1 !important;
  transform: none !important;
}

html body[data-page='home'] .home-rhythm-shell,
html body[data-page='allflowers'] .collections-loop-spotlight .home-rhythm-shell {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: clamp(70px, 9vh, 108px) !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

html body[data-page='home'] .home-rhythm-line,
html body[data-page='allflowers'] .collections-loop-spotlight .home-rhythm-line {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.24rem !important;
  width: 100% !important;
  max-width: min(92vw, 760px) !important;
  margin: 0 auto !important;
  color: rgba(248, 250, 253, 0.96) !important;
  font-family: var(--font-body, Inter, sans-serif) !important;
  font-size: clamp(0.92rem, 1.18vw, 1.08rem) !important;
  font-weight: 700 !important;
  line-height: 1.34 !important;
  letter-spacing: 0.08em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

html body[data-page='home'] .home-rhythm-line-item,
html body[data-page='allflowers'] .collections-loop-spotlight .home-rhythm-line-item {
  display: block !important;
  opacity: 1;
  transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
}

html body[data-page='home'] .home-rhythm-line-item.is-fading,
html body[data-page='allflowers'] .collections-loop-spotlight .home-rhythm-line-item.is-fading {
  opacity: 0;
  transform: translate3d(0, -7px, 0);
  filter: blur(0.8px);
}

html body[data-page='home'] .home-hero-actions,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  opacity: 1 !important;
  transform: none !important;
}

html body[data-page='home'] .home-hero-actions .btn,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-actions .btn {
  min-height: 46px !important;
  border-radius: 999px !important;
  padding-inline: clamp(1rem, 2vw, 1.45rem) !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-actions .btn-ghost {
  border-color: rgba(225, 237, 247, 0.46) !important;
  color: rgba(244, 249, 253, 0.96) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

html body[data-page='home'] .home-hero-proof,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-proof {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  width: 100% !important;
  max-width: min(92vw, 760px) !important;
  margin: 0 auto !important;
  opacity: 1 !important;
  transform: none !important;
}

html body[data-page='home'] .home-hero-proof span,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-proof span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  border: 1px solid rgba(217, 235, 248, 0.35) !important;
  border-radius: 999px !important;
  padding: 0.45rem 0.82rem !important;
  color: rgba(235, 244, 251, 0.92) !important;
  background: rgba(6, 18, 29, 0.48) !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 760px) {
  html body[data-page='home'] .home-stage,
  html body[data-page='allflowers'] .collections-hero.page-hero {
    min-height: calc(100svh - var(--home-header-height, 118px)) !important;
  }

  html body[data-page='home'] .home-stage-shell,
  html body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
    min-height: calc(100svh - var(--home-header-height, 118px)) !important;
    padding: 0.85rem !important;
  }

  html body[data-page='home'] .home-spotlight,
  html body[data-page='allflowers'] .collections-loop-spotlight {
    width: min(100%, calc(100vw - 1.15rem)) !important;
    padding: 0.9rem 0.78rem 1rem !important;
    border-radius: 22px !important;
    gap: 0.62rem !important;
  }

  html body[data-page='home'] .home-hanging-title-wrap,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-hanging-title-wrap {
    width: 100% !important;
    padding: 0.48rem 0.52rem !important;
  }

  html body[data-page='home'] .home-spotlight h1,
  html body[data-page='allflowers'] .collections-loop-spotlight h1 {
    font-size: clamp(0.95rem, 4.6vw, 1.34rem) !important;
    line-height: 1.16 !important;
    letter-spacing: 0.09em !important;
  }

  html body[data-page='home'] .home-spotlight-tagline,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-spotlight-tagline {
    font-size: clamp(1.28rem, 7vw, 1.8rem) !important;
  }

  html body[data-page='home'] .home-spotlight-mantra,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-spotlight-mantra {
    font-size: 0.92rem !important;
    line-height: 1.42 !important;
  }

  html body[data-page='home'] .home-rhythm-shell,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-rhythm-shell {
    min-height: 82px !important;
  }

  html body[data-page='home'] .home-rhythm-line,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-rhythm-line {
    font-size: 0.78rem !important;
    line-height: 1.32 !important;
    letter-spacing: 0.04em !important;
  }

  html body[data-page='home'] .home-hero-actions,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-actions {
    width: 100% !important;
  }

  html body[data-page='home'] .home-hero-actions .btn,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-actions .btn {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: center !important;
  }

  html body[data-page='home'] .home-hero-proof span,
  html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-proof span {
    font-size: 0.72rem !important;
    padding-inline: 0.64rem !important;
  }
}

@media (min-width: 761px) {
  html body[data-page='home'] {
    --home-header-height: 64px !important;
  }

  html body[data-page='allflowers'] {
    --home-header-height: 68px !important;
  }

  html body[data-page='home'] .home-stage,
  html body[data-page='allflowers'] .collections-hero.page-hero {
    height: calc(100vh + var(--home-header-height)) !important;
    min-height: calc(100vh + var(--home-header-height)) !important;
    max-height: none !important;
  }

  html body[data-page='home'] .home-stage-shell,
  html body[data-page='allflowers'] .collections-hero.page-hero .collections-hero-grid {
    height: 100% !important;
    min-height: 100% !important;
  }

  html body[data-page='home'] .hero-slide-item,
  html body[data-page='allflowers'] .collections-hero-slide {
    background-position: center 34% !important;
  }
}

html body[data-page='home'] .home-cinematic-copy,
html body[data-page='home'] .home-cinematic-copy *,
html body[data-page='allflowers'] .collections-loop-spotlight .home-cinematic-copy,
html body[data-page='allflowers'] .collections-loop-spotlight .home-cinematic-copy *,
html body[data-page='home'] .home-hero-proof span,
html body[data-page='allflowers'] .collections-loop-spotlight .home-hero-proof span {
  filter: none !important;
}

body[data-page='allflowers'] .sticky-cart-cta.is-empty {
  display: none !important;
}

@media (max-width: 760px) {
  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .container {
    width: 100% !important;
    padding-inline: 1rem !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .utility-header-main {
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    height: auto !important;
    min-height: 0 !important;
    padding-block: 0.55rem 0.7rem !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .utility-brand {
    justify-self: center !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .header-utilities {
    justify-self: center !important;
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .header-phone-pill,
  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .header-account-actions {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .header-account-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem !important;
  }

  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn,
  html body[data-page='allflowers'] .site-header.floral-header.utility-header.home-utility-header .header-account-actions .btn.btn-sm {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 0.42rem !important;
    font-size: 0.72rem !important;
  }
}

/* ---------- HOME HERO: transparent editorial photo layer ---------- */
html body[data-page='home'] .home-stage {
  background: #030304 !important;
}

html body[data-page='home'] .home-stage::before,
html body[data-page='home'] .home-stage-overlay,
html body[data-page='home'] .hero-slide-item::before,
html body[data-page='home'] .hero-slide-item::after,
html body[data-page='home'] .page-petal-rain {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

html body[data-page='home'] .hero-slide-item {
  background-size: cover !important;
  background-position: var(--hero-slide-position, center center) !important;
  background-color: #030304 !important;
  filter: saturate(1.08) contrast(1.05) brightness(0.94) !important;
}

html body[data-page='home'] .hero-slide-item.active {
  opacity: 1 !important;
}

html body[data-page='home'] .home-stage-frame,
html body[data-page='home'] .home-stage-grid,
html body[data-page='home'] .home-spotlight,
html body[data-page='home'] .home-hanging-title-wrap {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

html body[data-page='home'] .home-spotlight {
  padding: clamp(1rem, 2.4vw, 2rem) !important;
  border-radius: 0 !important;
}

html body[data-page='home'] .home-hanging-title-wrap {
  padding: 0 !important;
  border-radius: 0 !important;
}

html body[data-page='home'] .home-spotlight h1 {
  color: #fff7ef !important;
  -webkit-text-fill-color: #fff7ef !important;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.78),
    0 10px 34px rgba(0, 0, 0, 0.5) !important;
}

html body[data-page='home'] .home-hero-proof span {
  background: transparent !important;
  border-color: rgba(255, 247, 239, 0.48) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

@media (max-width: 760px) {
  html body[data-page='home'] .home-stage {
    overflow: hidden !important;
  }

  html body[data-page='home'] .home-spotlight {
    width: min(340px, calc(100vw - 1.4rem)) !important;
    max-width: calc(100vw - 1.4rem) !important;
    padding: 0.8rem 0.7rem 0.95rem !important;
  }

  html body[data-page='home'] .home-hanging-title-wrap,
  html body[data-page='home'] .home-cinematic-copy,
  html body[data-page='home'] .home-spotlight-tagline,
  html body[data-page='home'] .home-spotlight-mantra,
  html body[data-page='home'] .home-rhythm-line {
    width: 100% !important;
    max-width: min(318px, calc(100vw - 2rem)) !important;
  }

  html body[data-page='home'] .home-spotlight h1 {
    display: block !important;
    width: 100% !important;
    max-width: min(318px, calc(100vw - 2rem)) !important;
    margin-inline: auto !important;
    font-size: clamp(0.88rem, 4.25vw, 1.12rem) !important;
    line-height: 1.28 !important;
    letter-spacing: 0.075em !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    white-space: normal !important;
  }

  html body[data-page='home'] .home-spotlight h1 .home-headline-word {
    display: inline !important;
  }

  html body[data-page='home'] .home-spotlight h1 .home-headline-word:not(:last-child)::after {
    content: ' ';
  }

  html body[data-page='home'] .home-spotlight-tagline {
    max-width: 100% !important;
    font-size: clamp(1.04rem, 5.8vw, 1.36rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  html body[data-page='home'] .home-spotlight-mantra {
    max-width: 100% !important;
    font-size: 0.88rem !important;
    line-height: 1.42 !important;
    overflow-wrap: break-word !important;
  }

  html body[data-page='home'] .home-rhythm-shell {
    min-height: 62px !important;
  }

  html body[data-page='home'] .home-rhythm-line {
    font-size: 0.72rem !important;
    line-height: 1.34 !important;
    letter-spacing: 0.035em !important;
  }

  html body[data-page='home'] .home-hero-actions,
  html body[data-page='home'] .home-hero-proof {
    width: 100% !important;
    max-width: min(330px, calc(100vw - 2rem)) !important;
  }

  html body[data-page='home'] .home-hero-actions .btn,
  html body[data-page='home'] .home-hero-proof span {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }
}

/* ---------- AUTH TEMPLATE + HOME PHONE ICON POLISH ---------- */
html body[data-page='home'] .site-header .header-phone-pill {
  gap: 8px !important;
}

html body[data-page='home'] .site-header .header-phone-pill > span:last-child {
  display: inline !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  color: inherit !important;
  font-size: 0.78rem !important;
}

html body[data-page='home'] .site-header .header-phone-pill .header-utility-icon {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  color: #c95778 !important;
  background: rgba(201, 87, 120, 0.12) !important;
  border: 1px solid rgba(201, 87, 120, 0.2) !important;
  box-shadow: none !important;
}

html body[data-page='home'] .site-header .header-phone-pill .header-utility-icon svg {
  width: 14px !important;
  height: 14px !important;
  display: block !important;
}

body[data-page='login'] #showPasswordResetRequest[hidden],
body[data-page='login'] #passwordResetRequestPanel[hidden],
body[data-page='login'] #passwordResetPanel[hidden] {
  display: none !important;
}

body[data-page='login'] #showPasswordResetRequest:not([hidden]) {
  display: inline-flex !important;
}

html body[data-page='login'] .member-entry-page,
html body[data-page='register'] .member-entry-page {
  min-height: calc(100dvh - var(--header-height, 78px)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(2rem, 5vw, 4.25rem) clamp(1rem, 3vw, 2rem) !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 87, 120, 0.13), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(60, 139, 190, 0.12), transparent 26rem),
    linear-gradient(180deg, #fffdf9 0%, #f8f1eb 100%) !important;
}

html body[data-page='login'] .member-entry-shell,
html body[data-page='register'] .member-entry-shell {
  width: min(100%, 1120px) !important;
  min-height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}

html body[data-page='login'] .member-entry-grid,
html body[data-page='register'] .member-entry-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.58fr) !important;
  gap: clamp(1.2rem, 2.3vw, 1.8rem) !important;
  align-items: stretch !important;
}

html body[data-page='register'] .member-entry-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr) !important;
}

html body[data-page='login'] .member-entry-card-auth,
html body[data-page='register'] .member-entry-card-auth,
html body[data-page='login'] .member-entry-aside,
html body[data-page='register'] .member-entry-aside {
  border-radius: 28px !important;
  box-shadow: 0 24px 70px rgba(57, 35, 42, 0.12) !important;
}

html body[data-page='login'] .member-entry-card-auth,
html body[data-page='register'] .member-entry-card-auth {
  padding: clamp(1.8rem, 3vw, 2.55rem) !important;
  background: rgba(255, 253, 249, 0.97) !important;
  border: 1px solid rgba(165, 119, 126, 0.16) !important;
  color: #2d1d22 !important;
}

html body[data-page='login'] .member-entry-aside,
html body[data-page='register'] .member-entry-aside {
  padding: clamp(1.6rem, 2.6vw, 2.3rem) !important;
  background:
    linear-gradient(158deg, rgba(16, 38, 65, 0.96), rgba(68, 38, 54, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(255, 222, 232, 0.16), transparent 22rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #f8fbff !important;
}

html body[data-page='login'] .member-entry-kicker,
html body[data-page='register'] .member-entry-kicker {
  margin-bottom: 0.7rem !important;
  color: #c95778 !important;
}

html body[data-page='login'] .member-entry-aside .member-entry-kicker,
html body[data-page='register'] .member-entry-aside .member-entry-kicker {
  color: rgba(255, 222, 232, 0.76) !important;
}

html body[data-page='login'] .member-entry-card h1,
html body[data-page='register'] .member-entry-card h1 {
  max-width: 12ch !important;
  margin: 0 0 0.75rem !important;
  color: #2d1d22 !important;
  font-size: clamp(2.35rem, 4vw, 3.85rem) !important;
  letter-spacing: 0 !important;
}

html body[data-page='login'] .member-entry-aside h2,
html body[data-page='register'] .member-entry-aside h2 {
  color: #ffffff !important;
  font-size: clamp(1.75rem, 2.5vw, 2.7rem) !important;
  letter-spacing: 0 !important;
}

html body[data-page='login'] .member-entry-card .member-entry-copy,
html body[data-page='register'] .member-entry-card .member-entry-copy {
  max-width: 58rem !important;
  margin: 0 0 clamp(1.3rem, 2vw, 1.75rem) !important;
  color: rgba(45, 29, 34, 0.7) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

html body[data-page='login'] .member-entry-aside .member-entry-copy,
html body[data-page='register'] .member-entry-aside .member-entry-copy,
html body[data-page='login'] .member-entry-points,
html body[data-page='register'] .member-entry-points {
  color: rgba(244, 249, 253, 0.86) !important;
}

html body[data-page='login'] .member-entry-form-auth,
html body[data-page='register'] .member-entry-form-auth {
  gap: 1.05rem !important;
}

html body[data-page='login'] .member-entry-row,
html body[data-page='register'] .member-entry-row {
  gap: 1rem !important;
}

html body[data-page='login'] .member-entry-row-three,
html body[data-page='register'] .member-entry-row-three {
  grid-template-columns: 1fr 0.45fr 0.58fr !important;
}

html body[data-page='login'] .member-entry-form label,
html body[data-page='register'] .member-entry-form label {
  margin-bottom: 0.4rem !important;
  color: rgba(45, 29, 34, 0.76) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.08em !important;
}

html body[data-page='login'] .member-entry-form input,
html body[data-page='register'] .member-entry-form input {
  min-height: 54px !important;
  padding: 0.9rem 1rem !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(118, 84, 91, 0.18) !important;
  color: #263548 !important;
  font-size: 0.98rem !important;
}

html body[data-page='login'] .member-entry-form input:focus,
html body[data-page='register'] .member-entry-form input:focus {
  border-color: rgba(201, 87, 120, 0.52) !important;
  box-shadow: 0 0 0 4px rgba(201, 87, 120, 0.13) !important;
}

html body[data-page='login'] .member-entry-actions,
html body[data-page='register'] .member-entry-actions {
  gap: 0.8rem !important;
  margin-top: 1.35rem !important;
}

html body[data-page='login'] .member-entry-submit,
html body[data-page='register'] .member-entry-submit {
  min-height: 52px !important;
  border-radius: 999px !important;
}

html body[data-page='login'] .member-entry-footnote,
html body[data-page='register'] .member-entry-footnote {
  margin-top: 1.35rem !important;
  padding-top: 1.1rem !important;
  border-top: 1px solid rgba(120, 84, 92, 0.12) !important;
  color: rgba(45, 29, 34, 0.66) !important;
}

html body[data-page='login'] .member-entry-footnote a,
html body[data-page='register'] .member-entry-footnote a {
  color: #b54f68 !important;
}

html body[data-page='login'] .member-entry-check,
html body[data-page='register'] .member-entry-check {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(118, 84, 91, 0.14) !important;
  color: rgba(45, 29, 34, 0.74) !important;
}

html body[data-page='login'] .member-entry-links a,
html body[data-page='register'] .member-entry-links a {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

html body[data-page='login'] #passwordResetRequestPanel:not([hidden]),
html body[data-page='login'] #passwordResetPanel:not([hidden]),
html body[data-page='login'] #signedInPanel:not([hidden]),
html body[data-page='register'] #signedInPanel:not([hidden]) {
  display: grid !important;
  gap: 1rem !important;
}

@media (max-width: 920px) {
  html body[data-page='login'] .member-entry-page,
  html body[data-page='register'] .member-entry-page {
    align-items: flex-start !important;
    padding-top: 1.4rem !important;
  }

  html body[data-page='login'] .member-entry-grid,
  html body[data-page='register'] .member-entry-grid {
    grid-template-columns: 1fr !important;
  }

  html body[data-page='login'] .member-entry-aside,
  html body[data-page='register'] .member-entry-aside {
    min-height: auto !important;
  }
}

@media (max-width: 640px) {
  html body[data-page='login'] .member-entry-page,
  html body[data-page='register'] .member-entry-page {
    padding-inline: 0.75rem !important;
  }

  html body[data-page='login'] .member-entry-card-auth,
  html body[data-page='register'] .member-entry-card-auth,
  html body[data-page='login'] .member-entry-aside,
  html body[data-page='register'] .member-entry-aside {
    border-radius: 22px !important;
    padding: 1.15rem !important;
  }

  html body[data-page='login'] .member-entry-row,
  html body[data-page='register'] .member-entry-row,
  html body[data-page='login'] .member-entry-row-three,
  html body[data-page='register'] .member-entry-row-three {
    grid-template-columns: 1fr !important;
  }

  html body[data-page='login'] .member-entry-actions,
  html body[data-page='register'] .member-entry-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  html body[data-page='login'] .member-entry-submit,
  html body[data-page='register'] .member-entry-submit {
    width: 100% !important;
  }
}
