:root {
  --cream: #f6eee1;
  --sage: #efe2cf;
  --leaf: #000000;
  --forest: #350201;
  --clay: #c01f21;
  --terracotta: #8d0308;
  --ink: #000000;
  --muted: #000000;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.2);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --header-image: url("assets/header-image.png");
  --fingerprint-image: url("assets/fingerprint.png");
}

* {
  box-sizing: border-box;
}

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

@supports (view-transition-name: none) {
  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 220ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
}

body {
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #FFFFFF;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: url("assets/rose-cursor.svg") 10 8, auto;
}

body::before {
  display: none;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  margin-top: -30px;
}

a,
button,
input,
select,
textarea,
label,
.menu-toggle {
  cursor: url("assets/rose-cursor.svg") 10 8, pointer;
}

h1,
h2,
h3,
h4 {
  font-family: Arial, sans-serif;
  line-height: 1.1;
  margin-top: 0;
}

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

p {
  text-align: justify;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.section-pad {
  padding: clamp(2.7rem, 6vw, 5.8rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #8E0000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  overflow: hidden;
  height: 120px;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(142, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

.nav-wrap {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.3rem;
  padding: 0;
  position: relative;
  z-index: 2;
}

.birthstone-regular {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  font-style: normal;
}

.site-title {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -10px;
  z-index: 2;
}

.site-title-banner {
  width: 324px;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
  padding-left: 340px;
  padding-right: 2rem;
  box-sizing: border-box;
}

.cart-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.5rem;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #8E0000;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 2px;
}

.site-nav a {
  padding: 0.32rem 0.6rem;
  border-radius: 7px;
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(27, 6, 6, 0.16);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.3rem;
  position: absolute;
  top: 1.1rem;
  right: 0;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--cream);
  margin: 0;
}

.site-header.nav-collapsed .menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  z-index: 12;
}

.site-header.nav-collapsed {
  overflow: visible;
}

.site-header.nav-collapsed .site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(142, 0, 0, 0.96);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 11;
}

.site-header.nav-collapsed .site-nav.open {
  display: flex;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
}

.hero::before {
  display: none;
}

.home-hero-copy {
  text-align: left;
}

.home-hero-copy .lead {
  margin: 0 0 1rem;
}

.home-hero-copy .lead:last-child {
  margin-bottom: 0;
}

body[data-page="cart"] .page-hero {
  background: transparent;
  padding-top: clamp(3.6rem, 7vw, 5.2rem);
  padding-bottom: clamp(2.6rem, 5vw, 3.4rem);
}

body[data-page="cart"] .page-hero .lead {
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  white-space: nowrap;
}

body[data-page="cart"] .cart-content {
  padding-top: clamp(2rem, 4vw, 2.8rem);
}

body[data-page="cart"] {
  background:
    linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
}

body[data-page="cart"] main {
  margin-top: 0;
}

body[data-page="cart"] .home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
  border-bottom: none;
}

body[data-page="cart"] .home-brand-logo {
  width: 200px;
}

body[data-page="cart"] .home-nav a:hover {
  color: #b5070d;
  border-bottom-color: rgba(181, 7, 13, 0.45);
}

body[data-page="cart"] .home-nav a.is-active {
  color: #b5070d;
  border-bottom-color: #b5070d;
  font-weight: 700;
}

body[data-page="cart"] .page-hero .narrow {
  width: min(900px, 92vw);
}

body[data-page="cart"] .page-hero .eyebrow {
  display: none;
}

body[data-page="cart"] .page-hero h1 {
  margin-bottom: 0.8rem;
  color: #0b0b0b;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5.6vw, 5rem);
  line-height: 0.95;
}

body[data-page="cart"] .page-hero .lead {
  color: #2f2f2f;
  font-size: 1.06rem;
}

body[data-page="home"] .hero::before {
  inset: clamp(5.6rem, 11vw, 7.8rem) auto auto 4%;
}

body[data-page="home"] .home-hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.page-hero h1,
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 0.6rem;
  color: #B30000;
}

.eyebrow {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(213, 7, 3, 0.12);
  color: #d50703;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

body[data-page="products"] .products-hero .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="products"] .product-card p {
  display: none;
}

.info-panel,
.product-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #CC0000;
}

.info-panel,
.contact-form,
.product-card {
  padding: 1.15rem;
}

.price {
  color: #CC0000;
  font-weight: 800;
}

.btn-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.66rem 1.15rem;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-solid {
  background: #ffffff;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border-color: rgba(0, 0, 0, 0.2);
  color: #000000;
  background: #ffffff;
}

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin-bottom: 0.8rem;
}

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

.cert-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin: 2rem 0 2.5rem;
  width: 100%;
}

.cert-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.cert-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.alt-bg {
  background: #ffffff;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.toolbar {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 11px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.search-wrap input {
  min-width: 300px;
  background: #ffffff;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}

.search-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.product-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.85rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

body[data-page="products"] .product-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  align-items: center;
}

body[data-page="products"] .product-card h3 {
  margin: 0;
  padding: 0;
  text-align: center;
}

body[data-page="products"] .product-card {
  gap: 0.55rem;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(53, 2, 1, 0.18);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}

.product-detail-media {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.8rem;
  color: #CC0000;
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product-detail-info .lead {
  margin-top: 0;
}

.packaging-copy {
  margin: 1rem 0;
  font-weight: 600;
}

.packaging-copy p {
  margin: 0 0 0.3rem;
  text-align: left;
}

.packaging-list {
  margin: 0;
  padding-left: 1.15rem;
}

.packaging-list li {
  text-align: left;
}

.detail-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  max-width: 320px;
}

.detail-controls label {
  font-weight: 700;
  margin-top: 0.45rem;
}

.order-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.qty-control button {
  border: 0;
  min-width: 2.2rem;
  height: 2.2rem;
  font-size: 1.2rem;
  font-weight: 800;
  background: transparent;
  color: var(--forest);
}

.qty-control span {
  min-width: 2.2rem;
  text-align: center;
  font-weight: 700;
}

.selection-summary {
  margin-top: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

.next-flower-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 800;
  color: var(--forest);
}

.next-flower-link:hover {
  transform: translateY(-1px);
}

.detail-nav-row {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  grid-column: 1 / -1;
  width: 100%;
  flex-wrap: nowrap;
}

body.product-detail-page .detail-nav-row {
  margin-top: 0;
  transform: translateY(-2rem);
}

.detail-nav-row .next-flower-link {
  margin-top: 0;
}

#nextFlowerBtn {
  margin-left: auto;
  text-align: right;
}

.delivery-notes {
  margin-top: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.delivery-notes p {
  margin: 0.2rem 0;
  text-align: left;
  font-weight: 600;
}

body.product-detail-page {
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
  overflow: hidden;
  height: 100vh;
}

body.product-detail-page main {
  margin-top: 0;
  height: calc(100vh - 90px);
}

body.product-detail-page .home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
  border-bottom: none;
}

body.product-detail-page .product-detail-section {
  background: transparent;
  height: 100%;
  padding-top: clamp(0.7rem, 1.8vw, 1.1rem);
  padding-bottom: clamp(0.6rem, 1.6vw, 1rem);
}

body.product-detail-page .product-detail-layout {
  height: 100%;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: clamp(1rem, 2.6vw, 2rem);
}

body.product-detail-page .product-detail-media {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(20, 14, 14, 0.08);
  padding: 0.45rem;
}

body.product-detail-page .product-detail-media img {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  object-fit: contain;
  background: #ffffff;
  max-height: min(48vh, 520px);
}

body.product-detail-page .detail-kicker {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c91b1d;
  font-weight: 800;
  font-size: 0.72rem;
}

body.product-detail-page .detail-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #c91b1d;
}

body.product-detail-page .product-detail-info h1 {
  margin-bottom: 0.55rem;
  color: #121212;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 3.8vw, 3.3rem);
  line-height: 0.95;
}

body.product-detail-page .back-to-roses-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(233, 78, 78, 0.45);
  border-radius: 999px;
  background: #ffffff;
  color: #e13232;
  font-weight: 800;
}

body.product-detail-page .product-detail-layout > .back-to-roses-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: 0.1rem;
}

body.product-detail-page .back-to-roses-link:hover {
  transform: translateY(-1px);
}

body.product-detail-page .packaging-copy {
  margin: 0 0 0.6rem;
  color: #1f1f1f;
}

body.product-detail-page .packaging-list li {
  margin-bottom: 0.24rem;
}

body.product-detail-page .detail-controls {
  max-width: 100%;
  gap: 0.2rem;
}

body.product-detail-page .detail-controls label {
  margin-top: 0.52rem;
  color: #1d1d1d;
  font-weight: 700;
}

body.product-detail-page .order-row {
  margin-top: 0.65rem;
}

body.product-detail-page .qty-control {
  border-color: rgba(0, 0, 0, 0.16);
  min-height: 42px;
}

body.product-detail-page .qty-control button {
  color: #c91b1d;
}

body.product-detail-page #addBoxBtn {
  background: #c10000;
  color: #ffffff;
  border-color: #c10000;
  min-height: 42px;
  padding: 0.6rem 1.15rem;
}

body.product-detail-page .selection-summary {
  color: #2e2e2e;
  font-weight: 700;
  margin-top: 0.55rem;
}

body.product-detail-page .delivery-notes {
  margin-top: 0.6rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.product-detail-page .next-flower-link {
  border-color: rgba(233, 78, 78, 0.45);
  color: #e13232;
  background: #ffffff;
}

body.order-details-page {
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
}

body.order-details-page main {
  margin-top: 0;
}

body.order-details-page .home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
  border-bottom: none;
}

body.order-details-page .page-hero {
  background: transparent;
  padding-top: clamp(1.6rem, 3.6vw, 2.6rem);
  padding-bottom: clamp(1rem, 2.4vw, 1.6rem);
}

body.order-details-page .page-hero .narrow {
  width: min(920px, 92vw);
}

body.order-details-page .order-kicker {
  margin: 0 0 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c91b1d;
  font-weight: 800;
  font-size: 0.72rem;
}

body.order-details-page .order-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #c91b1d;
}

body.order-details-page .order-display {
  margin: 0 0 0.8rem;
  color: #121212;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.8vw, 4.8rem);
  line-height: 0.95;
}

body.order-details-page .order-display span {
  color: #c91b1d;
}

body.order-details-page .page-hero .lead {
  max-width: 46ch;
  color: #2f2f2f;
  font-size: 1.03rem;
  line-height: 1.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body.order-details-page .checkout-content {
  background: transparent;
  padding-top: clamp(0.85rem, 2vw, 1.3rem);
  padding-bottom: clamp(2.4rem, 4.7vw, 3.6rem);
}

body.order-details-page .checkout-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(470px, 1.08fr);
  gap: clamp(1.15rem, 2.4vw, 2rem);
}

body.order-details-page .checkout-grid .section-title {
  color: #121212;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 0.94;
  margin-bottom: 0.7rem;
}

body.order-details-page .selected-products-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(20, 14, 14, 0.07);
  padding: 1rem;
}

body.order-details-page .selected-products-panel .section-title {
  margin-bottom: 0.9rem;
}

body.order-details-page .selected-products-panel .cart-items {
  gap: 0.72rem;
}

body.order-details-page .selected-products-panel .cart-item-card {
  grid-template-columns: 84px 1fr;
  gap: 0.75rem;
  background: #fff8fa;
  border: 1px solid rgba(200, 0, 0, 0.1);
  border-radius: 13px;
  box-shadow: none;
  color: #1f1f1f;
  padding: 0.72rem;
}

body.order-details-page .selected-products-panel .cart-item-image {
  width: 84px;
  border: 0;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
}

body.order-details-page .selected-products-panel .cart-item-copy h3 {
  font-size: 0.96rem;
  margin-bottom: 0.26rem;
}

body.order-details-page .selected-products-panel .cart-item-copy p {
  color: #3c3c3c;
  font-size: 0.84rem;
  line-height: 1.35;
}

body.order-details-page #deliveryForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(20, 14, 14, 0.07);
  padding: 1rem;
  gap: 0.72rem 0.78rem;
}

body.order-details-page #deliveryForm .order-form-title {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
  color: #121212;
}

body.order-details-page #deliveryForm .order-field {
  display: grid;
  gap: 0.3rem;
}

body.order-details-page #deliveryForm .order-field-wide {
  grid-column: 1 / -1;
}

body.order-details-page #deliveryForm #deliveryMessage,
body.order-details-page #deliveryForm .checkout-next-row {
  grid-column: 1 / -1;
}

body.order-details-page #deliveryForm label {
  color: #b51618;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

body.order-details-page #deliveryForm input,
body.order-details-page #deliveryForm select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 9px;
  background: #ffffff;
  color: #171717;
  min-height: 42px;
  padding: 0 0.72rem;
  font-size: 0.92rem;
}

body.order-details-page #deliveryMessage {
  display: none;
}

body.order-details-page #deliveryForm .checkout-next-row {
  margin-top: 0.22rem;
}

body.order-details-page #deliveryForm label.legal-check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.72rem;
  margin-top: 0.06rem;
  padding: 0.76rem 0.82rem;
  border: 1px solid rgba(193, 0, 0, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff9fa 0%, #ffffff 100%);
  color: #2a2a2a;
  font-size: 0.89rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

body.order-details-page #deliveryForm .legal-check-row input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.09rem;
  padding: 0;
  border: 1.5px solid #970408;
  border-radius: 5px;
  background: #ffffff;
  position: relative;
}

body.order-details-page #deliveryForm .legal-check-row input[type="checkbox"]:checked {
  background: #c10000;
  border-color: #c10000;
}

body.order-details-page #deliveryForm .legal-check-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

body.order-details-page #deliveryForm .legal-check-row input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(193, 0, 0, 0.38);
  outline-offset: 2px;
}

body.order-details-page #deliveryForm .legal-check-copy {
  display: block;
  text-transform: none;
}

body.order-details-page #deliveryForm .legal-check-row a {
  color: #8d0308;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

body.order-details-page #deliveryForm .legal-check-row a:hover {
  color: #c10000;
}

body.order-details-page #deliveryForm .legal-required {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.06rem 0.42rem;
  border-radius: 999px;
  background: rgba(193, 0, 0, 0.1);
  color: #8d0308;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.order-details-page #toPaymentBtn {
  min-width: 84px;
  min-height: 42px;
  padding: 0.58rem 1.16rem;
  background: #c10000;
  color: #ffffff;
  border-color: #c10000;
  box-shadow: 0 10px 24px rgba(181, 7, 13, 0.22);
}

body.order-details-page .order-confirmation {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

body.order-details-page .order-confirm-card {
  max-width: 540px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(20, 14, 14, 0.09);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.8rem);
  text-align: center;
}

body.order-details-page .order-confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c10000;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 60px;
  margin: 0 auto 1.4rem;
}

body.order-details-page .order-confirm-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #121212;
  margin-bottom: 0.7rem;
}

body.order-details-page .order-confirm-lead {
  color: #3c3c3c;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 auto 1.6rem;
}

body.order-details-page .order-confirm-btn {
  background: #c10000;
  color: #ffffff;
  border-color: #c10000;
  box-shadow: 0 10px 24px rgba(181, 7, 13, 0.2);
  padding: 0.7rem 1.4rem;
}

.cart-items {
  display: grid;
  gap: 0.9rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  color: #CC0000;
}

.cart-item-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.cart-item-copy h3 {
  margin: 0 0 0.2rem;
}

.cart-item-copy p {
  margin: 0;
  text-align: left;
}

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

.cart-actions {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body[data-page="cart"] .cart-content .container {
  width: min(1060px, 88vw);
}

body[data-page="cart"] .cart-items {
  gap: 1.35rem;
}

body[data-page="cart"] .cart-item-card {
  grid-template-columns: 126px 1fr auto;
  gap: 1.35rem;
  align-items: center;
  padding: 1.5rem 1.65rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 38px rgba(20, 14, 14, 0.08);
  color: #1f1f1f;
}

body[data-page="cart"] .cart-item-image {
  width: 104px;
  aspect-ratio: 1 / 1;
  border: 0;
  object-fit: contain;
}

body[data-page="cart"] .cart-item-copy h3 {
  margin: 0 0 0.5rem;
  color: #161616;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1;
}

body[data-page="cart"] .cart-item-copy p {
  margin: 0.22rem 0;
  color: #2d2d2d;
  font-size: 1rem;
}

body[data-page="cart"] .cart-item-copy p:first-of-type,
body[data-page="cart"] .cart-item-copy p:nth-of-type(2),
body[data-page="cart"] .cart-item-copy p:nth-of-type(3) {
  font-weight: 500;
}

body[data-page="cart"] .cart-remove-btn {
  min-width: 90px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border-color: rgba(233, 78, 78, 0.55);
  background: #ffffff;
  color: #e13232;
  font-weight: 700;
}

body[data-page="cart"] .cart-summary-row {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

body[data-page="cart"] #cartTotal {
  margin: 0;
  justify-self: center;
  color: #c91b1d;
  font-size: 1.15rem;
  font-weight: 800;
}

body[data-page="cart"] .cart-actions {
  gap: 0.8rem;
}

body[data-page="cart"] .cart-summary-row .btn,
body[data-page="cart"] .cart-actions .btn,
body[data-page="cart"] .cart-actions a.btn {
  min-height: 46px;
  padding: 0.82rem 1.45rem;
}

body[data-page="cart"] .cart-summary-row .btn-outline,
body[data-page="cart"] .cart-actions .btn-outline {
  border-color: rgba(233, 78, 78, 0.45);
  color: #e13232;
  background: #ffffff;
  box-shadow: none;
}

body[data-page="cart"] .cart-summary-row .btn-solid,
body[data-page="cart"] .cart-actions .btn-solid {
  background: #b5070d;
  color: #ffffff;
  border-color: #b5070d;
  box-shadow: 0 10px 24px rgba(181, 7, 13, 0.22);
}

body[data-page="cart"] #cartEmptyState {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 38px rgba(20, 14, 14, 0.08);
  color: #1f1f1f;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.checkout-next-row {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0;
  font-weight: 700;
}

.pay-option input {
  width: auto;
}

.product-pagination {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-indicator {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.page-jump-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.page-jump-btn {
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  cursor: pointer;
}

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

.page-jump-btn.is-active {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.32);
  color: #000000;
}

.page-ellipsis {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
}

body[data-page="home"]::before {
  display: none;
}

body[data-page="home"] main {
  margin-top: 0;
}

body[data-page="home"] {
  overflow: hidden;
  height: 100vh;
}

.home-shell {
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #fffafa 58%, #ffe4ef 100%);
}

.home-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 20;
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1.1rem;
}

.home-brand {
  display: inline-flex;
  align-items: center;
}

.home-brand-logo {
  width: 200px;
  max-width: 42vw;
  height: auto;
}

.home-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 1.7rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: #2a2a2a;
}

.home-nav a {
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-nav a:hover {
  color: #b5070d;
  border-bottom-color: rgba(181, 7, 13, 0.45);
}

.home-nav a.is-active {
  color: #b5070d;
  border-bottom-color: #b5070d;
  font-weight: 700;
}

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

.home-cta {
  background: #b5070d;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.62rem 1.45rem;
  font-weight: 700;
}

.home-cart-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #252525;
}

.home-cart-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-cart-count {
  position: absolute;
  top: 2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #b5070d;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
}

.home-hero-redesign {
  height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(350px, 1.05fr);
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0 2rem;
  overflow: visible;
}

.home-copy-col {
  max-width: 660px;
  align-self: flex-start;
  padding-top: clamp(2.5rem, 8vh, 5rem);
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b5070d;
  font-weight: 800;
  font-size: 0.87rem;
  pointer-events: none;
  margin: 0 0 1.1rem;
  text-align: left;
}

.home-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #b5070d;
  border-radius: 999px;
}

.home-display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.8vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: #0b0b0b;
}

.home-line-main {
  white-space: nowrap;
}

.home-display .home-emphasis {
  color: #b5070d;
}

.home-subcopy {
  margin-top: 1.6rem;
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  color: #373737;
  text-align: left;
}

.home-actions-row {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #b5070d;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
}

.home-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-weight: 700;
  color: #111111;
}

.home-image-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  overflow: visible;
  position: relative;
}

.home-image-col img {
  width: min(1700px, 1000vw);
  height: auto;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.02) drop-shadow(0 0 40px rgba(181, 7, 13, 0.32)) drop-shadow(0 0 10px rgba(181, 7, 13, 0.18));
  /* To rotate the rose, change the deg value below (e.g. 15deg, -20deg) */
  transform: translateX(60.4%) translateY(-20%) rotate(-30deg);
  pointer-events: none;
}

body[data-page="products"] main {
  margin-top: 0;
}

body[data-page="products"] .products-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #ffffff 0%, #fff7fb 55%, #ffe7f1 100%);
  border-bottom: none;
}

body[data-page="products"] .home-header {
  width: 100%;
  margin: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1.1rem;
  padding-bottom: 0;
}

body[data-page="products"] .products-hero-redesign {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, transparent 60%, #ffffff 100%),
    linear-gradient(90deg, #ffffff 0%, #fff7fb 55%, #ffe7f1 100%);
  border-bottom: none;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  height: 280px;
  max-height: 280px;
}

body[data-page="products"] .products-hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  align-items: stretch;
  gap: 0;
  height: 100%;
}

body[data-page="products"] .products-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body[data-page="products"] .products-kicker {
  margin: 0 0 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b5070d;
  font-weight: 800;
  text-align: left;
}

body[data-page="products"] .products-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #b5070d;
}

body[data-page="products"] .products-hero-redesign .products-hero-copy h1 {
  margin: 0 0 0.2rem;
  color: #0b0b0b;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
  line-height: 1;
}

body[data-page="products"] .products-hero-copy h1 span {
  color: #b5070d;
}

body[data-page="products"] .products-hero-copy h1::after {
  content: "";
  display: block;
  width: 32px;
  height: 2.5px;
  background: #b5070d;
  border-radius: 999px;
  margin-top: 0.25rem;
}

body[data-page="products"] .products-hero-copy .lead {
  margin: 0.15rem 0 0;
  max-width: 42ch;
  text-align: left;
  color: #2f2f2f;
  font-size: 0.88rem;
  line-height: 1.55;
}

body[data-page="products"] .products-hero-actions {
  margin-top: 1rem;
}

body[data-page="products"] .products-hero-actions .home-btn-primary {
  padding: 0.72rem 1.3rem;
  font-size: 0.92rem;
}

body[data-page="products"] .products-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

body[data-page="products"] .products-hero-image img {
  position: absolute;
  top: 58%;
  left: 50%;
  width: auto;
  height: 420px;
  transform: translate(-50%, -50%);
  filter: saturate(1.08) contrast(1.03);
  pointer-events: none;
  z-index: 1;
}

body[data-page="products"] .products-content {
  padding-top: clamp(1.4rem, 2.8vw, 2rem);
  padding-bottom: 3rem;
}

body[data-page="products"] .section-pad {
  padding-top: clamp(1.4rem, 2.8vw, 2rem);
  padding-bottom: 3rem;
}

body[data-page="products"] .toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 220px;
  align-items: stretch;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

body[data-page="products"] .product-search {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0 0.75rem;
  background: #ffffff;
}

body[data-page="products"] .product-search svg {
  width: 18px;
  height: 18px;
  stroke: rgba(0, 0, 0, 0.45);
  stroke-width: 1.9;
  fill: none;
  flex-shrink: 0;
}

body[data-page="products"] .product-search input {
  border: 0;
  outline: none;
  min-width: 0;
  height: 100%;
  padding: 0;
}

body[data-page="products"] .products-color-wrap {
  width: 100%;
  display: flex;
}

body[data-page="products"] .products-color-wrap select {
  width: 100%;
  border-radius: 12px;
  min-height: 50px;
  padding: 0 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

body[data-page="products"] .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 1rem;
}

body[data-page="products"] .product-card {
  align-items: stretch;
  gap: 0.35rem;
  border-radius: 14px;
  padding: 0.6rem 0.6rem 0.8rem;
}

body[data-page="products"] .product-card h3 {
  text-align: left;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.56rem;
  color: #111111;
}

body[data-page="products"] .product-card .product-tag {
  display: block;
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #b5070d;
}

body[data-page="products"] .product-card .product-desc {
  display: none;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #4d4d4d;
  text-align: left;
  min-height: 2.45rem;
}

body[data-page="products"] .product-card .product-arrow {
  align-self: flex-end;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(181, 7, 13, 0.35);
  color: #b5070d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

body[data-page="products"] .product-image {
  height: 180px;
  object-fit: contain;
  background: #ffffff;
  margin-bottom: 0.2rem;
}

body[data-page="about"] {
  background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffe7f1 100%);
}

body[data-page="about"] main {
  margin-top: 0;
}

body[data-page="about"] .home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffe7f1 100%);
  border-bottom: none;
}

body[data-page="about"] .about-hero {
  background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffe7f1 100%);
  padding-top: clamp(1.8rem, 4vw, 2.7rem);
  padding-bottom: clamp(1.25rem, 2.8vw, 1.9rem);
}

body[data-page="about"] .about-hero .container {
  text-align: center;
}

body[data-page="about"] .about-hero h1,
body[data-page="about"] .about-hero .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="about"] .about-hero h1 {
  max-width: none;
  margin-bottom: 0.9rem;
  color: #121212;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.8vw, 4.8rem);
  line-height: 0.94;
}

body[data-page="about"] .about-display span {
  display: block;
  color: #c91b1d;
}

body[data-page="about"] .about-hero .lead {
  max-width: 44ch;
  color: #2f2f2f;
  font-size: 1.02rem;
  line-height: 1.55;
}

body[data-page="about"] .about-beliefs {
  background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffe7f1 100%);
  padding-top: clamp(1.2rem, 2.8vw, 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

body[data-page="about"] .alt-bg {
  background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffe7f1 100%);
}

body[data-page="about"] .about-story-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
}

body[data-page="about"] .about-story-copy {
  max-width: 540px;
}

body[data-page="about"] .about-story-copy .section-title {
  margin-bottom: 1.15rem;
  color: #111111;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.96;
}

body[data-page="about"] .about-story-copy .section-title::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #c91b1d;
  margin-top: 0.9rem;
}

body[data-page="about"] .about-story-copy p {
  margin: 0 0 1rem;
  max-width: 54ch;
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.9;
  text-align: left;
}

body[data-page="about"] .about-image-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(20, 14, 14, 0.08);
  padding: 0.85rem;
}

body[data-page="about"] .about-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 0;
  box-shadow: none;
}

body[data-page="contact"] .page-hero {
  background: transparent;
  padding-top: clamp(1.8rem, 4vw, 2.8rem);
  padding-bottom: clamp(1.2rem, 2.6vw, 1.8rem);
}

body[data-page="contact"] .page-hero .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 44ch;
  color: #2f2f2f;
  font-size: 1.03rem;
  line-height: 1.6;
}

body[data-page="contact"] .contact-content {
  background: transparent;
  padding-top: clamp(1rem, 2.1vw, 1.5rem);
  padding-bottom: clamp(2.6rem, 5vw, 3.9rem);
}

body[data-page="contact"] {
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
}

body[data-page="contact"] main {
  margin-top: 0;
}

body[data-page="contact"] .home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
  border-bottom: none;
}

body[data-page="contact"] .page-hero .narrow {
  width: min(920px, 92vw);
}

body[data-page="contact"] .contact-kicker {
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c91b1d;
  font-weight: 800;
  font-size: 0.72rem;
}

body[data-page="contact"] .contact-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #c91b1d;
}

body[data-page="contact"] .contact-display {
  margin: 0 0 0.9rem;
  color: #121212;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  line-height: 0.95;
}

body[data-page="contact"] .contact-display span {
  color: #c91b1d;
}

body[data-page="contact"] .contact-form-centered {
  max-width: min(760px, 100%);
}

body[data-page="contact"] .contact-form {
  gap: 0.58rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(20, 14, 14, 0.08);
  padding: 1rem;
}

body[data-page="contact"] .contact-form label {
  color: #1c1c1c;
  font-size: 0.92rem;
  font-weight: 700;
}

body[data-page="contact"] .contact-form input,
body[data-page="contact"] .contact-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #1f1f1f;
}

body[data-page="contact"] .contact-form textarea {
  min-height: 118px;
}

body[data-page="contact"] .contact-form .btn {
  margin-top: 0.42rem;
  width: 100%;
  min-height: 44px;
}

body[data-page="contact"] .contact-form .btn-solid {
  background: #c10000;
  color: #ffffff;
  border-color: #c10000;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form-centered {
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.contact-form label {
  font-weight: 700;
}

.check-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 500;
}

.legal-check-row {
  align-items: flex-start;
  font-weight: 600;
  line-height: 1.5;
  color: #272727;
}

.legal-check-row input {
  margin-top: 0.22rem;
}

.legal-check-row a {
  color: #8d0308;
  text-decoration: underline;
}

.check-row input {
  width: auto;
}

.form-message {
  min-height: 1.3em;
  font-size: 0.93rem;
  font-weight: 700;
}

.form-message.success {
  color: #d50703;
}

.form-message.error {
  color: #c01f21;
}

.site-footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--border);
  background: #000000;
  color: var(--cream);
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form button {
  border: 0;
  border-radius: 10px;
  padding: 0 0.9rem;
  font-weight: 800;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
}

.copyright {
  text-align: center;
  color: var(--cream);
  margin: 1.3rem 0 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
}

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fffdf8;
  border: 1px solid rgba(53, 2, 1, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 1rem 1rem 0.95rem;
}

.cookie-banner-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #8d0308;
}

.cookie-banner-copy {
  margin: 0.35rem 0 0;
  text-align: left;
  color: #252525;
}

.cookie-banner-copy a {
  color: #8d0308;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.legal-page {
  background: linear-gradient(180deg, #fffdf8 0%, #f7efe2 100%);
}

.legal-page main {
  margin-top: 0;
}

.legal-page .home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #ffffff 0%, #fff9fb 64%, #ffeef5 100%);
  border-bottom: none;
}

.legal-hero {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(2.2rem, 4vw, 3rem);
}

.legal-kicker {
  justify-content: center;
}

.legal-display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 0.8rem;
  color: #0b0b0b;
  text-align: center;
}

.legal-display span {
  color: #b5070d;
}

.legal-content {
  padding-top: 1rem;
}

.legal-layout {
  max-width: 880px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: clamp(1.4rem, 3vw, 2.3rem);
}

.legal-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #8d0308;
  margin: 1.7rem 0 0.65rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #222222;
  text-align: left;
  margin: 0 0 1rem;
}

.legal-footer {
  padding: 0 0 2.5rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.4rem;
}

.legal-links a {
  color: #8d0308;
  font-weight: 700;
  border-bottom: 1px solid rgba(141, 3, 8, 0.22);
  padding-bottom: 0.15rem;
}

.legal-links-inline {
  margin-top: 1.25rem;
}

.legal-links-footer {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.stagger-list > * {
  animation: riseIn 0.6s ease both;
}

.stagger-list > *:nth-child(2) {
  animation-delay: 0.12s;
}

.stagger-list > *:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 930px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: clamp(1.8rem, 5.5vw, 3rem) 0;
  }

  .site-header {
    height: 120px;
    overflow: hidden;
  }

  body[data-page="home"] .home-hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
  }

  body[data-page="home"] .home-hero-copy {
    width: min(620px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="home"] .home-hero-copy {
    text-align: center;
  }

  body[data-page="home"] .home-hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="about"] .page-hero {
    padding-top: 1.6rem;
  }

  body[data-page="about"] .about-hero .lead {
    max-width: 34ch;
  }

  body[data-page="about"] .about-story-grid {
    gap: 1.6rem;
  }

  body[data-page="about"] .about-story-copy {
    max-width: 100%;
  }

  body[data-page="about"] .about-story-copy .section-title,
  body[data-page="about"] .about-story-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="about"] .about-story-copy .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="about"] .about-image-card {
    width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="contact"] .contact-display {
    font-size: clamp(2.6rem, 8.2vw, 3.8rem);
  }

  body[data-page="contact"] .contact-form-centered {
    max-width: min(94vw, 760px);
  }

  body.order-details-page .checkout-grid {
    grid-template-columns: 1fr;
  }

  body.order-details-page #deliveryForm {
    grid-template-columns: 1fr;
  }

  body.order-details-page #deliveryForm input,
  body.order-details-page #deliveryForm select {
    min-height: 44px;
  }

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

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

  .cart-item-card {
    grid-template-columns: 90px 1fr;
  }

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

  .cart-remove-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .product-pagination {
    gap: 0.6rem;
  }

  .btn,
  .page-jump-btn,
  .site-nav a {
    min-height: 44px;
  }

  .search-wrap {
    width: 100%;
  }

  .search-wrap input {
    min-width: 0;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  body[data-page="home"] .home-nav {
    display: none;
  }

  body[data-page="products"] .home-header {
    grid-template-columns: auto 1fr auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body[data-page="products"] .home-brand-logo {
    width: 128px;
  }

  body[data-page="products"] .products-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.8rem 0 1.1rem;
  }

  body[data-page="products"] .products-hero-copy {
    text-align: center;
  }

  body[data-page="products"] .products-kicker,
  body[data-page="products"] .products-hero-copy .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="products"] .products-hero-actions {
    display: flex;
    justify-content: center;
  }

  body[data-page="products"] .products-hero-image {
    justify-content: center;
  }

  body[data-page="products"] .products-hero-image img {
    width: min(560px, 88vw);
    transform: translateX(0) translateY(8%);
  }

  body[data-page="products"] .toolbar {
    grid-template-columns: 1fr;
  }

  body[data-page="products"] .products-color-wrap {
    max-width: 280px;
    justify-self: center;
  }

  .home-hero-redesign {
    height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.4rem;
    min-height: auto;
    padding-top: 0.65rem;
    padding-bottom: 2.4rem;
  }

  .home-copy-col {
    max-width: 100%;
    padding-top: 0.35rem;
  }

  .home-subcopy {
    max-width: 60ch;
  }

  .home-image-col {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 0.35rem;
  }

  .home-image-col img {
    width: min(430px, 88vw);
    transform: none;
  }

  body[data-page="cart"] .page-hero .lead {
    white-space: normal;
    max-width: 40ch;
  }

  body[data-page="cart"] .cart-content .container {
    width: min(94vw, 760px);
  }

  body[data-page="cart"] .cart-item-card {
    grid-template-columns: 96px 1fr;
    align-items: start;
  }

  body[data-page="cart"] .cart-remove-btn {
    grid-column: 1 / -1;
    justify-self: end;
  }

  body[data-page="cart"] .cart-summary-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  body[data-page="cart"] .cart-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container,
  .narrow {
    width: min(100%, 94vw);
  }

  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.85rem, 9.6vw, 2.45rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero::before {
    width: 88px;
    height: 88px;
  }

  .toolbar {
    margin-bottom: 0.95rem;
  }

  .product-pagination {
    flex-direction: column;
  }

  .page-jump-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-form,
  .info-panel,
  .product-card {
    padding: 1rem;
  }

  body[data-page="home"] .home-hero-copy .lead {
    max-width: 42ch;
  }

  body::before {
    right: -262px;
    width: min(85vw, 700px);
    max-height: 100vh;
    opacity: 0.09;
  }
}

@media (max-width: 520px) {
  .section-pad {
    padding: clamp(1.35rem, 6vw, 2rem) 0;
  }

  .site-header {
    height: 120px;
    overflow: hidden;
  }

  .site-title {
    top: -40px;
    left: -10px;
  }

  .site-title-banner {
    width: 324px;
  }

  .hero::before {
    display: none;
  }

  body[data-page="home"] .home-hero-copy .lead {
    max-width: 34ch;
    margin-bottom: 0.78rem;
  }

  body[data-page="about"] .about-hero {
    padding-top: 1.1rem;
  }

  body[data-page="about"] .about-hero h1 {
    font-size: clamp(2.25rem, 11.2vw, 3rem);
  }

  body[data-page="about"] .about-hero .lead,
  body[data-page="about"] .about-story-copy p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  body[data-page="contact"] .contact-display {
    font-size: clamp(2.25rem, 11.6vw, 3rem);
    line-height: 1;
  }

  body[data-page="contact"] .contact-kicker {
    font-size: 0.67rem;
  }

  body[data-page="contact"] .page-hero .lead {
    font-size: 0.95rem;
    max-width: 33ch;
  }

  body.order-details-page .order-display {
    font-size: clamp(2.3rem, 11.6vw, 3rem);
  }

  body.order-details-page .page-hero .lead {
    max-width: 34ch;
    font-size: 0.95rem;
  }

  body.product-detail-page .product-detail-section {
    padding-top: 1.1rem;
  }

  body.product-detail-page .product-detail-info h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  body.product-detail-page .detail-controls {
    gap: 0.42rem;
  }

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

  .product-image {
    height: 185px;
  }

  .btn {
    width: 100%;
  }

  body[data-page="products"] .product-pagination #productsLoadMoreBtn {
    width: auto;
    min-width: 180px;
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }

  .order-row {
    align-items: stretch;
  }

  .detail-nav-row {
    align-items: center;
    padding: 0;
  }

  .cart-summary-row {
    align-items: stretch;
  }

  body::before {
    right: -188px;
    width: min(90vw, 500px);
    max-height: 90vh;
    opacity: 0.07;
  }

  .home-header {
    padding-top: 0.8rem;
    gap: 0.7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-brand-logo {
    width: 116px;
  }

  .home-header-actions {
    gap: 0.4rem;
  }

  .home-cta {
    padding: 0.56rem 0.95rem;
    font-size: 0.92rem;
  }

  .home-display {
    line-height: 0.95;
  }

  .home-subcopy {
    margin-top: 1.2rem;
  }

  .home-actions-row {
    margin-top: 1.3rem;
  }

  body[data-page="cart"] .page-hero {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  body[data-page="cart"] .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.4rem);
  }

  body[data-page="cart"] .cart-item-card {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1.2rem;
  }

  body[data-page="cart"] .cart-item-image {
    width: 88px;
  }

  body[data-page="cart"] .cart-remove-btn,
  body[data-page="cart"] .cart-summary-row .btn,
  body[data-page="cart"] .cart-actions .btn,
  body[data-page="cart"] .cart-actions a.btn {
    width: 100%;
  }
}

/* ─── Hamburger button (hidden on desktop) ─────────────────────── */
.home-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  z-index: 31;
  flex-shrink: 0;
}

.home-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.home-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.home-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.home-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile nav drawer ─────────────────────────────────────────── */
.home-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.home-nav-drawer.is-open {
  display: block;
}

.home-nav-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.home-nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 80vw);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem 2rem;
  gap: 0.2rem;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
}

.home-nav-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: #1a1a1a;
  padding: 0.2rem 0.4rem;
  margin-bottom: 0.8rem;
}

.home-nav-drawer-panel a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.home-nav-drawer-panel a:last-child {
  border-bottom: none;
  margin-top: 0.6rem;
  color: #c10000;
}

body.nav-drawer-open {
  overflow: hidden;
}

/* ─── Mobile layout overrides ≤ 640px ───────────────────────────── */
@media (max-width: 640px) {
  .home-hamburger {
    display: flex;
  }

  .home-nav {
    display: none !important;
  }

  .home-cta {
    display: none;
  }

  .home-header {
    grid-template-columns: 1fr auto auto;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
    padding-top: 0.8rem;
    gap: 0.45rem;
  }

  .home-brand-logo {
    width: 112px;
  }

  .home-header-actions {
    gap: 0.45rem;
  }

  .home-display {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
    line-height: 1.0;
  }

  .home-subcopy {
    font-size: 0.95rem;
  }

  body[data-page="home"] .home-hero-redesign {
    padding-top: 0.45rem;
    gap: 1rem;
    padding-bottom: 0.85rem;
  }

  body[data-page="home"] .home-copy-col {
    padding-top: 0;
    position: relative;
    z-index: 2;
  }

  body[data-page="home"] .home-kicker {
    margin-bottom: 0.8rem;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  body[data-page="home"] .home-display {
    font-size: clamp(2.6rem, 12vw, 3.45rem);
    line-height: 0.94;
  }

  body[data-page="home"] .home-subcopy {
    margin-top: 1rem;
    max-width: 33ch;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  body[data-page="home"] .home-actions-row {
    margin-top: 1rem;
    gap: 0.85rem;
    flex-wrap: nowrap;
  }

  body[data-page="home"] .home-btn-primary {
    padding: 0.72rem 1.25rem;
    font-size: 0.94rem;
    white-space: nowrap;
  }

  body[data-page="home"] .home-btn-text {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  body[data-page="home"] .home-image-col {
    margin-top: 1rem;
    transform: translateX(-260px) translateY(-100px);
    pointer-events: none;
    position: relative;
    z-index: 1;
  }

  body[data-page="home"] .home-image-col img {
    width: 1000px;
    max-width: 1000px;
  }

  body[data-page="products"] .products-topbar {
    background: #ffffff;
  }

  body[data-page="products"] .home-header {
    grid-template-columns: 1fr auto auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.85rem;
    gap: 0.55rem;
  }

  body[data-page="products"] .home-brand-logo {
    width: 118px;
  }

  body[data-page="products"] .products-hero-redesign {
    height: auto;
    max-height: none;
    padding-top: 1.45rem;
    padding-bottom: 1.25rem;
    background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffeef6 100%);
  }

  body[data-page="products"] .products-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    padding: 0.5rem 0 0;
  }

  body[data-page="products"] .products-hero-copy {
    align-items: center;
    text-align: center;
  }

  body[data-page="products"] .products-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.64rem;
    letter-spacing: 0.09em;
    gap: 0.5rem;
  }

  body[data-page="products"] .products-kicker::before,
  body[data-page="products"] .products-kicker::after {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #cf1f26;
    display: inline-block;
  }

  body[data-page="products"] .products-hero-redesign .products-hero-copy h1 {
    font-size: clamp(3.05rem, 10.5vw, 3.7rem) !important;
    line-height: 0.96;
    margin: 0;
  }

  body[data-page="products"] .products-hero-copy h1::after {
    display: none;
  }

  body[data-page="products"] .products-hero-copy .lead {
    margin: 0.65rem auto 0;
    max-width: 31ch;
    text-align: center;
    font-size: 0.91rem;
    line-height: 1.5;
  }

  body[data-page="products"] .products-hero-actions {
    margin-top: 0.85rem;
  }

  body[data-page="products"] .products-hero-image {
    display: none;
  }

  body[data-page="products"] .products-content,
  body[data-page="products"] .section-pad {
    padding-top: 1rem;
    padding-bottom: 1.4rem;
  }

  body[data-page="products"] .toolbar {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    margin-bottom: 0.9rem;
  }

  body[data-page="products"] .product-search,
  body[data-page="products"] .products-color-wrap select {
    min-height: 55px;
    border-radius: 14px;
    border-color: rgba(0, 0, 0, 0.11);
  }

  body[data-page="products"] .products-color-wrap {
    max-width: 100%;
    justify-self: stretch;
  }

  body[data-page="products"] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  body[data-page="products"] .product-card {
    border-radius: 16px;
    padding: 0.95rem 0.7rem 1rem;
    gap: 0.25rem;
  }

  body[data-page="products"] .product-image {
    height: 156px;
    margin-bottom: 0.3rem;
    border-radius: 10px;
    object-fit: contain;
  }

  body[data-page="products"] .product-card h3 {
    text-align: center;
    font-size: 1.72rem;
    line-height: 0.98;
    margin-top: 0;
  }

  body[data-page="products"] .product-card .product-tag {
    text-align: center;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    margin-top: 0.24rem;
  }

  body[data-page="products"] .product-card .product-arrow {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .product-card {
    padding: 0.6rem;
  }

  .product-image {
    height: 160px;
  }

  body.product-detail-page .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  body.product-detail-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
  }

  body.product-detail-page main {
    height: auto;
    min-height: calc(100vh - 90px);
  }

  body.product-detail-page .product-detail-section,
  body.product-detail-page .product-detail-layout {
    height: auto;
  }

  body.product-detail-page .product-detail-section {
    padding-top: 0.75rem;
    padding-bottom: 1.15rem;
  }

  body.product-detail-page .product-detail-media {
    border-radius: 16px;
    padding: 0.35rem;
  }

  body.product-detail-page .product-detail-media img {
    width: 100%;
    height: min(76vw, 430px);
    max-height: none;
    border-radius: 12px;
    object-fit: contain;
  }

  body.product-detail-page .product-detail-layout > .back-to-roses-link {
    display: inline-flex;
    grid-column: 1;
    justify-self: center;
    margin: 0 0 0.45rem;
  }

  body.product-detail-page .detail-kicker {
    margin-bottom: 0.58rem;
    font-size: 0.6rem;
  }

  body.product-detail-page .product-detail-info h1 {
    margin-bottom: 0.35rem;
    font-size: clamp(2.15rem, 10.2vw, 2.8rem);
    line-height: 0.95;
  }

  body.product-detail-page .packaging-copy {
    margin: 0 0 0.45rem;
    font-size: 0.84rem;
  }

  body.product-detail-page .packaging-list li {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  body.product-detail-page .detail-controls {
    gap: 0.15rem;
  }

  body.product-detail-page .detail-controls label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }

  body.product-detail-page .detail-controls select {
    min-height: 50px;
    font-size: 0.96rem;
  }

  body.product-detail-page .order-row {
    margin-top: 0.75rem;
    flex-wrap: nowrap;
    gap: 0.55rem;
    align-items: center;
  }

  body.product-detail-page .qty-control {
    flex: 0 0 37%;
    min-width: 0;
    min-height: 54px;
    justify-content: space-between;
  }

  body.product-detail-page .qty-control button,
  body.product-detail-page .qty-control span {
    min-width: 2.5rem;
  }

  body.product-detail-page #addBoxBtn {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 54px;
  }

  body.product-detail-page .selection-summary {
    margin-top: 0.65rem;
    font-size: 0.88rem;
  }

  body.product-detail-page .delivery-notes {
    display: grid;
    grid-template-columns: 26px 1fr;
    align-items: start;
    column-gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.55rem;
  }

  body.product-detail-page .delivery-notes::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-top: 0.04rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23de2a2a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1.5' y='6.5' width='12.5' height='10.5' rx='1.5'/%3E%3Cpath d='M14 9h3.2l2.8 3v5H14z'/%3E%3Ccircle cx='7' cy='18.5' r='1.5'/%3E%3Ccircle cx='18' cy='18.5' r='1.5'/%3E%3C/svg%3E");
  }

  body.product-detail-page .delivery-notes p {
    grid-column: 2;
    margin: 0.05rem 0;
    font-size: 0.79rem;
    line-height: 1.35;
  }

  body.product-detail-page .detail-nav-row {
    margin-top: 0.7rem;
    transform: none;
    gap: 0.55rem;
    padding-bottom: 0.1rem;
  }

  body.product-detail-page .detail-nav-row .next-flower-link {
    margin-top: 0;
    flex: 1 1 0;
    min-width: 0;
    min-height: 64px;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    padding: 0.62rem 0.68rem;
    font-size: 0.88rem;
  }

  body[data-page="cart"] .cart-item-card {
    grid-template-columns: 80px 1fr;
    gap: 0.7rem;
    padding: 0.9rem;
  }

  body[data-page="cart"] .cart-item-image {
    width: 80px;
  }

  body.order-details-page #deliveryForm {
    grid-template-columns: 1fr;
  }

  body.order-details-page #deliveryForm .order-field,
  body.order-details-page #deliveryForm .order-field-wide,
  body.order-details-page #deliveryForm .order-form-title,
  body.order-details-page #deliveryForm #deliveryMessage,
  body.order-details-page #deliveryForm .checkout-next-row {
    grid-column: 1;
  }

  body[data-page="about"] .about-image-card {
    display: none;
  }

  body[data-page="about"] .about-story-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.15rem;
  }

  body[data-page="about"] {
    background: #ffffff;
  }

  body[data-page="about"] .home-header,
  body[data-page="about"] .about-hero {
    background: linear-gradient(90deg, #ffffff 0%, #fff7fb 58%, #ffe7f1 100%);
  }

  body[data-page="about"] .about-hero {
    padding-top: 1.35rem;
    padding-bottom: 1.2rem;
  }

  body[data-page="about"] .about-hero h1.about-display {
    font-size: clamp(1.85rem, 8.8vw, 2.35rem);
    line-height: 1.04;
    white-space: nowrap;
  }

  body[data-page="about"] .about-display span {
    display: block;
    white-space: nowrap;
  }

  body[data-page="about"] .about-hero .lead {
    max-width: 30ch;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  body[data-page="about"] .about-beliefs,
  body[data-page="about"] .alt-bg {
    background: #ffffff;
  }

  body[data-page="about"] .about-story-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body[data-page="about"] .about-story-copy .section-title {
    font-size: clamp(2.35rem, 11vw, 3rem);
    margin-bottom: 0.9rem;
  }

  body[data-page="about"] .about-story-copy p {
    max-width: 34ch;
    font-size: 0.93rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="about"] .alt-bg .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.92rem;
  }

  body[data-page="about"] .alt-bg .section-title::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #c91b1d;
    margin: 0.72rem auto 0;
  }

  body[data-page="about"] .cert-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin: 1.1rem 0 1.5rem;
    align-items: stretch;
    justify-items: stretch;
  }

  body[data-page="about"] .cert-logo {
    width: 100%;
    height: 86px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    background: #ffffff;
  }

  body[data-page="about"] .cert-logo img {
    width: 62px;
    height: 62px;
  }

  body[data-page="about"] .cert-logo:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.3rem);
    max-width: 190px;
    height: 86px;
    border-radius: 14px;
    margin-top: 0.1rem;
  }

  body[data-page="about"] .cert-logo:last-child img {
    width: 62px;
    height: 62px;
  }

  body[data-page="contact"] .contact-form-centered {
    max-width: 100%;
  }

  input, select, textarea {
    font-size: 16px;
    min-height: 46px;
  }

  textarea {
    min-height: 110px;
  }

  .checkout-next-row .btn,
  body[data-page="contact"] .contact-form .btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
  }

  .section-pad {
    padding: clamp(1.1rem, 5vw, 1.8rem) 0;
  }

  body[data-page="about"] .about-display {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  body[data-page="contact"] .contact-display {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  body.order-details-page .order-display {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .cert-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
  }

  .cert-logo {
    width: 80px;
    height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
