:root {
  --ink: #14100d;
  --matte-black: #14100d;
  --cocoa: #4a302c;
  --charcoal: #35312d;
  --muted: #6d625b;
  --stone: #8f8b83;
  --paper: #f8f1e8;
  --porcelain: #fffaf3;
  --ivory: #efe4d6;
  --warm-sand: #e6d1b3;
  --champagne: #d8b56a;
  --rose-gold: #d8a08f;
  --copper: #c78362;
  --deep-maroon: #702532;
  --soft-blush: #f0d9d4;
  --sunny: #f4c84f;
  --aqua: #76c7c4;
  --mint: #b7d987;
  --raspberry: #cc3d6e;
  --deep-emerald: #123f35;
  --deep-navy: #151b38;
  --line: rgba(20, 16, 13, 0.13);
  --shadow: 0 18px 45px rgba(20, 16, 13, 0.14);
  --radius: 8px;
  --header-height: 74px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

.rewards-label {
  font-weight: 600;
}

body.cart-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  color: var(--ink);
  background: rgba(248, 241, 232, 0.96);
  border-bottom: 1px solid rgba(20, 16, 13, 0.1);
  box-shadow: 0 8px 24px rgba(20, 16, 13, 0.08);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 16, 13, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.brand-symbol {
  width: 34px;
  height: 27px;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.cart-button,
.icon-button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.cart-button {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.cart-icon {
  width: 18px;
  height: 16px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--matte-black);
  background: var(--champagne);
  font-size: 12px;
  font-weight: 700;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 130px 32px 72px;
  color: var(--porcelain);
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.88) 0%, rgba(74, 48, 44, 0.58) 48%, rgba(20, 16, 13, 0.2) 100%),
    url("/media/assets/open-license-product-photos-preview.jpg") center / cover;
}

.hero-copy {
  width: min(640px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-tagline {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 560px;
  color: rgba(255, 254, 253, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.hero-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-stickers span,
.mood-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 243, 0.42);
  border-radius: 999px;
  color: var(--matte-black);
  background: var(--porcelain);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(20, 16, 13, 0.16);
}

.hero-stickers span:nth-child(2) {
  background: var(--sunny);
  transform: rotate(-1.5deg);
}

.hero-stickers span:nth-child(3) {
  background: var(--aqua);
  transform: rotate(1.5deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.cart-button:hover,
.cart-button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--matte-black);
  background: var(--champagne);
  border-color: var(--champagne);
}

.button.secondary {
  color: var(--porcelain);
  background: rgba(248, 241, 232, 0.1);
  border-color: rgba(239, 228, 214, 0.62);
}

.full-width {
  width: 100%;
}

.announcement {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  background: var(--cocoa);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.announcement span {
  padding: 16px 14px;
  border-right: 1px solid rgba(239, 228, 214, 0.24);
}

.announcement span:last-child {
  border-right: 0;
}

.section {
  padding: 88px 32px;
}

.intro-section,
.occasion-section,
.shop-section,
.planner-section,
.product-category-section,
.zone-section,
.service-section {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.intro-copy p {
  margin: 0 0 18px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-lede {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.occasion-section {
  padding-top: 24px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.occasion-card {
  min-height: 164px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.78);
  text-align: left;
  cursor: default;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.occasion-card:nth-child(4n + 1) {
  border-top: 5px solid var(--sunny);
}

.occasion-card:nth-child(4n + 2) {
  border-top: 5px solid var(--aqua);
}

.occasion-card:nth-child(4n + 3) {
  border-top: 5px solid var(--soft-blush);
}

.occasion-card:nth-child(4n) {
  border-top: 5px solid var(--mint);
}

.occasion-card.featured {
  color: var(--porcelain);
  background: var(--deep-maroon);
  border-color: var(--deep-maroon);
  box-shadow: 0 18px 42px rgba(112, 37, 50, 0.24);
}

.occasion-card:hover,
.occasion-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 181, 106, 0.66);
  background: var(--porcelain);
  box-shadow: 0 14px 34px rgba(20, 16, 13, 0.09);
}

.occasion-card.active {
  color: var(--porcelain);
  background: var(--deep-maroon);
  border-color: var(--deep-maroon);
}

.occasion-card span {
  color: var(--deep-maroon);
  font-size: 12px;
  font-weight: 900;
}

.occasion-card.featured span,
.occasion-card.active span {
  color: var(--champagne);
}

.occasion-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}

.occasion-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.occasion-card.featured small,
.occasion-card.active small {
  color: rgba(255, 250, 242, 0.78);
}

.planner-section {
  padding-top: 52px;
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.planner-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--matte-black);
  color: var(--porcelain);
  box-shadow: 0 18px 38px rgba(20, 16, 13, 0.12);
}

.planner-card:nth-child(2) {
  background: var(--deep-maroon);
}

.planner-card:nth-child(3) {
  background: var(--deep-emerald);
}

.planner-card:nth-child(4) {
  background: var(--cocoa);
}

.planner-card span,
.zone-grid span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--matte-black);
  background: var(--champagne);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.planner-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.16;
}

.mood-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mood-strip span {
  border-color: var(--line);
  box-shadow: none;
}

.mood-strip span:nth-child(2n) {
  background: var(--soft-blush);
}

.mood-strip span:nth-child(3n) {
  background: var(--mint);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  color: var(--porcelain);
  background: var(--deep-maroon);
  border-color: var(--deep-maroon);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.product-media {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.02);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-description {
  margin: 0;
  min-height: 64px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--deep-maroon);
  background: rgba(240, 217, 212, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: 900;
}

.compare-price {
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through;
}

.sitewide-discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  color: #b21c4b;
  background: #fff0f5;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.stock-line {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-body .button {
  margin-top: 2px;
}

.shop-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  color: var(--porcelain);
  background: var(--matte-black);
}

.editorial-image {
  min-height: 520px;
  background:
    linear-gradient(0deg, rgba(20, 16, 13, 0.12), rgba(20, 16, 13, 0.12)),
    url("/media/assets/open-license-product-photos/candles.jpg") center / cover;
}

.editorial-copy {
  align-self: center;
  padding: 72px 52px;
}

.editorial-copy h2 {
  max-width: 480px;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 510px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 17px;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--champagne);
  font-weight: 900;
}

.zone-section {
  padding-top: 74px;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.zone-grid article {
  min-height: 196px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.zone-grid article:nth-child(2n) {
  background: var(--ivory);
}

.zone-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
}

.zone-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.service-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.service-number {
  display: block;
  margin-bottom: 22px;
  color: var(--deep-maroon);
  font-weight: 900;
}

.service-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0;
}

.service-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 48px;
  padding: 88px 32px;
  color: var(--porcelain);
  background:
    linear-gradient(120deg, rgba(74, 48, 44, 0.98), rgba(112, 37, 50, 0.92)),
    var(--cocoa);
}

.contact-section > * {
  width: min(560px, 100%);
}

.contact-section > div {
  justify-self: end;
}

.contact-form {
  display: grid;
  gap: 16px;
  justify-self: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(239, 228, 214, 0.28);
  border-radius: var(--radius);
  color: var(--porcelain);
  background: rgba(255, 250, 243, 0.1);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 14px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(20, 16, 13, 0);
  transition: background 200ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(20, 16, 13, 0.42);
}

.cart-panel {
  width: min(420px, 100%);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  background: var(--porcelain);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 28px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 18px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 74px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.cart-item p {
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quantity-controls {
  display: inline-grid;
  grid-template-columns: 34px 36px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-controls button {
  width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.quantity-controls span {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.cart-empty {
  display: none;
  align-self: start;
  padding: 22px 20px;
  color: var(--muted);
}

.cart-empty.visible {
  display: block;
}

.cart-recommendations {
  display: block;
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  background: rgba(255, 213, 71, 0.16);
}

.cart-recommendations:empty {
  display: none;
}

.cart-recommendations h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-recommendation-list {
  display: grid;
  gap: 10px;
}

.cart-recommendation {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
}

.cart-recommendation img {
  width: 52px;
  height: 58px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-recommendation div {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 8px;
  align-items: center;
}

.cart-recommendation strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.cart-recommendation span {
  color: var(--muted);
  font-size: 12px;
}

.cart-recommendation button {
  grid-row: 1 / span 2;
  grid-column: 2;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--bando-yellow);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cart-summary {
  flex: 0 0 auto;
  display: grid;
  gap: 14px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
}

.cart-note {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.checkout-page,
.payment-result-page {
  min-height: calc(100vh - var(--promo-height) - var(--header-height));
  padding: calc(var(--promo-height) + var(--header-height) + 34px) 22px 56px;
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 32px 32px,
    #fff8e6;
}

.checkout-hero,
.checkout-layout,
.payment-result-card {
  max-width: 1220px;
  margin-inline: auto;
}

.checkout-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.checkout-hero h1,
.payment-result-card h1 {
  max-width: 820px;
  margin: 0;
  color: var(--bando-pink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.88;
  text-shadow: 4px 4px 0 var(--bando-yellow), 7px 7px 0 var(--bando-ink);
  text-transform: uppercase;
}

.checkout-hero p:last-child,
.payment-result-card > p {
  max-width: 720px;
  margin: 0;
  color: rgba(24, 17, 15, 0.76);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.checkout-form-card,
.checkout-summary-card,
.payment-result-card {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-paper);
  box-shadow: 8px 8px 0 var(--bando-ink);
}

.checkout-form-card,
.checkout-summary-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.checkout-card-heading {
  display: grid;
  gap: 8px;
}

.checkout-card-heading h2,
.checkout-payment-box h3,
.checkout-side-heading strong {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.checkout-card-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-form-card label {
  display: grid;
  gap: 7px;
  color: var(--bando-ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-form-card input,
.checkout-form-card select,
.checkout-form-card textarea {
  width: 100%;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--bando-ink);
  background: #fffdf5;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.16);
  font: inherit;
  text-transform: none;
}

.checkout-form-card textarea {
  resize: vertical;
}

.checkout-field-note {
  color: rgba(24, 17, 15, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: none;
}

.checkout-payment-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 2px dashed rgba(24, 17, 15, 0.42);
  border-radius: 8px;
  background: #ffe1ec;
}

.checkout-payment-box p {
  margin: 8px 0 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-payment-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--bando-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-payment-steps li::marker {
  color: var(--coral-red);
  font-weight: 1000;
}

.checkout-payment-box .checkout-payment-safety {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 17, 15, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--bando-ink);
}

.checkout-actions [aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
}

.checkout-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.checkout-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--toffee-brown);
  font-size: 14px;
  font-weight: 900;
}

.checkout-status[data-tone="error"] {
  color: #b00020;
}

.checkout-status[data-tone="success"] {
  color: #157a3d;
}

.checkout-items {
  display: grid;
  gap: 12px;
}

.checkout-item,
.checkout-rec-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffdf5;
}

.checkout-item img,
.checkout-rec-card img {
  width: 64px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.checkout-item h3,
.checkout-rec-card h3 {
  margin: 0;
  color: var(--bando-ink);
  font-size: 15px;
  line-height: 1.15;
}

.checkout-item p,
.checkout-rec-card p {
  margin: 4px 0 0;
  color: rgba(24, 17, 15, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.checkout-discount-form {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 2px dashed rgba(24, 17, 15, 0.42);
  border-radius: 8px;
  background: #ffe1ec;
}

.checkout-discount-form label {
  color: var(--bando-ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-discount-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.checkout-discount-entry input {
  min-width: 0;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--bando-ink);
  background: #fffdf5;
  font: inherit;
  font-weight: 850;
}

.checkout-discount-status {
  min-height: 18px;
  margin: 0;
  color: var(--toffee-brown);
  font-size: 13px;
  font-weight: 900;
}

.checkout-discount-status[data-tone="error"] {
  color: #b00020;
}

.checkout-discount-status[data-tone="success"] {
  color: #157a3d;
}

.checkout-totals {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 2px solid var(--bando-ink);
}

.checkout-totals div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.checkout-totals span {
  color: rgba(24, 17, 15, 0.66);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-totals strong {
  color: var(--bando-ink);
  font-size: 17px;
  font-weight: 950;
}

.checkout-discount-total strong {
  color: #157a3d;
}

.checkout-discount-total small {
  display: inline-block;
  margin-left: 4px;
  color: var(--bando-pink);
  font-size: 11px;
  font-weight: 950;
}

.checkout-grand-total {
  padding: 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-yellow);
}

.checkout-grand-total strong {
  color: var(--bando-pink);
  font-size: 26px;
}

.checkout-recommendations {
  display: grid;
  gap: 12px;
}

.checkout-side-heading {
  display: grid;
  gap: 4px;
}

.checkout-side-heading span {
  color: var(--bando-pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-side-heading strong {
  font-size: 28px;
}

.checkout-rec-grid {
  display: grid;
  gap: 10px;
}

.checkout-rec-card {
  grid-template-columns: 58px minmax(0, 1fr);
}

.checkout-rec-card img {
  width: 58px;
  height: 62px;
}

.checkout-rec-card button {
  margin-top: 8px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 2px 2px 0 var(--bando-ink);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.checkout-empty {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 2px dashed rgba(24, 17, 15, 0.35);
  border-radius: 8px;
  background: #fffdf5;
}

.checkout-empty h3,
.checkout-empty p {
  margin: 0;
}

.payment-result-page {
  display: grid;
  align-items: center;
}

.payment-result-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 5vw, 52px);
}

.payment-detail-card {
  max-width: 780px;
  padding: 10px 18px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-yellow);
}

.payment-detail-row {
  display: grid;
  grid-template-columns: clamp(110px, 22%, 156px) minmax(0, 1fr);
  gap: 12px 20px;
  align-items: start;
  padding: 12px 0;
}

.payment-detail-row + .payment-detail-row {
  border-top: 1px solid rgba(24, 17, 15, 0.14);
}

.payment-detail-row span {
  color: rgba(24, 17, 15, 0.68);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.payment-detail-row strong {
  color: var(--bando-ink);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.payment-order-items {
  display: grid;
  max-width: 620px;
  gap: 8px;
}

.payment-order-items p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(24, 17, 15, 0.18);
  font-weight: 800;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 30px clamp(24px, 4vw, 56px);
  padding: 42px clamp(20px, 3vw, 36px);
  color: var(--porcelain);
  background: var(--matte-black);
}

.footer-brand {
  color: var(--porcelain);
}

.footer-brand .brand-symbol {
  padding: 4px;
  border-radius: 6px;
  background: var(--porcelain);
}

.site-footer p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  justify-content: start;
  align-content: start;
  gap: 12px 18px;
  color: rgba(255, 250, 242, 0.78);
  font-weight: 800;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.source-section {
  padding-top: calc(var(--header-height) + 64px);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.source-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.source-table th,
.source-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

.source-table th {
  background: var(--ivory);
  color: var(--matte-black);
  font-size: 12px;
  text-transform: uppercase;
}

.source-table a {
  color: var(--deep-maroon);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 18px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    min-height: 76vh;
    padding: 118px 20px 56px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .brand-tagline {
    font-size: 28px;
  }

  .hero-text {
    font-size: 18px;
  }

  .announcement {
    grid-template-columns: repeat(2, 1fr);
  }

  .announcement span:nth-child(2) {
    border-right: 0;
  }

  .section,
  .contact-section {
    padding: 68px 20px;
  }

  .split-layout,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-section > div,
  .contact-form {
    justify-self: stretch;
  }

  h2 {
    font-size: 36px;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planner-grid,
  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-band {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 380px;
  }

  .editorial-copy {
    padding: 48px 20px 58px;
  }

  .service-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    min-height: 74vh;
    padding-top: 100px;
    overflow: hidden;
    background-position: 58% center;
  }

  .hero-copy {
    width: min(100%, 350px);
    max-width: calc(100vw - 40px);
  }

  .hero h1 {
    font-size: 50px;
  }

  .brand-tagline {
    max-width: 100%;
    font-size: 22px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-stickers {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-stickers span {
    width: 100%;
    justify-content: center;
    text-align: center;
    transform: none;
  }

  .hero-stickers span:nth-child(2),
  .hero-stickers span:nth-child(3) {
    transform: none;
  }

  .button {
    width: 100%;
  }

  .announcement {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .announcement span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.22);
    padding-left: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .planner-grid,
  .zone-grid {
    grid-template-columns: 1fr;
  }

  .occasion-card {
    min-height: 132px;
  }

  .product-description {
    min-height: auto;
  }

  .cart-panel {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* Guided Build A Box: Who -> Why -> Option -> Mood -> Budget. */
.build-box-builder {
  max-width: 1220px;
  margin: clamp(34px, 6vw, 74px) auto;
  color: var(--bando-ink);
}

.build-box-builder[hidden],
.collection-tabs[hidden],
.collection-shop-shell[hidden],
.collection-help-band[hidden],
.rewards-account-shell[hidden] {
  display: none !important;
}

.build-box-builder-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 4vw, 46px);
  border: 2px solid var(--bando-ink);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 24px 24px,
    #fff0c9;
  box-shadow: 8px 8px 0 var(--bando-ink);
}

.build-box-builder-head h2 {
  max-width: 12ch;
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
}

.build-box-builder-head > div:first-child > p:last-child {
  max-width: 62ch;
  margin: 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.build-box-steps {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 8px;
}

.build-box-steps span {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 70px;
  padding: 10px 8px;
  border: 2px solid var(--bando-ink);
  border-radius: 12px;
  background: var(--bando-paper);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.build-box-steps b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.build-box-control-group {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--bando-ink);
  border-radius: 12px;
  background: var(--bando-paper);
  box-shadow: 5px 5px 0 rgba(24, 17, 15, 0.15);
}

.build-box-control-copy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.build-box-control-copy > span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.build-box-control-copy h3,
.build-box-products-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1;
}

.build-box-control-copy p,
.build-box-products-heading p {
  margin: 6px 0 0;
  color: rgba(24, 17, 15, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.build-box-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.build-box-choice {
  min-height: 44px;
  padding: 9px 15px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.17);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
}

.build-box-choice small {
  margin-left: 4px;
  opacity: 0.62;
  font-size: 10px;
}

.build-box-titli-way {
  display: grid;
  gap: 1px;
  min-width: 148px;
  justify-items: center;
  border-style: dashed;
  color: var(--bando-paper);
  background: var(--bando-ink);
  box-shadow: 4px 4px 0 var(--bando-pink);
}

.build-box-titli-way span {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  text-transform: none;
}

.build-box-titli-way small,
.build-box-titli-way:hover small,
.build-box-titli-way:focus-visible small {
  margin: 0;
  opacity: 0.78;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
}

.build-box-choice:hover,
.build-box-choice:focus-visible,
.build-box-choice.active {
  color: var(--bando-paper);
  background: var(--bando-pink);
  box-shadow: 4px 4px 0 var(--bando-ink);
  transform: translate(-1px, -1px);
}

.build-box-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}

.build-box-products-panel,
.build-box-summary {
  min-width: 0;
  border: 2px solid var(--bando-ink);
  border-radius: 14px;
  background: var(--bando-paper);
  box-shadow: 7px 7px 0 rgba(24, 17, 15, 0.14);
}

.build-box-products-panel {
  padding: 18px;
}

.build-box-products-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.build-box-products-heading > strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 12px;
}

.build-box-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.build-box-product {
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 12px;
  background: #fff;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.build-box-product.selected {
  background: #fff1a8;
  box-shadow: 5px 5px 0 var(--bando-pink);
  transform: translate(-2px, -2px);
}

.build-box-product.over-limit:not(.selected) {
  opacity: 0.55;
}

.build-box-product-image {
  position: relative;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  border-bottom: 2px solid var(--bando-ink);
  background: #f8efe5;
}

.build-box-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-box-product-image > span {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 8px;
  border: 1.5px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.build-box-product-image > .selected-badge {
  right: 8px;
  left: auto;
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.build-box-product-copy {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.build-box-product-copy > small {
  overflow: hidden;
  color: rgba(24, 17, 15, 0.58);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.build-box-product-copy h4 {
  min-height: 38px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.05;
}

.build-box-product-copy > strong,
.build-box-product-price > strong {
  color: var(--bando-pink);
  font-size: 16px;
}

.build-box-product-copy > .build-box-product-price {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}

.build-box-product-price s {
  color: rgba(24, 17, 15, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.build-box-product-price .sitewide-discount-badge {
  min-height: 21px;
  padding: 3px 6px;
  font-size: 8px;
}

.build-box-product-copy > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
}

.build-box-product-copy .button {
  min-height: 40px;
  padding: 8px;
  border-width: 2px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--bando-ink);
  font-size: 10px;
  white-space: nowrap;
}

.build-box-product-copy .button:disabled {
  color: rgba(24, 17, 15, 0.58);
  background: #e8e1d8;
  box-shadow: none;
  cursor: not-allowed;
}

.build-box-product-copy a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--bando-ink);
  font-size: 11px;
  font-weight: 850;
  text-underline-offset: 3px;
}

.build-box-summary {
  position: sticky;
  top: calc(var(--promo-height) + var(--header-height) + 16px);
  padding: 20px;
  background: #ffe2ed;
}

.build-box-route-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 18px;
}

.build-box-route-summary span {
  display: grid;
  gap: 1px;
  padding: 6px 8px;
  border: 1.5px solid var(--bando-ink);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 850;
}

.build-box-route-summary small {
  color: rgba(24, 17, 15, 0.58);
  font-size: 8px;
  font-weight: 950;
  text-transform: uppercase;
}

.build-box-order-brief {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 2px solid var(--bando-ink);
  border-radius: 10px;
  background: #fff1ad;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.16);
}

.build-box-order-brief p {
  margin: 0;
  color: var(--bando-pink);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.build-box-order-brief > strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.build-box-order-brief > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.build-box-order-brief span {
  padding: 4px 7px;
  border: 1px solid rgba(24, 17, 15, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 850;
}

.build-box-cart-brief {
  margin-bottom: 12px;
}

.build-box-checkout-brief {
  margin-bottom: 14px;
}

.build-box-summary-total,
.build-box-budget-line {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.build-box-summary-total {
  font-size: 15px;
  font-weight: 850;
}

.build-box-summary-total strong {
  font-family: var(--font-display);
  font-size: 32px;
}

.build-box-progress {
  height: 12px;
  overflow: hidden;
  margin: 10px 0 8px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-paper);
}

.build-box-progress span {
  display: block;
  height: 100%;
  background: var(--bando-pink);
  transition: width 180ms ease;
}

.build-box-budget-line {
  font-size: 12px;
}

.build-box-budget-line.over strong {
  color: #a10e39;
}

.build-box-selected-list {
  max-height: 220px;
  display: grid;
  gap: 7px;
  overflow: auto;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.build-box-selected-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px;
  border: 1px solid rgba(24, 17, 15, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.build-box-selected-list button,
.build-box-clear {
  border: 0;
  color: var(--bando-pink);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.build-box-empty-selection,
.build-box-packaging-note,
.build-box-live-status {
  color: rgba(24, 17, 15, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.build-box-empty-selection {
  margin: 18px 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.build-box-add-button {
  min-height: 50px;
  margin-top: 8px;
}

.build-box-add-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.build-box-clear {
  width: 100%;
  padding: 10px;
}

.build-box-packaging-note {
  margin: 8px 0 0;
}

.build-box-live-status {
  min-height: 34px;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(24, 17, 15, 0.18);
  font-weight: 800;
}

@media (max-width: 980px) {
  .build-box-builder-head,
  .build-box-control-group,
  .build-box-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .build-box-steps {
    width: 100%;
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 4px;
  }

  .build-box-summary {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .build-box-builder {
    margin-top: 34px;
  }

  .build-box-builder-head {
    gap: 20px;
    padding: 20px 16px;
    box-shadow: 5px 5px 0 var(--bando-ink);
  }

  .build-box-builder-head h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px);
  }

  .build-box-steps span {
    min-width: 72px;
  }

  .build-box-control-group {
    gap: 14px;
    padding: 16px;
  }

  .build-box-control-copy {
    display: grid;
  }

  .build-box-control-copy > span {
    width: fit-content;
  }

  .build-box-choice-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -4px;
    padding: 4px 4px 9px;
    scroll-snap-type: x proximity;
  }

  .build-box-choice {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .build-box-products-panel,
  .build-box-summary {
    padding: 14px;
  }

  .build-box-products-heading {
    align-items: flex-start;
  }

  .build-box-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .build-box-product-copy {
    padding: 10px;
  }

  .build-box-product-copy h4 {
    min-height: 34px;
    font-size: 17px;
  }

  .build-box-product-copy > div {
    grid-template-columns: 1fr;
  }

  .build-box-product-copy a {
    min-height: 28px;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .build-box-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .build-box-product-image {
    aspect-ratio: 1.35 / 1;
  }
}

/* International gift-shop restyle with an old-school Indian retail touch. */
:root {
  --ink: #241814;
  --matte-black: #241814;
  --cocoa: #4a2c24;
  --charcoal: #332b26;
  --muted: #73665c;
  --stone: #9c8d7c;
  --paper: #fbf6ed;
  --porcelain: #fffaf2;
  --ivory: #efe3d1;
  --warm-sand: #ddc8a6;
  --champagne: #c8953d;
  --rose-gold: #cf8f85;
  --copper: #a95f3d;
  --deep-maroon: #8f2435;
  --soft-blush: #f3ddd7;
  --sunny: #e4b954;
  --aqua: #b8d8d0;
  --mint: #d6dfb4;
  --raspberry: #a93a5c;
  --deep-emerald: #244d3e;
  --deep-navy: #263654;
  --line: rgba(36, 24, 20, 0.14);
  --shadow: 0 22px 54px rgba(36, 24, 20, 0.13);
  --radius: 8px;
  font-family: "Aptos", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background:
    linear-gradient(90deg, rgba(143, 36, 53, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(36, 77, 62, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 12% 14%, rgba(200, 149, 61, 0.13), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(38, 54, 84, 0.11), transparent 32%),
    var(--paper);
}

.site-header,
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(36, 24, 20, 0.16);
  box-shadow: 0 10px 30px rgba(36, 24, 20, 0.08);
}

.brand {
  color: var(--deep-maroon);
  font-size: 25px;
}

.nav-links {
  gap: 20px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-button {
  color: var(--deep-emerald);
  background: rgba(36, 77, 62, 0.05);
}

.cart-count {
  color: var(--porcelain);
  background: var(--deep-maroon);
}

.hero {
  min-height: 88vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  padding: 132px 48px 78px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 250, 242, 0.96), rgba(251, 246, 237, 0.9) 46%, rgba(221, 200, 166, 0.5)),
    url("/media/assets/professional-product-photos-preview.webp") center / cover;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px 28px 28px;
  z-index: -1;
  border: 1px solid rgba(36, 24, 20, 0.16);
  background:
    linear-gradient(90deg, rgba(143, 36, 53, 0.08) 8px, transparent 8px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(36, 77, 62, 0.06) 8px, transparent 8px) 0 0 / 28px 28px;
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 104px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(143, 36, 53, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 45%, rgba(143, 36, 53, 0.12) 47%, transparent 49%),
    conic-gradient(from 20deg, rgba(200, 149, 61, 0.22), transparent 18%, rgba(36, 77, 62, 0.18), transparent 44%, rgba(143, 36, 53, 0.2), transparent 70%, rgba(38, 54, 84, 0.16));
}

.hero-copy {
  width: min(710px, 100%);
  padding: 18px 0;
}

.eyebrow,
.section-kicker {
  color: var(--deep-maroon);
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  color: var(--deep-maroon);
  font-size: clamp(72px, 12vw, 138px);
  line-height: 0.84;
}

.brand-tagline {
  color: var(--deep-emerald);
  font-size: clamp(26px, 4vw, 46px);
}

.hero-text {
  color: var(--charcoal);
  font-size: 19px;
}

.hero-stickers span,
.mood-strip span {
  border: 1px solid rgba(36, 24, 20, 0.18);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 8px 20px rgba(36, 24, 20, 0.08);
}

.hero-stickers span:nth-child(2),
.hero-stickers span:nth-child(3) {
  background: rgba(255, 250, 242, 0.88);
  transform: none;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-frame {
  overflow: hidden;
  border: 1px solid rgba(36, 24, 20, 0.18);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  width: min(520px, 100%);
  height: 440px;
  margin-left: auto;
  padding: 12px;
  transform: rotate(1deg);
}

.hero-frame-main img {
  border-radius: 6px;
}

.hero-frame-small {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 220px;
  height: 255px;
  padding: 10px;
  transform: rotate(-2deg);
}

.hero-ticket {
  position: absolute;
  right: 18px;
  bottom: 0;
  display: grid;
  gap: 6px;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 149, 61, 0.6);
  border-radius: var(--radius);
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(143, 36, 53, 0.96), rgba(36, 77, 62, 0.96)),
    var(--deep-maroon);
  box-shadow: 0 18px 40px rgba(36, 24, 20, 0.18);
}

.hero-ticket span {
  color: rgba(255, 250, 242, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-ticket strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.button {
  border-radius: var(--radius);
}

.button.primary {
  color: var(--porcelain);
  background: var(--deep-maroon);
  border-color: var(--deep-maroon);
}

.button.secondary {
  color: var(--deep-emerald);
  background: rgba(255, 250, 242, 0.5);
  border-color: rgba(36, 77, 62, 0.34);
}

.announcement {
  color: var(--porcelain);
  background:
    linear-gradient(90deg, var(--deep-emerald), var(--deep-navy));
}

.announcement span {
  border-right-color: rgba(255, 250, 242, 0.22);
}

.section {
  padding-top: 94px;
  padding-bottom: 94px;
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
}

.section-lede,
.intro-copy,
.zone-grid p,
.service-item p,
.product-description,
.shop-status {
  color: var(--muted);
}

.occasion-grid {
  gap: 18px;
}

.occasion-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(36, 24, 20, 0.15);
  border-top: 1px solid rgba(36, 24, 20, 0.15);
  color: var(--ink);
  background:
    linear-gradient(150deg, rgba(255, 250, 242, 0.97), rgba(239, 227, 209, 0.65)),
    var(--porcelain);
  box-shadow: 0 14px 36px rgba(36, 24, 20, 0.07);
}

.occasion-card:nth-child(4n + 1),
.occasion-card:nth-child(4n + 2),
.occasion-card:nth-child(4n + 3),
.occasion-card:nth-child(4n) {
  border-top: 1px solid rgba(36, 24, 20, 0.15);
}

.occasion-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(36, 24, 20, 0.08);
  pointer-events: none;
}

.occasion-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(200, 149, 61, 0.55);
  background:
    linear-gradient(90deg, transparent 47%, rgba(200, 149, 61, 0.4) 48%, rgba(200, 149, 61, 0.4) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(200, 149, 61, 0.4) 48%, rgba(200, 149, 61, 0.4) 52%, transparent 53%);
}

.occasion-card.featured,
.occasion-card.active {
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(143, 36, 53, 0.98), rgba(74, 44, 36, 0.98)),
    var(--deep-maroon);
  border-color: rgba(143, 36, 53, 0.42);
}

.occasion-card:hover,
.occasion-card:focus-visible {
  background: var(--porcelain);
  border-color: rgba(143, 36, 53, 0.38);
  box-shadow: 0 18px 46px rgba(36, 24, 20, 0.11);
}

.occasion-card.featured:hover,
.occasion-card.featured:focus-visible,
.occasion-card.active:hover,
.occasion-card.active:focus-visible {
  background:
    linear-gradient(135deg, rgba(143, 36, 53, 0.98), rgba(74, 44, 36, 0.98)),
    var(--deep-maroon);
}

.occasion-card span {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(143, 36, 53, 0.24);
  border-radius: 999px;
  color: var(--deep-maroon);
  background: rgba(255, 250, 242, 0.64);
  font-size: 12px;
}

.occasion-card.featured span,
.occasion-card.active span {
  color: var(--porcelain);
  border-color: rgba(255, 250, 242, 0.38);
  background: rgba(255, 250, 242, 0.12);
}

.occasion-card strong,
.planner-card strong,
.zone-grid strong,
.service-item h3,
.product-body h3 {
  color: inherit;
}

.planner-section {
  padding-top: 66px;
}

.planner-card {
  min-height: 206px;
  border: 1px solid rgba(36, 24, 20, 0.15);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(239, 227, 209, 0.74)),
    var(--porcelain);
  box-shadow: 0 14px 34px rgba(36, 24, 20, 0.08);
}

.planner-card:nth-child(2),
.planner-card:nth-child(3),
.planner-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(239, 227, 209, 0.74)),
    var(--porcelain);
}

.planner-card span,
.zone-grid span {
  color: var(--porcelain);
  background: var(--deep-emerald);
  border-radius: var(--radius);
}

.planner-card strong {
  font-size: 23px;
}

.mood-strip span:nth-child(2n),
.mood-strip span:nth-child(3n) {
  background: rgba(255, 250, 242, 0.88);
}

.filter-button {
  border-color: rgba(36, 24, 20, 0.18);
  color: var(--charcoal);
  background: rgba(255, 250, 242, 0.64);
}

.filter-button.active {
  color: var(--porcelain);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

.product-grid {
  gap: 20px;
}

.product-card {
  border-color: rgba(36, 24, 20, 0.13);
  background: var(--porcelain);
  box-shadow: 0 12px 32px rgba(36, 24, 20, 0.08);
}

.product-media {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.72), rgba(243, 221, 215, 0.52)),
    var(--ivory);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 250, 242, 0.52);
  border-radius: 6px;
  pointer-events: none;
}

.product-body {
  padding: 18px;
}

.product-meta {
  color: var(--deep-emerald);
}

.product-tags span {
  color: var(--deep-maroon);
  background: rgba(143, 36, 53, 0.09);
}

.price {
  color: var(--deep-maroon);
}

.editorial-band {
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(36, 77, 62, 0.98), rgba(38, 54, 84, 0.98)),
    var(--deep-emerald);
}

.editorial-image {
  background:
    linear-gradient(0deg, rgba(36, 24, 20, 0.14), rgba(36, 24, 20, 0.14)),
    url("/media/assets/open-license-product-photos/earring-jhumka.jpg") center / cover;
}

.text-link {
  color: var(--champagne);
}

.zone-grid article {
  border-color: rgba(36, 24, 20, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(239, 227, 209, 0.7)),
    var(--porcelain);
}

.zone-grid article:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(239, 227, 209, 0.7)),
    var(--porcelain);
}

.service-item {
  border-top-color: rgba(36, 24, 20, 0.2);
}

.service-number {
  color: var(--deep-emerald);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255, 250, 242, 0.06) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(120deg, rgba(38, 54, 84, 0.98), rgba(143, 36, 53, 0.94)),
    var(--deep-navy);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--porcelain);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 250, 242, 0.08);
}

.site-footer {
  background:
    linear-gradient(135deg, var(--ink), var(--deep-emerald));
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 112px 22px 62px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-frame-main {
    height: 340px;
    margin-left: 0;
  }

  .hero-frame-small {
    left: auto;
    right: 18px;
    bottom: 6px;
    width: 190px;
    height: 220px;
  }

  .hero-ticket {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding: 96px 18px 44px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(58px, 22vw, 88px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions .button,
  .contact-form .button,
  .cart-summary .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-frame-main {
    height: 270px;
    width: 100%;
  }

  .hero-frame-small {
    width: 142px;
    height: 160px;
    right: 8px;
  }

  .hero-ticket {
    min-width: 180px;
    max-width: calc(100vw - 64px);
    padding: 13px 14px;
  }

  .hero-ticket strong {
    font-size: 21px;
  }
}

/* TITLI pop-out quirky redesign. Global gift-shop energy, Indian old-school warmth. */
:root {
  --ink: #160f13;
  --paper: #fff4df;
  --porcelain: #fffaf1;
  --ivory: #f5dfbe;
  --deep-maroon: #9d123c;
  --deep-emerald: #006b52;
  --deep-navy: #252565;
  --champagne: #f0b72f;
  --sunny: #ffd447;
  --aqua: #15b8b2;
  --mint: #c9f36b;
  --soft-blush: #ffcad8;
  --raspberry: #f3386d;
  --copper: #ff7a2f;
  --line: rgba(22, 15, 19, 0.16);
  --shadow: 0 18px 0 rgba(22, 15, 19, 0.16), 0 28px 60px rgba(22, 15, 19, 0.14);
}

body {
  background:
    linear-gradient(135deg, rgba(157, 18, 60, 0.08) 0 12px, transparent 12px 24px) 0 0 / 34px 34px,
    linear-gradient(45deg, rgba(0, 107, 82, 0.06) 0 10px, transparent 10px 22px) 0 0 / 44px 44px,
    var(--paper);
}

.site-header,
.site-header.scrolled {
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 8px 0 rgba(22, 15, 19, 0.1);
}

.brand {
  color: var(--ink);
}

.brand-symbol {
  filter: drop-shadow(2px 2px 0 rgba(240, 183, 47, 0.9));
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--porcelain);
  background: var(--deep-maroon);
}

.nav-links a::after {
  display: none;
}

.cart-button {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--sunny);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero {
  min-height: 90vh;
  padding: 132px 38px 64px;
  background:
    linear-gradient(100deg, rgba(255, 244, 223, 0.98) 0 44%, rgba(255, 202, 216, 0.86) 44% 68%, rgba(21, 184, 178, 0.72) 68%),
    var(--paper);
}

.hero::before {
  inset: 96px 24px 24px;
  border: 3px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(22, 15, 19, 0.06) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(22, 15, 19, 0.06) 1px, transparent 1px) 0 0 / 18px 18px;
  opacity: 1;
}

.hero::after {
  content: "TITLI";
  top: 116px;
  right: 42px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(7deg);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "gift finder";
  position: absolute;
  top: -34px;
  left: 18px;
  padding: 8px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--sunny);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-5deg);
}

.eyebrow,
.section-kicker {
  width: fit-content;
  padding: 8px 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--deep-maroon);
  background: var(--porcelain);
  box-shadow: 4px 4px 0 rgba(22, 15, 19, 0.12);
}

.hero h1 {
  color: var(--deep-maroon);
  text-shadow: 4px 4px 0 var(--sunny), 8px 8px 0 rgba(22, 15, 19, 0.12);
}

.brand-tagline {
  color: var(--ink);
}

.hero-text {
  color: var(--ink);
  font-weight: 700;
}

.hero-stickers {
  gap: 12px;
}

.hero-stickers span,
.mood-strip span {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: 5px 5px 0 var(--ink);
}

.hero-stickers span:nth-child(1) {
  background: var(--sunny);
  transform: rotate(-3deg);
}

.hero-stickers span:nth-child(2) {
  background: var(--soft-blush);
  transform: rotate(2deg);
}

.hero-stickers span:nth-child(3) {
  background: var(--aqua);
  transform: rotate(-1deg);
}

.hero-stickers span:nth-child(4) {
  background: var(--mint);
  transform: rotate(3deg);
}

.button {
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.button.primary {
  color: var(--porcelain);
  background: var(--deep-maroon);
  border-color: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: var(--sunny);
  border-color: var(--ink);
}

.hero-frame {
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 12px 12px 0 var(--ink);
}

.hero-frame-main {
  height: 470px;
  background: var(--porcelain);
  transform: rotate(2.5deg);
}

.hero-frame-main img {
  object-fit: cover;
  object-position: left top;
}

.hero-frame-small {
  width: 245px;
  height: 285px;
  background: var(--sunny);
  transform: rotate(-7deg);
}

.hero-ticket {
  border: 3px solid var(--ink);
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--sunny), var(--soft-blush));
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-3deg);
}

.hero-ticket span {
  color: rgba(22, 15, 19, 0.76);
}

.announcement {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  background:
    linear-gradient(90deg, var(--sunny), var(--soft-blush), var(--aqua), var(--mint));
}

.announcement span {
  border-right: 3px solid var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.quirk-ribbon {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 22px 32px;
  border-bottom: 3px solid var(--ink);
  background: var(--deep-navy);
}

.quirk-ribbon span {
  flex: 0 0 auto;
  min-width: 130px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.quirk-ribbon span:nth-child(3n + 1) {
  background: var(--sunny);
  transform: rotate(-2deg);
}

.quirk-ribbon span:nth-child(3n + 2) {
  background: var(--soft-blush);
  transform: rotate(1.5deg);
}

.quirk-ribbon span:nth-child(3n) {
  background: var(--aqua);
  transform: rotate(-1deg);
}

.section {
  position: relative;
}

.split-layout {
  align-items: center;
}

h2 {
  color: var(--ink);
  text-shadow: 2px 2px 0 rgba(240, 183, 47, 0.6);
}

.section-lede,
.intro-copy {
  color: var(--ink);
}

.occasion-grid {
  gap: 22px;
}

.occasion-card {
  min-height: 184px;
  border: 3px solid var(--ink);
  background: var(--porcelain);
  box-shadow: 8px 8px 0 rgba(22, 15, 19, 0.92);
}

.occasion-card::before {
  inset: auto 18px 16px auto;
  width: 44px;
  height: 10px;
  border: 0;
  background: rgba(22, 15, 19, 0.12);
  transform: rotate(-8deg);
}

.occasion-card::after {
  border: 2px solid var(--ink);
  background: var(--sunny);
}

.occasion-card:nth-child(3n + 1) {
  transform: rotate(-1deg);
}

.occasion-card:nth-child(3n + 2) {
  transform: rotate(1deg);
}

.occasion-card:nth-child(3n) {
  transform: rotate(-0.5deg);
}

.occasion-card.featured,
.occasion-card.active {
  color: var(--ink);
  background: var(--sunny);
  border-color: var(--ink);
}

.occasion-card:hover,
.occasion-card:focus-visible {
  transform: translate(-3px, -3px) rotate(0deg);
  box-shadow: 12px 12px 0 var(--deep-maroon);
}

.occasion-card.featured:hover,
.occasion-card.featured:focus-visible,
.occasion-card.active:hover,
.occasion-card.active:focus-visible {
  background: var(--sunny);
}

.occasion-card span {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--soft-blush);
  box-shadow: 3px 3px 0 var(--ink);
}

.occasion-card.featured span,
.occasion-card.active span {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--porcelain);
}

.occasion-card small,
.occasion-card.featured small,
.occasion-card.active small {
  color: var(--ink);
}

.planner-card {
  border: 3px solid var(--ink);
  background: var(--porcelain);
  box-shadow: 8px 8px 0 var(--ink);
}

.planner-card:nth-child(2),
.planner-card:nth-child(3),
.planner-card:nth-child(4) {
  background: var(--porcelain);
}

.planner-card:nth-child(1) {
  background: var(--soft-blush);
}

.planner-card:nth-child(2) {
  background: var(--sunny);
}

.planner-card:nth-child(3) {
  background: var(--aqua);
}

.planner-card:nth-child(4) {
  background: var(--mint);
}

.planner-card span,
.zone-grid span {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: 3px 3px 0 var(--ink);
}

.mood-strip span,
.mood-strip span:nth-child(2n),
.mood-strip span:nth-child(3n) {
  background: var(--porcelain);
}

.filter-button {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: 3px 3px 0 var(--ink);
}

.filter-button.active {
  color: var(--ink);
  background: var(--sunny);
  border-color: var(--ink);
}

.product-card {
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--porcelain);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--deep-maroon);
}

.product-media {
  background:
    linear-gradient(135deg, var(--soft-blush) 0 50%, var(--sunny) 50%);
}

.product-media::after {
  border: 2px solid rgba(22, 15, 19, 0.14);
}

.product-meta {
  color: var(--ink);
}

.product-tags span {
  border: 1px solid rgba(22, 15, 19, 0.18);
  color: var(--ink);
  background: var(--soft-blush);
}

.price {
  color: var(--deep-maroon);
}

.editorial-band {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: var(--porcelain);
  background:
    linear-gradient(120deg, var(--deep-maroon), var(--deep-navy) 54%, var(--deep-emerald));
}

.editorial-image {
  border-right: 3px solid var(--ink);
  background:
    linear-gradient(0deg, rgba(22, 15, 19, 0.08), rgba(22, 15, 19, 0.08)),
    url("/media/assets/titli-reaction-gift-branded.webp") center / cover;
}

.editorial-copy h2 {
  color: var(--porcelain);
  text-shadow: 3px 3px 0 rgba(22, 15, 19, 0.42);
}

.text-link {
  color: var(--sunny);
}

.zone-grid article {
  border: 3px solid var(--ink);
  background: var(--porcelain);
  box-shadow: 7px 7px 0 var(--ink);
}

.zone-grid article:nth-child(2n) {
  background: var(--ivory);
}

.service-item {
  padding: 22px;
  border: 3px solid var(--ink);
  background: var(--porcelain);
  box-shadow: 7px 7px 0 rgba(22, 15, 19, 0.86);
}

.service-number {
  color: var(--deep-maroon);
}

.contact-section {
  border-top: 3px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.12) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(255, 250, 241, 0.12) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--deep-maroon);
}

.contact-form input,
.contact-form textarea {
  border: 2px solid rgba(255, 250, 241, 0.72);
  background: rgba(22, 15, 19, 0.16);
}

.cart-panel {
  border-left: 3px solid var(--ink);
}

.site-footer {
  border-top: 3px solid var(--ink);
  background: var(--ink);
}

@media (max-width: 980px) {
  .nav-links {
    gap: 8px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-frame-main {
    height: 360px;
  }

  .editorial-image {
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 106px 18px 46px;
  }

  .hero::before {
    inset: 76px 10px 14px;
  }

  .hero::after {
    top: 78px;
    right: 18px;
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero-copy::before {
    top: -26px;
    left: 0;
  }

  .hero-stickers {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stickers span {
    min-height: 48px;
    transform: none;
  }

  .hero-frame-main {
    height: 250px;
    transform: rotate(0deg);
  }

  .hero-frame-small {
    width: 140px;
    height: 150px;
  }

  .announcement span {
    border-right: 0;
  }

  .quirk-ribbon {
    padding: 18px;
  }

  .quirk-ribbon span {
    min-width: 112px;
    font-size: 17px;
  }

  .occasion-card,
  .occasion-card:nth-child(3n + 1),
  .occasion-card:nth-child(3n + 2),
  .occasion-card:nth-child(3n),
  .planner-card,
  .product-card,
  .zone-grid article,
  .service-item {
    transform: none;
    box-shadow: 5px 5px 0 var(--ink);
  }
}

/* Indian 90s pinboard pass: Bollywood poster, cassette label, bazaar ticket. */
:root {
  --ink: #121016;
  --paper: #ffe6a6;
  --porcelain: #fff8d9;
  --ivory: #f8cb64;
  --deep-maroon: #d41456;
  --deep-emerald: #007a5c;
  --deep-navy: #181a74;
  --champagne: #ffb400;
  --sunny: #ffe31a;
  --aqua: #00c6d7;
  --mint: #b9ff4b;
  --soft-blush: #ff8fc2;
  --raspberry: #ff2d75;
  --copper: #ff6a00;
  --line: rgba(18, 16, 22, 0.22);
}

body {
  background:
    linear-gradient(90deg, rgba(18, 16, 22, 0.06) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, rgba(18, 16, 22, 0.06) 1px, transparent 1px) 0 0 / 22px 22px,
    radial-gradient(circle at 12% 18%, rgba(255, 45, 117, 0.24), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(0, 198, 215, 0.24), transparent 28%),
    linear-gradient(135deg, #ffe6a6, #ffd0e4 46%, #b9ff4b);
}

.site-header,
.site-header.scrolled {
  background: #fff8d9;
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 8px 0 var(--deep-maroon);
}

.brand {
  color: var(--deep-navy);
  text-shadow: 2px 2px 0 var(--sunny);
}

.nav-links {
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--sunny);
  box-shadow: 3px 3px 0 var(--ink);
}

.cart-button {
  background: var(--aqua);
  box-shadow: 5px 5px 0 var(--ink);
}

.hero {
  min-height: 92vh;
  background:
    repeating-linear-gradient(0deg, rgba(18, 16, 22, 0.05) 0 2px, transparent 2px 8px),
    linear-gradient(115deg, #ffe31a 0 32%, #ff8fc2 32% 58%, #00c6d7 58% 79%, #b9ff4b 79%);
}

.hero::before {
  border: 4px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 248, 217, 0.72) 50%, transparent 50%) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(255, 248, 217, 0.72) 50%, transparent 50%) 0 0 / 42px 42px;
  mix-blend-mode: multiply;
  opacity: 0.34;
}

.hero::after {
  content: "SUPERHIT GIFTS";
  color: var(--porcelain);
  background: var(--deep-maroon);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0;
  transform: rotate(8deg);
}

.hero-copy::before {
  content: "90s gift masala";
  background: var(--porcelain);
}

.eyebrow,
.section-kicker {
  color: var(--ink);
  background: var(--sunny);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--deep-maroon);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0.01em;
  text-shadow:
    4px 4px 0 var(--porcelain),
    8px 8px 0 var(--deep-navy),
    12px 12px 0 rgba(18, 16, 22, 0.18);
}

.brand-tagline {
  max-width: 610px;
  width: fit-content;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--porcelain);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1deg);
}

.hero-text {
  max-width: 590px;
  padding: 18px;
  border: 3px dashed var(--ink);
  color: var(--ink);
  background: rgba(255, 248, 217, 0.86);
  box-shadow: 7px 7px 0 rgba(18, 16, 22, 0.22);
}

.hero-stickers span:nth-child(1) {
  background: var(--deep-maroon);
  color: var(--porcelain);
}

.hero-stickers span:nth-child(2) {
  background: var(--aqua);
}

.hero-stickers span:nth-child(3) {
  background: var(--sunny);
}

.hero-stickers span:nth-child(4) {
  background: var(--mint);
}

.button.primary {
  background: var(--deep-navy);
}

.button.secondary {
  background: var(--copper);
}

.hero-frame-main {
  padding: 0;
  border-width: 4px;
  background: var(--porcelain);
  box-shadow: 14px 14px 0 var(--deep-navy), 22px 22px 0 var(--ink);
}

.hero-frame-main::before {
  content: "PHOTO STUDIO";
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--sunny);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-frame-main img {
  border-radius: 0;
  filter: saturate(1.18) contrast(1.04);
}

.hero-frame-small {
  border-width: 4px;
  box-shadow: 10px 10px 0 var(--deep-maroon), 16px 16px 0 var(--ink);
}

.hero-ticket {
  background: var(--porcelain);
}

.hero-ticket strong {
  color: var(--deep-maroon);
}

.announcement {
  background:
    linear-gradient(90deg, var(--deep-maroon), var(--sunny), var(--aqua), var(--mint));
}

.announcement span {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 16px;
}

.quirk-ribbon {
  background: var(--ink);
}

.quirk-ribbon span {
  border-radius: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 32px;
  border-bottom: 4px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 16, 22, 0.07) 1px, transparent 1px) 0 0 / 16px 16px,
    #fff8d9;
}

.poster-wall article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--sunny);
  box-shadow: 8px 8px 0 var(--ink);
}

.poster-wall article:nth-child(2) {
  background: var(--soft-blush);
  transform: rotate(1.2deg);
}

.poster-wall article:nth-child(3) {
  background: var(--aqua);
  transform: rotate(-1deg);
}

.poster-wall article:nth-child(4) {
  background: var(--mint);
  transform: rotate(1deg);
}

.poster-wall span {
  width: fit-content;
  padding: 6px 9px;
  border: 2px solid var(--ink);
  color: var(--porcelain);
  background: var(--deep-navy);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-wall strong {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.9;
}

.poster-wall small {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0.01em;
  text-shadow: 4px 4px 0 var(--sunny);
}

.section-header {
  align-items: center;
}

.section-lede {
  padding: 14px;
  border: 2px solid var(--ink);
  background: var(--porcelain);
  box-shadow: 5px 5px 0 rgba(18, 16, 22, 0.22);
  font-weight: 750;
}

.intro-copy {
  border-left: 6px solid var(--deep-maroon);
  padding-left: 22px;
  font-weight: 700;
}

.occasion-card strong,
.planner-card strong,
.zone-grid strong,
.service-item h3,
.product-body h3 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0.01em;
}

.occasion-card {
  border-width: 4px;
}

.occasion-card:nth-child(4n + 1) {
  background: var(--porcelain);
}

.occasion-card:nth-child(4n + 2) {
  background: #ffe0ef;
}

.occasion-card:nth-child(4n + 3) {
  background: #dffcff;
}

.occasion-card:nth-child(4n) {
  background: #eeffd0;
}

.occasion-card.featured,
.occasion-card.active {
  background: var(--sunny);
}

.planner-card {
  border-width: 4px;
}

.product-card {
  border-width: 4px;
  background: #fff8d9;
}

.product-media {
  border-bottom: 4px solid var(--ink);
  background: var(--porcelain);
}

.product-body .button {
  min-height: 42px;
}

.editorial-band {
  background:
    linear-gradient(135deg, var(--deep-navy), var(--deep-maroon) 52%, var(--copper));
}

.editorial-copy h2 {
  color: var(--sunny);
  text-shadow: 4px 4px 0 var(--ink);
}

.zone-grid article,
.service-item {
  border-width: 4px;
}

.contact-section {
  background:
    repeating-linear-gradient(0deg, rgba(255, 248, 217, 0.12) 0 2px, transparent 2px 8px),
    var(--deep-navy);
}

.contact-section h2 {
  color: var(--sunny);
  text-shadow: 4px 4px 0 var(--ink);
}

@media (max-width: 980px) {
  .poster-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .poster-wall {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .poster-wall article,
  .poster-wall article:nth-child(2),
  .poster-wall article:nth-child(3),
  .poster-wall article:nth-child(4) {
    transform: none;
  }

  .brand-tagline,
  .hero-text {
    transform: none;
  }

  h2 {
    text-shadow: 3px 3px 0 var(--sunny);
  }
}

/* Centered TITLI hero with Indian people holding gifts. */
.hero {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 94vh;
  padding: 128px 28px 70px;
  overflow: hidden;
}

.hero-copy {
  z-index: 4;
  width: min(760px, calc(100vw - 56px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy::before {
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
}

.hero h1 {
  font-size: clamp(82px, 17vw, 220px);
}

.brand-tagline {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transform: rotate(0deg);
}

.hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transform: rotate(-0.5deg);
}

.hero-stickers,
.hero-actions {
  justify-content: center;
}

.hero-visual {
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: 2;
  pointer-events: none;
}

.hero-frame {
  pointer-events: none;
}

.hero-people-card {
  position: absolute;
  left: max(22px, 4vw);
  top: clamp(90px, 12vh, 140px);
  width: clamp(210px, 28vw, 390px);
  height: clamp(290px, 42vw, 520px);
  padding: 0;
  transform: rotate(-5deg);
}

.hero-people-card::before {
  content: "GIFT SCENE";
}

.hero-people-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.04);
}

.hero-frame-small {
  position: absolute;
  left: auto;
  right: max(20px, 5vw);
  top: clamp(110px, 13vh, 150px);
  width: clamp(210px, 25vw, 360px);
  height: clamp(190px, 27vw, 330px);
  transform: rotate(6deg);
}

.hero-frame-small img {
  object-fit: cover;
  object-position: left top;
}

.hero-frame-product {
  position: absolute;
  right: max(32px, 12vw);
  bottom: clamp(38px, 8vh, 86px);
  width: clamp(150px, 17vw, 250px);
  height: clamp(160px, 20vw, 270px);
  padding: 8px;
  transform: rotate(-7deg);
}

.hero-frame-product img {
  height: 100%;
  object-fit: cover;
}

.hero-ticket {
  right: auto;
  left: 50%;
  bottom: clamp(28px, 7vh, 80px);
  transform: translateX(-50%) rotate(2deg);
}

.hero-gift-motion {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 42;
  pointer-events: none;
}

.gift-float {
  position: absolute;
  display: block;
  filter: drop-shadow(5px 6px 0 rgba(20, 16, 13, 0.2));
  animation: hero-gift-drift 7s ease-in-out infinite;
  pointer-events: auto;
  transition: scale 150ms ease, filter 150ms ease;
}

.gift-float:hover,
.gift-float:focus-visible {
  scale: 1.08;
  filter: drop-shadow(7px 8px 0 rgba(20, 16, 13, 0.3));
  outline: none;
}

.gift-float span {
  position: absolute;
  left: 50%;
  bottom: -28px;
  min-width: max-content;
  padding: 4px 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--retro-cream);
  box-shadow: 2px 2px 0 rgba(20, 16, 13, 0.76);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.gift-float-box,
.gift-float-mini {
  width: clamp(34px, 4.2vw, 58px);
  height: clamp(32px, 3.9vw, 54px);
  border: 2px solid var(--ink);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 43%, var(--retro-red) 44% 56%, transparent 57%),
    linear-gradient(0deg, transparent 45%, var(--retro-red) 46% 57%, transparent 58%),
    var(--retro-cream);
}

.gift-float-box::before,
.gift-float-mini::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -13px;
  width: 30px;
  height: 16px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--retro-pink);
  transform: translateX(-50%);
}

.gift-float-card,
.gift-float-note {
  width: clamp(42px, 5.2vw, 74px);
  height: clamp(30px, 3.7vw, 52px);
  border: 2px solid var(--ink);
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 49%, rgba(20, 16, 13, 0.65) 50% 52%, transparent 53%),
    linear-gradient(45deg, transparent 49%, rgba(20, 16, 13, 0.65) 50% 52%, transparent 53%),
    #fff8d9;
}

.gift-float-note::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 11px;
  height: 2px;
  background: var(--retro-blue);
  box-shadow: 0 9px 0 var(--retro-pink);
}

.gift-float-box {
  left: max(18px, calc(50% - 444px));
  top: clamp(88px, 22vh, 190px);
  transform: rotate(-10deg);
}

.gift-float-card {
  right: max(18px, calc(50% - 452px));
  top: clamp(94px, 23vh, 206px);
  animation-delay: -1.6s;
  transform: rotate(9deg);
}

.gift-float-note {
  left: max(20px, calc(50% - 404px));
  bottom: clamp(76px, 14vh, 132px);
  animation-delay: -3.1s;
  transform: rotate(-8deg);
}

.gift-float-mini {
  right: max(22px, calc(50% - 396px));
  bottom: clamp(82px, 15vh, 144px);
  width: clamp(26px, 3.4vw, 42px);
  height: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(90deg, transparent 42%, var(--retro-blue) 43% 57%, transparent 58%),
    linear-gradient(0deg, transparent 45%, var(--retro-blue) 46% 57%, transparent 58%),
    var(--retro-yellow);
  animation-delay: -4.4s;
}

@keyframes hero-gift-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

.hero::after {
  right: 50%;
  top: 102px;
  transform: translateX(50%) rotate(6deg);
}

@media (max-width: 980px) {
  .hero {
    min-height: 92vh;
    padding-top: 120px;
  }

  .hero-copy {
    margin-top: 76px;
  }

  .hero-people-card {
    left: 18px;
    top: 94px;
    width: 210px;
    height: 280px;
    opacity: 0.9;
  }

  .hero-frame-small {
    right: 14px;
    top: 112px;
    width: 190px;
    height: 175px;
    opacity: 0.9;
  }

  .hero-frame-product {
    right: 20px;
    bottom: 54px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 880px;
    padding-top: 106px;
  }

  .hero-copy {
    width: calc(100vw - 36px);
    margin-top: 240px;
  }

  .hero h1 {
    font-size: clamp(72px, 23vw, 118px);
  }

  .hero-people-card {
    left: 14px;
    top: 92px;
    width: 175px;
    height: 230px;
    transform: rotate(-4deg);
  }

  .hero-frame-small {
    right: 14px;
    top: 128px;
    width: 155px;
    height: 145px;
    transform: rotate(5deg);
  }

  .hero-frame-product {
    right: 28px;
    bottom: 26px;
    width: 120px;
    height: 136px;
  }

  .hero-ticket {
    bottom: 38px;
    left: 24px;
    transform: rotate(-2deg);
  }

  .hero-gift-motion {
    opacity: 0.72;
    inset: var(--header-height) 0 0;
  }

  .gift-float-card {
    right: 14px;
    top: 132px;
    transform: rotate(9deg);
  }

  .gift-float-box {
    left: 14px;
    top: 126px;
  }

  .gift-float-note {
    left: 16px;
    top: auto;
    bottom: 92px;
  }

  .gift-float-mini {
    right: 18px;
    top: auto;
    bottom: 96px;
  }

  .gift-float span {
    bottom: -24px;
    padding: 3px 6px;
    font-size: 10px;
  }
}

/* Toffee Jar texture + Ban.do poster text + TITLI butterfly cursor layer. */
:root {
  --retro-paper: #f6d88b;
  --retro-cream: #fff2c4;
  --retro-red: #e31945;
  --retro-blue: #1538a8;
  --retro-green: #0b8b63;
  --retro-pink: #ff7eb6;
  --retro-yellow: #ffd51d;
}

body {
  background:
    radial-gradient(circle at 18px 18px, rgba(18, 16, 22, 0.18) 1.5px, transparent 2px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 11px 11px,
    linear-gradient(135deg, #f7d98a, #ffd3a5 48%, #ffd1e4);
}

.site-header,
.site-header.scrolled {
  background:
    linear-gradient(90deg, rgba(255, 242, 196, 0.96), rgba(255, 214, 230, 0.94));
}

.hero {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(18, 16, 22, 0.1) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(18, 16, 22, 0.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(115deg, #ffd51d 0 30%, #ff7eb6 30% 57%, #00c6d7 57% 78%, #b9ff4b 78%);
}

.hero::before {
  z-index: -2;
  border-style: dashed;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 242, 196, 0.9), transparent 18%),
    radial-gradient(circle at 80% 28%, rgba(255, 242, 196, 0.72), transparent 20%),
    repeating-linear-gradient(-8deg, rgba(18, 16, 22, 0.1) 0 2px, transparent 2px 12px);
}

.hero-copy {
  padding: clamp(18px, 4vw, 44px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(-16px, -2vw, -8px) clamp(-18px, -3vw, -10px);
  border: 5px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 242, 196, 0.92), rgba(255, 242, 196, 0.72)),
    url("/media/assets/product-cards-preview.webp") center / cover;
  box-shadow: 14px 14px 0 var(--retro-blue), 24px 24px 0 var(--ink);
  transform: rotate(-1.2deg);
}

.hero h1 {
  color: var(--retro-red);
  font-size: clamp(94px, 18vw, 230px);
  text-shadow:
    5px 5px 0 var(--retro-cream),
    10px 10px 0 var(--retro-blue),
    15px 15px 0 var(--ink);
}

.brand-tagline {
  color: var(--ink);
  background: var(--retro-cream);
  box-shadow: 7px 7px 0 var(--retro-red), 12px 12px 0 var(--ink);
}

.hero-text {
  max-width: 650px;
  background: rgba(255, 242, 196, 0.9);
  box-shadow: 8px 8px 0 var(--retro-green), 13px 13px 0 var(--ink);
}

.hero-people-card {
  box-shadow: 12px 12px 0 var(--retro-red), 20px 20px 0 var(--ink);
}

.hero-frame-small {
  box-shadow: 10px 10px 0 var(--retro-yellow), 17px 17px 0 var(--ink);
}

.hero-frame-product {
  box-shadow: 8px 8px 0 var(--retro-blue), 14px 14px 0 var(--ink);
}

.memory-marquee {
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
  color: var(--retro-cream);
}

.memory-marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  animation: titli-marquee 24s linear infinite;
}

.memory-marquee span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.memory-marquee span::after {
  content: "◆";
  color: var(--retro-yellow);
}

@keyframes titli-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.poster-wall article,
.occasion-card,
.planner-card,
.product-card,
.zone-grid article,
.service-item {
  background-image:
    radial-gradient(circle at 16px 16px, rgba(18, 16, 22, 0.12) 1.2px, transparent 1.8px);
  background-size: 26px 26px;
}

/* Zesty-retro refinement: lighter labels, softer card text, still gift-shop loud. */
.occasion-card,
.planner-card {
  border-width: 2px;
  box-shadow: 6px 6px 0 rgba(20, 16, 13, 0.36), 0 14px 28px rgba(20, 16, 13, 0.1);
}

.occasion-card::after {
  width: 26px;
  height: 26px;
  opacity: 0.76;
}

.occasion-card span,
.planner-card span,
.zone-grid span {
  padding: 6px 9px;
  box-shadow: 2px 2px 0 rgba(20, 16, 13, 0.72);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.occasion-card strong,
.planner-card strong {
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.occasion-card strong {
  max-width: 88%;
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 650;
  line-height: 1.14;
}

.planner-card {
  min-height: 176px;
  align-content: start;
  gap: 16px;
}

.planner-card strong {
  font-size: clamp(18px, 1.75vw, 21px);
  font-weight: 500;
  line-height: 1.34;
}

.occasion-card small {
  font-size: 14px;
  font-weight: 450;
  line-height: 1.5;
}

.mood-strip span,
.hero-stickers span {
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(20, 16, 13, 0.72);
}

.occasion-card:hover,
.occasion-card:focus-visible {
  box-shadow: 9px 9px 0 rgba(112, 37, 50, 0.82), 0 16px 34px rgba(20, 16, 13, 0.12);
}

.planner-card:nth-child(1),
.planner-card:nth-child(2),
.planner-card:nth-child(3),
.planner-card:nth-child(4) {
  background-image:
    linear-gradient(135deg, rgba(255, 250, 243, 0.4), rgba(255, 250, 243, 0)),
    radial-gradient(circle at 16px 16px, rgba(18, 16, 22, 0.1) 1.2px, transparent 1.8px);
}

.butterfly-cursor,
.butterfly-dust {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
}

.butterfly-cursor {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  filter:
    drop-shadow(0 0 3px rgba(255, 213, 29, 0.42))
    drop-shadow(0 0 6px rgba(255, 126, 182, 0.32));
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 160ms ease;
}

.butterfly-cursor.is-hidden {
  opacity: 0;
}

.butterfly-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.butterfly-dust {
  width: var(--dust-size, 17px);
  height: calc(var(--dust-size, 17px) * 0.75);
  background: linear-gradient(135deg, #fff5f8 0%, #ffc2d1 24%, #ff4f83 66%, #c9184a 100%);
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 5px rgba(255, 79, 131, 0.42))
    drop-shadow(0 0 8px rgba(201, 24, 74, 0.28));
  -webkit-mask: url("/media/assets/titli-mark-approved.webp") center / contain no-repeat;
  mask: url("/media/assets/titli-mark-approved.webp") center / contain no-repeat;
  animation: butterfly-dust 2600ms linear forwards;
}

.butterfly-dust.dismiss-up {
  animation: butterfly-dust-dismiss-up 720ms linear forwards;
}

@keyframes butterfly-dust {
  0% {
    opacity: 0.44;
    transform: translate3d(var(--dust-x, 0), var(--dust-y, 0), 0) rotate(var(--dust-rotate, 0deg)) scale(0.82);
  }

  100% {
    opacity: 0;
    transform: translate3d(
      calc(var(--dust-x, 0) + var(--dust-drift-x, 0px)),
      calc(var(--dust-y, 0) + var(--dust-drift-y, -38px)),
      0
    ) rotate(calc(var(--dust-rotate, 0deg) + 44deg)) scale(0.28);
  }
}

@keyframes butterfly-dust-dismiss-up {
  from {
    opacity: var(--dismiss-opacity, 0.5);
    transform: var(--dismiss-transform, translate3d(var(--dust-x, 0), var(--dust-y, 0), 0));
  }

  to {
    opacity: 0;
    transform: var(--dismiss-transform, translate3d(var(--dust-x, 0), var(--dust-y, 0), 0)) translate3d(0, -28px, 0) scale(0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .memory-marquee div {
    animation: none;
  }

  .butterfly-cursor,
  .butterfly-dust {
    display: none;
  }

  .butterfly-cursor-ready,
  .butterfly-cursor-ready * {
    cursor: auto;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy {
    width: calc(100vw - 96px);
    max-width: calc(100vw - 96px);
  }

  .hero-copy::after {
    inset: -8px;
    transform: rotate(0deg);
    box-shadow: 7px 7px 0 var(--retro-blue), 12px 12px 0 var(--ink);
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 98px);
  }

  .brand-tagline,
  .hero-text {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .brand-tagline {
    padding: 9px 10px;
    font-size: clamp(20px, 6.4vw, 26px);
    line-height: 1.08;
  }

  .hero-text {
    padding: 14px 12px;
    font-size: 15px;
    line-height: 1.45;
  }

  .memory-marquee div {
    animation-duration: 18s;
  }
}

/* Ban.do storefront confidence + The Toffee Jar warmth reset. */
:root {
  --promo-height: 38px;
  --bando-ink: #18110f;
  --bando-cream: #fff3cf;
  --bando-paper: #fff8e6;
  --bando-pink: #f73569;
  --bando-red: #e83a30;
  --bando-blue: #2166f2;
  --bando-sky: #8edcff;
  --bando-yellow: #ffd84d;
  --bando-green: #bde86d;
  --bando-lilac: #d9c4ff;
  --toffee-brown: #7b4b2f;
  --toffee-line: rgba(24, 17, 15, 0.18);
  --soft-shadow: 0 16px 38px rgba(24, 17, 15, 0.1);
  --hard-shadow: 8px 8px 0 var(--bando-ink);
}

html {
  scroll-padding-top: calc(var(--promo-height) + var(--header-height) + 18px);
}

body {
  color: var(--bando-ink);
  background:
    radial-gradient(circle at 18px 18px, rgba(123, 75, 47, 0.08) 1.2px, transparent 1.8px) 0 0 / 30px 30px,
    linear-gradient(180deg, var(--bando-paper), #fff0db 48%, #fff7ec);
}

html,
body {
  overflow-x: hidden;
}

.top-promo {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--promo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 72px);
  overflow: hidden;
  padding: 8px 18px;
  border-bottom: 2px solid var(--bando-ink);
  color: var(--bando-paper);
  background: var(--bando-pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.top-promo span {
  white-space: nowrap;
}

.site-header,
.site-header.scrolled {
  top: var(--promo-height);
  z-index: 72;
  min-height: var(--header-height);
  color: var(--bando-ink);
  background: rgba(255, 248, 230, 0.97);
  border-bottom: 2px solid var(--bando-ink);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.nav-links {
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bando-ink);
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  width: 0;
  height: 0;
  border-inline: 5px solid transparent;
  border-top: 6px solid currentColor;
  content: "";
  transform: translateY(1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 999;
  width: min(360px, 88vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 3px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 9px 9px 0 var(--bando-ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: #ffe1ec;
  color: var(--bando-ink);
  text-align: center;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.05;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.18);
}

.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown[open] summary {
  color: var(--bando-ink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--bando-ink);
  background: var(--bando-yellow);
  outline: 3px solid var(--bando-pink);
  outline-offset: 2px;
}

.nav-dropdown-menu a:nth-child(2n) {
  background: #dff6ff;
}

.nav-dropdown-menu a:nth-child(3n) {
  background: var(--bando-yellow);
}

.nav-dropdown-menu a:last-child {
  grid-column: 1 / -1;
  background: var(--bando-pink);
  color: var(--bando-paper);
}

.header-tools {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.utility-menu {
  position: relative;
  z-index: 96;
}

.utility-menu > summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: #ffe1ec;
  box-shadow: 4px 4px 0 var(--bando-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
  transition:
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.utility-menu > summary::-webkit-details-marker {
  display: none;
}

.utility-menu > summary:hover,
.utility-menu > summary:focus-visible,
.utility-menu[open] > summary {
  background: var(--bando-yellow);
  box-shadow: 6px 6px 0 var(--bando-ink);
  outline: none;
  transform: translate(-1px, -1px);
}

.menu-lines {
  width: 17px;
  height: 12px;
  display: inline-grid;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
}

.utility-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - var(--promo-height) - var(--header-height) - 36px));
  display: none;
  gap: 10px;
  overflow-y: auto;
  padding: 14px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--bando-paper);
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.22);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.utility-menu[open] > .utility-menu-panel {
  display: grid;
}

.utility-menu-section {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.14);
}

.utility-menu-section summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  cursor: pointer;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}

.utility-menu-section summary::-webkit-details-marker {
  display: none;
}

.utility-menu-section summary::after {
  content: "+";
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.utility-menu-section[open] summary {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.utility-menu-section-feature summary {
  background: #bdf063;
}

.utility-menu-section[open] summary::after {
  content: "-";
}

.utility-submenu {
  display: none;
  gap: 8px;
  padding: 10px;
  border-top: 2px solid var(--bando-ink);
}

.utility-menu-section[open] > .utility-submenu {
  display: grid;
}

.utility-menu-panel a,
.utility-menu-panel button {
  min-height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border: 1.5px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: #fff8e6;
  box-shadow: 2px 2px 0 rgba(24, 17, 15, 0.16);
  cursor: pointer;
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-align: left;
  text-transform: uppercase;
  transition:
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.utility-menu-panel a::after,
.utility-menu-panel button::after {
  content: ">";
  font-size: 14px;
}

.utility-menu-panel a:nth-child(2n),
.utility-menu-panel button:nth-child(2n) {
  background: #dff6ff;
}

.utility-menu-panel a:nth-child(3n),
.utility-menu-panel button:nth-child(3n) {
  background: var(--bando-yellow);
}

.utility-menu-panel .utility-featured-link {
  color: var(--bando-paper);
  background: var(--bando-pink);
  box-shadow: 4px 4px 0 var(--bando-ink);
}

.utility-menu-panel .utility-featured-link::after {
  content: "!";
}

.utility-menu-support [data-rewards-logout] {
  grid-column: 1 / -1;
}

.utility-menu-panel a:hover,
.utility-menu-panel a:focus-visible,
.utility-menu-panel button:hover,
.utility-menu-panel button:focus-visible {
  background: var(--bando-pink);
  color: var(--bando-paper);
  box-shadow: 5px 5px 0 var(--bando-ink);
  outline: none;
  transform: translate(-2px, -2px);
}

.promo-billboards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--bando-ink);
  border-bottom: 2px solid var(--bando-ink);
}

.promo-billboard {
  min-height: clamp(220px, 24vw, 340px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: clamp(28px, 5vw, 70px);
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.06) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.06) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--bando-yellow);
  text-decoration: none;
}

.promo-billboard + .promo-billboard {
  border-left: 2px solid var(--bando-ink);
}

.promo-billboard span {
  padding: 8px 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 248, 230, 0.9);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-billboard .rewards-label {
  font-weight: 600;
}

.promo-billboard strong {
  max-width: 11ch;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 var(--bando-paper),
    7px 7px 0 rgba(24, 17, 15, 0.28);
}

.promo-billboard small {
  max-width: 52ch;
  color: var(--toffee-brown);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.35;
}

.sale-billboard {
  color: var(--bando-paper);
  background:
    linear-gradient(90deg, rgba(255, 248, 230, 0.15) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(255, 248, 230, 0.15) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--bando-pink);
}

.sale-billboard span {
  background: var(--bando-yellow);
  color: var(--bando-ink);
}

.sale-billboard strong {
  max-width: 12ch;
  text-shadow:
    4px 4px 0 var(--bando-ink),
    8px 8px 0 rgba(255, 210, 67, 0.62);
}

.sale-billboard small {
  color: var(--bando-paper);
}

.rewards-billboard {
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 24px 24px,
    #dff6ff;
}

.rewards-billboard strong {
  max-width: 14ch;
}

.cart-button {
  background: var(--bando-yellow);
  border: 2px solid var(--bando-ink);
  box-shadow: 4px 4px 0 var(--bando-ink);
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  place-items: center;
  align-items: center;
  min-height: 850px;
  padding: calc(var(--promo-height) + var(--header-height) + 54px) clamp(20px, 5vw, 72px) 74px;
  overflow: hidden;
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, #fff8dd 0 48%, #ffe0ea 48% 72%, #dff6ff 72%);
}

.hero::before,
.hero::after,
.hero-copy::before,
.hero-copy::after,
.hero-people-card::before {
  display: none;
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(640px, 100%);
  margin: 0;
  padding: 0;
  display: grid;
  justify-items: start;
  text-align: left;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 var(--bando-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--bando-pink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(92px, 12vw, 178px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-shadow: 5px 5px 0 var(--bando-yellow), 9px 9px 0 var(--bando-ink);
}

.brand-tagline {
  max-width: 620px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--bando-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  text-align: left;
  transform: none;
}

.brand-short-line {
  width: fit-content;
  max-width: 100%;
  margin: 14px 0 0;
  padding: 7px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--toffee-brown);
  background: rgba(255, 248, 230, 0.9);
  box-shadow: 2px 2px 0 var(--bando-yellow);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-text {
  max-width: 560px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--toffee-brown);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  transform: none;
}

.hero-stickers,
.hero-actions {
  justify-content: flex-start;
}

.hero-stickers {
  gap: 10px;
  margin-top: 26px;
}

.hero-stickers a,
.mood-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 4px 4px 0 var(--bando-ink);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transform: none;
  transition:
    translate 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.hero-stickers a:hover,
.hero-stickers a:focus-visible {
  translate: 0 -3px;
  box-shadow: 5px 6px 0 var(--bando-ink);
  outline: none;
}

.hero-stickers a:nth-child(1) {
  background: var(--bando-yellow);
}

.hero-stickers a:nth-child(2) {
  background: #ffd7e6;
}

.hero-stickers a:nth-child(3) {
  background: var(--bando-sky);
}

.hero-stickers a:nth-child(4) {
  background: var(--bando-green);
}

.button {
  min-height: 46px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--bando-ink);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.button.secondary {
  color: var(--bando-ink);
  background: var(--bando-yellow);
}

.hero-visual {
  position: relative;
  inset: auto;
  z-index: 3;
  width: min(620px, 100%);
  min-height: 570px;
  pointer-events: none;
}

.hero-guide-visual {
  min-height: auto;
  pointer-events: auto;
}

.hero-guide-panel {
  width: min(620px, 100%);
  pointer-events: auto;
}

.hero-guide-panel .section-kicker {
  display: inline-flex;
  margin-bottom: 26px;
}

.hero-guide-panel h2 {
  max-width: 560px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--bando-pink);
  background: transparent;
  box-shadow: none;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(42px, 4.5vw, 74px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    3px 3px 0 var(--bando-yellow),
    6px 6px 0 var(--bando-ink);
  text-transform: uppercase;
}

.hero-guide-panel h2 span,
.hero-guide-panel h2 small {
  display: block;
}

.hero-guide-panel h2 small {
  width: fit-content;
  margin-top: 12px;
  padding: 7px 13px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 var(--bando-ink);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: none;
  text-transform: uppercase;
}

.hero-guide-panel .guide-frame {
  min-height: clamp(410px, 44vw, 520px);
  box-shadow: 10px 10px 0 var(--bando-ink);
}

.hero-guide-panel .guide-step {
  top: 112px;
  min-height: 240px;
}

.hero-frame {
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-paper);
  box-shadow: var(--hard-shadow);
}

.hero-people-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(500px, 78vw);
  height: 560px;
  padding: 12px;
  transform: translate(-50%, -50%) rotate(2deg);
}

.hero-people-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  filter: saturate(1.05) contrast(1.02);
}

.hero-frame-small {
  left: 0;
  right: auto;
  top: 42px;
  bottom: auto;
  width: 210px;
  height: 238px;
  padding: 8px;
  background: var(--bando-yellow);
  transform: rotate(-7deg);
}

.hero-frame-product {
  right: 0;
  bottom: 46px;
  width: 188px;
  height: 220px;
  padding: 8px;
  background: var(--bando-sky);
  transform: rotate(7deg);
}

.hero-ticket {
  left: auto;
  right: 34px;
  bottom: 288px;
  display: block;
  min-width: 170px;
  padding: 14px 16px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-green);
  box-shadow: 5px 5px 0 var(--bando-ink);
  text-decoration: none;
  transform: rotate(-4deg);
  pointer-events: auto;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-ticket:hover,
.hero-ticket:focus-visible {
  box-shadow: 7px 8px 0 var(--bando-ink);
  outline: none;
  transform: rotate(-2deg) translateY(-4px);
}

.hero-ticket span {
  display: block;
  color: var(--toffee-brown);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-ticket strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.box-guide-section {
  min-height: calc(100vh - var(--promo-height) - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  border-top: 2px solid var(--bando-ink);
  border-bottom: 2px solid var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.055) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(20, 16, 13, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    #fff2c4;
  overflow: hidden;
}

.box-guide-copy {
  max-width: 520px;
}

.box-guide-copy h2 {
  margin: 14px 0 0;
  color: var(--bando-pink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.88;
  text-shadow: 4px 4px 0 var(--bando-yellow), 7px 7px 0 var(--bando-ink);
  text-transform: uppercase;
}

.box-guide-copy p {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--toffee-brown);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.box-guide-copy .button {
  margin-top: 28px;
}

.guide-animation {
  min-width: 0;
  margin-top: 8px;
}

.guide-frame {
  position: relative;
  min-height: clamp(430px, 52vw, 560px);
  overflow: hidden;
  pointer-events: auto;
  border: 2px solid var(--bando-ink);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 47, 103, 0.2), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(142, 220, 255, 0.32), transparent 26%),
    linear-gradient(135deg, #ffe1ec 0 34%, #fff8e6 34% 68%, #dff6ff 68%);
  box-shadow: 12px 12px 0 var(--bando-ink);
}

.guide-frame::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px dashed rgba(20, 16, 13, 0.28);
  border-radius: 12px;
}

.guide-badge {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 3;
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 var(--bando-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-progress {
  position: absolute;
  right: 28px;
  top: 36px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.guide-progress i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-paper);
  animation: guide-dot 15s infinite;
}

.guide-progress i:nth-child(2) { animation-delay: 2.5s; }
.guide-progress i:nth-child(3) { animation-delay: 5s; }
.guide-progress i:nth-child(4) { animation-delay: 7.5s; }
.guide-progress i:nth-child(5) { animation-delay: 10s; }
.guide-progress i:nth-child(6) { animation-delay: 12.5s; }

.guide-step {
  position: absolute;
  left: clamp(28px, 7vw, 76px);
  right: clamp(28px, 7vw, 76px);
  top: 112px;
  z-index: 2;
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--bando-ink);
  border-radius: 12px;
  color: var(--bando-ink);
  background: rgba(255, 248, 230, 0.94);
  box-shadow: 8px 8px 0 var(--bando-ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.52fr);
  align-content: start;
  align-items: start;
  column-gap: clamp(18px, 2.6vw, 32px);
  row-gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) rotate(3deg) scale(0.96);
  visibility: hidden;
  animation: guide-card 15s infinite;
}

.guide-step > span,
.guide-final-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.guide-step > span {
  grid-column: 1;
  justify-self: start;
}

.guide-visual-strip {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  display: grid;
  width: 100%;
  max-width: 320px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.guide-visual-strip a {
  border: 2px solid var(--bando-ink);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.82);
  animation: guide-sticker-bob 3.2s ease-in-out infinite;
}

.guide-visual-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 36px;
  padding: 7px 8px;
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  white-space: normal;
}

.guide-visual-strip a:hover,
.guide-visual-strip a:focus-visible,
.guide-badge:hover,
.guide-badge:focus-visible,
.guide-kicker-link:hover,
.guide-kicker-link:focus-visible,
.guide-final-link:hover,
.guide-final-link:focus-visible {
  outline: none;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--bando-ink);
}

.guide-title-link:hover,
.guide-title-link:focus-visible {
  outline: none;
  opacity: 0.92;
}

.guide-product-strip a {
  min-height: 72px;
  flex-direction: column;
  gap: 4px;
  padding: 6px 5px;
  border-radius: 12px;
  background: var(--bando-paper);
}

.guide-product-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 38px;
  color: var(--bando-ink);
  flex: 0 0 auto;
}

.guide-product-icon::before,
.guide-product-icon::after {
  position: absolute;
  box-sizing: border-box;
}

.guide-product-icon-box::before {
  content: "";
  left: 5px;
  right: 5px;
  bottom: 2px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: var(--bando-yellow);
}

.guide-product-icon-box::after {
  content: "";
  left: 2px;
  right: 2px;
  top: 7px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: var(--bando-pink);
  box-shadow: 18px 0 0 -7px var(--bando-ink);
}

.guide-product-icon-bow::before {
  content: "\22C8";
  inset: -5px 0 0;
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  color: var(--bando-pink);
  -webkit-text-stroke: 1.5px var(--bando-ink);
}

.guide-product-icon-bow::after {
  content: "";
  width: 8px;
  height: 8px;
  left: 17px;
  top: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--bando-yellow);
}

.guide-product-icon-candle::before {
  content: "";
  width: 18px;
  height: 26px;
  left: 12px;
  bottom: 1px;
  border: 2px solid currentColor;
  border-radius: 3px 3px 6px 6px;
  background: var(--bando-yellow);
  box-shadow: inset 5px 0 0 rgba(255, 255, 255, 0.48);
}

.guide-product-icon-candle::after {
  content: "";
  width: 10px;
  height: 13px;
  left: 16px;
  top: -1px;
  border: 2px solid currentColor;
  border-radius: 70% 25% 70% 35%;
  background: var(--bando-pink);
  transform: rotate(42deg);
}

.guide-product-icon-jewel::before {
  content: "\25C7";
  inset: -7px 0 0;
  font-family: Georgia, serif;
  font-size: 51px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  color: var(--bando-yellow);
  -webkit-text-stroke: 1.5px var(--bando-ink);
}

.guide-product-icon-jewel::after {
  content: "\2726";
  right: -1px;
  top: -5px;
  font-size: 17px;
  color: var(--bando-pink);
  -webkit-text-stroke: 0.6px var(--bando-ink);
}

.guide-product-icon-care::before {
  content: "\2661";
  inset: -6px 0 0;
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  color: var(--bando-pink);
  -webkit-text-stroke: 1.2px var(--bando-ink);
}

.guide-product-icon-care::after {
  content: "+";
  right: -1px;
  top: -3px;
  width: 15px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  line-height: 11px;
  text-align: center;
  background: var(--bando-yellow);
}

.guide-product-icon-charm::before {
  content: "";
  width: 21px;
  height: 21px;
  left: 11px;
  bottom: 1px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 46% 54%;
  background: var(--bando-pink);
  box-shadow: inset 5px 0 0 rgba(255, 255, 255, 0.45);
}

.guide-product-icon-charm::after {
  content: "";
  width: 10px;
  height: 10px;
  left: 16px;
  top: 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 9px 0 -3px var(--bando-ink);
}

.guide-product-strip b {
  font-size: 9px;
  line-height: 1;
}

.guide-visual-strip :nth-child(2) {
  animation-delay: 180ms;
}

.guide-visual-strip :nth-child(3) {
  animation-delay: 360ms;
}

.guide-visual-strip :nth-child(4) {
  animation-delay: 540ms;
}

.guide-visual-strip :nth-child(5) {
  animation-delay: 720ms;
}

.guide-visual-strip :nth-child(6) {
  animation-delay: 900ms;
}

.guide-people-strip a:nth-child(1)::before { content: "B"; }
.guide-people-strip a:nth-child(2)::before { content: "P"; }
.guide-people-strip a:nth-child(3)::before { content: "F"; }
.guide-people-strip a:nth-child(4)::before { content: "M"; }
.guide-people-strip a:nth-child(5)::before { content: "D"; }
.guide-people-strip a:nth-child(6)::before { content: "K"; }

.guide-people-strip a::before {
  flex: 0 0 auto;
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  place-items: center;
  border: 2px solid var(--bando-ink);
  border-radius: 50%;
  color: var(--bando-paper);
  background: var(--bando-pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.guide-reason-strip a:nth-child(1),
.guide-mood-strip a:nth-child(1),
.guide-budget-strip a:nth-child(2) {
  background: var(--bando-yellow);
}

.guide-reason-strip a:nth-child(2),
.guide-mood-strip a:nth-child(3),
.guide-budget-strip a:nth-child(3) {
  background: #ffe1ec;
}

.guide-reason-strip a:nth-child(3),
.guide-mood-strip a:nth-child(4),
.guide-budget-strip a:nth-child(4) {
  background: #dff6ff;
}

.guide-reason-strip a:nth-child(5),
.guide-mood-strip a:nth-child(2),
.guide-budget-strip a:nth-child(1) {
  background: #eeffd0;
}

.guide-reason-strip a:nth-child(6),
.guide-mood-strip a:nth-child(5),
.guide-budget-strip a:nth-child(5) {
  background: #f8c8ff;
}

.guide-mood-strip a:nth-child(6),
.guide-budget-strip a:nth-child(6) {
  background: #ffd2a6;
}

.guide-budget-strip a {
  border-radius: 8px;
  background: var(--bando-paper);
  font-size: 10px;
}

.hero-guide-panel .guide-step {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
  padding: clamp(22px, 3vw, 32px);
}

.hero-guide-panel .guide-visual-strip {
  position: static;
  grid-column: 1;
  grid-row: auto;
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.hero-guide-panel .guide-people-strip,
.hero-guide-panel .guide-mood-strip,
.hero-guide-panel .guide-budget-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-guide-panel .guide-visual-strip a {
  animation: none;
}

.guide-step strong {
  display: block;
  grid-column: 1;
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.98;
}

.guide-step small {
  display: block;
  grid-column: 1;
  max-width: 30ch;
  margin-top: 0;
  color: var(--toffee-brown);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}

.guide-step-two {
  background: #ffe1ec;
  animation-delay: 2.5s;
}

.guide-step-two strong {
  font-size: clamp(30px, 4vw, 50px);
}

.guide-step-three {
  background: #dff6ff;
  animation-delay: 5s;
}

.guide-step-four {
  background: #eeffd0;
  animation-delay: 7.5s;
}

.guide-step-five {
  background: #fff0b8;
  animation-delay: 10s;
}

.guide-step-final {
  background: var(--bando-pink);
  color: var(--bando-paper);
  animation-delay: 12.5s;
  grid-template-columns: minmax(0, 1fr);
}

.guide-step-final .guide-final-link,
.guide-step-final small {
  color: var(--bando-ink);
}

.guide-step-final strong {
  grid-column: 1;
  max-width: none;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.92;
  text-shadow: 3px 3px 0 var(--bando-ink);
}

.guide-step-final small {
  max-width: none;
  margin-top: 4px;
}

@keyframes guide-card {
  0%,
  100% {
    opacity: 0;
    pointer-events: none;
    transform: translateX(34px) rotate(3deg) scale(0.96);
    visibility: hidden;
  }

  4%,
  15% {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) rotate(-1deg) scale(1);
    visibility: visible;
  }

  20% {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-34px) rotate(-3deg) scale(0.98);
    visibility: hidden;
  }
}

@keyframes guide-dot {
  0%,
  18%,
  100% {
    background: var(--bando-paper);
    transform: scale(1);
  }

  4%,
  15% {
    background: var(--bando-pink);
    transform: scale(1.24);
  }
}

@keyframes guide-sticker-bob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -2px;
  }
}

.hero-gift-motion {
  inset: calc(var(--promo-height) + var(--header-height)) 0 0;
  z-index: 58;
}

.gift-float {
  scale: 0.86;
}

.gift-float span {
  background: var(--bando-paper);
}

.announcement {
  border-top: 2px solid var(--bando-ink);
  border-bottom: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background: var(--bando-pink);
}

.announcement span {
  padding: 18px 22px;
  border-right: 2px solid var(--bando-ink);
  color: var(--bando-paper);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.memory-marquee {
  border-top: 0;
  border-bottom: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background: var(--bando-yellow);
}

.memory-marquee div {
  padding: 11px 0;
}

.memory-marquee span {
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 900;
}

.memory-marquee span::after {
  content: "/";
  color: var(--bando-pink);
}

.quirk-ribbon {
  padding: 26px clamp(20px, 5vw, 72px);
  border-bottom: 0;
  background: transparent;
}

.quirk-ribbon span {
  min-width: auto;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 4px 4px 0 rgba(24, 17, 15, 0.22);
  font-size: 14px;
  font-weight: 900;
  transform: none;
}

.poster-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: transparent;
}

.poster-wall article,
.poster-wall article:nth-child(2),
.poster-wall article:nth-child(3),
.poster-wall article:nth-child(4) {
  min-height: 188px;
  display: grid;
  align-content: space-between;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: var(--soft-shadow);
  transform: none;
}

.poster-wall article:nth-child(2) {
  background: #ffe1ec;
}

.poster-wall article:nth-child(3) {
  background: #dff6ff;
}

.poster-wall article:nth-child(4) {
  background: #eeffd0;
}

.poster-wall span,
.occasion-card span,
.planner-card span,
.zone-grid span {
  border: 0;
  border-radius: 999px;
  color: var(--toffee-brown);
  background: rgba(255, 248, 230, 0.8);
  box-shadow: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.poster-wall strong {
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.poster-wall small {
  color: var(--toffee-brown);
  font-weight: 500;
}

.section {
  max-width: 1220px;
  margin-inline: auto;
  padding: 88px clamp(20px, 4vw, 52px);
}

.section-header {
  align-items: end;
  gap: 28px;
}

h2 {
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: none;
}

.intro-section .section-kicker,
.occasion-section .section-kicker,
.planner-section .section-kicker,
.best-sellers-section .section-kicker {
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--toffee-brown);
  background: rgba(255, 248, 230, 0.94);
  box-shadow: 2px 2px 0 var(--bando-yellow);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.intro-section h2,
.occasion-section h2,
.planner-section h2,
.best-sellers-section h2 {
  max-width: 760px;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.5vw, 88px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: none;
}

.intro-section {
  position: relative;
  margin-top: 28px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 24px 24px,
    #fff1a8;
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.12);
}

.intro-section .section-kicker {
  background: #ffe1ec;
}

.section-lede,
.intro-copy {
  color: #5f4238;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.intro-copy {
  padding-left: 24px;
  border-left: 2px solid var(--toffee-line);
}

.occasion-grid {
  gap: 18px;
}

.occasion-card,
.planner-card,
.product-card,
.zone-grid article,
.service-item {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  box-shadow: none;
  transform: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.occasion-card,
.occasion-card:nth-child(4n + 1),
.occasion-card:nth-child(4n + 2),
.occasion-card:nth-child(4n + 3),
.occasion-card:nth-child(4n) {
  min-height: 176px;
  padding: 22px;
  color: var(--bando-ink);
  background: var(--bando-paper);
}

.occasion-card:nth-child(4n + 2) {
  background: #ffe1ec;
}

.occasion-card:nth-child(4n + 3) {
  background: #dff6ff;
}

.occasion-card:nth-child(4n) {
  background: #eeffd0;
}

.occasion-card.featured,
.occasion-card.active,
.occasion-card.featured:hover,
.occasion-card.featured:focus-visible,
.occasion-card.active:hover,
.occasion-card.active:focus-visible {
  color: var(--bando-ink);
  background: var(--bando-yellow);
}

.occasion-card::before,
.occasion-card::after {
  display: none;
  content: none;
}

.occasion-card:hover,
.occasion-card:focus-visible,
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 13px 0 rgba(24, 17, 15, 0.08);
}

.occasion-card strong,
.planner-card strong,
.zone-grid strong,
.service-item h3,
.product-body h3 {
  max-width: 100%;
  color: #3f2b25;
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

.occasion-card strong {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.08;
}

.occasion-card small,
.planner-card strong,
.zone-grid p,
.service-item p,
.product-description,
.shop-status {
  color: var(--toffee-brown);
  font-weight: 500;
}

.planner-card,
.planner-card:nth-child(1),
.planner-card:nth-child(2),
.planner-card:nth-child(3),
.planner-card:nth-child(4),
.planner-card:nth-child(5) {
  min-height: 190px;
  padding: 22px;
  background-image: none;
}

.planner-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.planner-card:nth-child(1) {
  background: #ffe1ec;
}

.planner-card:nth-child(2) {
  background: var(--bando-yellow);
}

.planner-card:nth-child(3) {
  background: #dff6ff;
}

.planner-card:nth-child(4) {
  background: #eeffd0;
}

.planner-card:nth-child(5) {
  background: #f4dcff;
}

.planner-card strong {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.28;
}

.best-sellers-section {
  overflow: hidden;
}

.best-seller-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(286px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bando-pink) rgba(24, 17, 15, 0.12);
  scrollbar-width: thin;
}

.featured-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 20px;
}

.featured-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.featured-shortcuts a:nth-child(4) {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.opening-product-rail {
  max-width: 1220px;
  margin: 18px auto 26px;
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-top: 2px solid var(--bando-ink);
  border-bottom: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 22px 22px,
    #fff8e6;
}

.opening-rail-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 230px;
  padding: 18px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-yellow);
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.12);
}

.opening-rail-copy h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 0.94;
  letter-spacing: 0;
}

.opening-rail-copy a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-paper);
  background: var(--bando-pink);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.opening-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 250px);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 4px 16px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bando-pink) rgba(24, 17, 15, 0.14);
  scrollbar-width: thin;
}

.opening-product-card {
  min-height: 230px;
  display: grid;
  grid-template-rows: 142px auto auto;
  gap: 9px;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.12);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.opening-product-card:hover,
.opening-product-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(24, 17, 15, 0.2);
}

.opening-product-card img {
  width: 100%;
  height: 142px;
  display: block;
  object-fit: cover;
  border-bottom: 2px solid var(--bando-ink);
  background: #fff3c9;
}

.opening-product-card span {
  justify-self: start;
  margin: 0 12px;
  padding: 5px 9px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: #ffe1ec;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.opening-product-card strong {
  padding: 0 12px 14px;
  color: var(--toffee-brown);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
}

.opening-product-card:nth-child(2) span {
  background: #dff6ff;
}

.opening-product-card:nth-child(3) span {
  background: var(--bando-yellow);
}

.opening-product-card:nth-child(4) span {
  background: #eeffd0;
}

.opening-product-card:nth-child(5) span {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.best-seller-slide {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.12);
  scroll-snap-align: start;
}

.best-seller-slide:nth-child(2) {
  background: #ffe1ec;
}

.best-seller-slide:nth-child(3) {
  background: #dff6ff;
}

.best-seller-slide:nth-child(4) {
  background: #eeffd0;
}

.best-seller-slide:nth-child(5) {
  background: #f4dcff;
}

.best-seller-slide:nth-child(6) {
  background: var(--bando-yellow);
}

.best-seller-slide:nth-child(7),
.best-seller-slide.sale-slide {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.best-seller-slide.sale-slide h3,
.best-seller-slide.sale-slide li,
.best-seller-slide.sale-slide span {
  color: var(--bando-paper);
}

.best-seller-slide.sale-slide span,
.best-seller-slide.sale-slide li {
  background: rgba(20, 16, 13, 0.16);
  border-color: var(--bando-paper);
}

.best-seller-slide.sale-slide li::before {
  border-color: var(--bando-paper);
  background: var(--bando-yellow);
}

.best-seller-slide span {
  align-self: flex-start;
  padding: 7px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: rgba(255, 248, 230, 0.86);
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.best-seller-slide h3 {
  margin: 0;
  color: #3f2b25;
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.best-seller-slide ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.best-seller-slide li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(24, 17, 15, 0.16);
  border-radius: 999px;
  color: var(--toffee-brown);
  background: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  font-weight: 650;
}

.best-seller-slide li::before {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--bando-ink);
  border-radius: 50%;
  background: var(--bando-pink);
  content: "";
  transform: translateY(-50%);
}

.rewards-band {
  max-width: 1220px;
  margin: 6px auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px);
  border-top: 2px solid var(--bando-ink);
  border-bottom: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 24px 24px,
    #eeffd0;
}

.rewards-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.rewards-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
}

.rewards-copy p {
  max-width: 54ch;
  margin: 0;
  color: var(--toffee-brown);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.rewards-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rewards-steps article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 20px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-paper);
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.12);
}

.rewards-steps article:nth-child(2) {
  background: #dff6ff;
}

.rewards-steps article:nth-child(3) {
  background: #ffe1ec;
}

.rewards-steps span {
  justify-self: start;
  padding: 6px 10px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 12px;
  font-weight: 900;
}

.rewards-steps strong {
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.rewards-steps small {
  color: var(--toffee-brown);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.product-card {
  overflow: hidden;
  background: var(--bando-paper);
}

.product-media {
  border-bottom: 2px solid var(--bando-ink);
  background: #fff7df;
}

.product-body {
  gap: 10px;
}

.product-meta {
  color: var(--toffee-brown);
}

.product-tags span {
  color: var(--bando-ink);
  background: #ffe1ec;
  font-weight: 800;
}

.filter-button {
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: none;
}

.filter-button.active {
  color: var(--bando-paper);
  background: var(--bando-pink);
  border-color: var(--bando-ink);
}

.editorial-band {
  max-width: 1220px;
  margin: 32px auto;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
}

.editorial-copy h2,
.contact-section h2 {
  color: var(--bando-ink);
  text-shadow: none;
}

.editorial-copy p:not(.eyebrow) {
  color: rgba(24, 17, 15, 0.78);
}

.text-link {
  color: var(--bando-pink);
}

.contact-section {
  max-width: 1220px;
  margin: 0 auto 72px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background:
    linear-gradient(135deg, rgba(255, 225, 236, 0.86), rgba(255, 248, 230, 0.94)),
    var(--bando-paper);
}

.contact-section .eyebrow {
  color: var(--bando-ink);
}

.contact-form {
  background: var(--bando-paper);
}

.site-footer {
  border-top: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background: var(--bando-paper);
}

.site-footer p,
.footer-links a {
  color: var(--toffee-brown);
}

.cart-drawer {
  max-width: 100vw;
  contain: layout paint;
  overflow: hidden;
}

.cart-panel {
  max-width: min(420px, 100vw);
}

.cart-drawer:not(.open) .cart-panel {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
}

.cart-drawer.open .cart-panel {
  visibility: visible;
  opacity: 1;
}

.memory-marquee,
.quirk-ribbon,
.top-promo {
  max-width: 100vw;
  contain: layout paint;
  overflow-x: hidden;
}

@media (max-width: 1240px) {
  .guide-step {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .guide-visual-strip {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
  }

  .guide-step small {
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }
}

@media (max-width: 980px) {
  .top-promo {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-header,
  .site-header.scrolled {
    grid-template-columns: auto auto;
  }

  .header-tools {
    gap: 8px;
  }

  .utility-menu > summary {
    min-height: 40px;
    padding-inline: 12px;
  }

  .utility-menu-panel {
    width: min(520px, calc(100vw - 24px));
    max-height: calc(100vh - var(--promo-height) - var(--header-height) - 28px);
    padding: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--promo-height) + var(--header-height) + 44px);
  }

  .hero-copy {
    width: min(720px, 100%);
    justify-items: center;
    text-align: center;
  }

  .brand-tagline,
  .brand-short-line,
  .hero-text {
    text-align: center;
  }

  .hero-stickers,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    margin-top: 40px;
  }

  .opening-product-rail {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .opening-rail-copy {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .opening-rail-copy .section-kicker {
    grid-column: 1 / -1;
  }

  .opening-rail-copy h2 {
    max-width: 14ch;
    font-size: clamp(30px, 5.5vw, 46px);
  }

  .promo-billboards {
    grid-template-columns: 1fr;
  }

  .promo-billboard + .promo-billboard {
    border-top: 2px solid var(--bando-ink);
    border-left: 0;
  }

  .rewards-band {
    grid-template-columns: 1fr;
  }

  .rewards-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-guide-visual {
    width: min(640px, 100%);
    margin-top: 12px;
  }

  .hero-guide-panel {
    margin-inline: auto;
    text-align: center;
  }

  .hero-guide-panel .section-kicker {
    margin-inline: auto;
  }

  .hero-guide-panel h2 {
    max-width: min(420px, 100%);
    margin: 0 auto 14px;
    padding: 0;
    font-size: clamp(38px, 8.5vw, 62px);
  }

  .hero-guide-panel h2 small {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(13px, 2.4vw, 18px);
  }

  .hero-guide-panel .guide-frame {
    min-height: 460px;
  }

  .hero-guide-panel .guide-step {
    top: 76px;
    min-height: 300px;
    padding: 22px;
  }

  .hero-guide-panel .guide-visual-strip {
    position: static;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }

  .hero-guide-panel .guide-visual-strip a {
    min-height: 31px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .hero-guide-panel .guide-product-strip a {
    min-height: 66px;
  }

  .hero-guide-panel .guide-people-strip,
  .hero-guide-panel .guide-mood-strip,
  .hero-guide-panel .guide-budget-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-guide-panel .guide-product-icon {
    width: 36px;
    height: 36px;
    transform: scale(0.9);
  }

  .hero-guide-panel .guide-step strong {
    margin-top: 16px;
    font-size: clamp(30px, 8vw, 52px);
  }

  .hero-guide-panel .guide-step small {
    margin-top: 12px;
  }

  .box-guide-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .box-guide-copy {
    max-width: 720px;
    text-align: center;
  }

  .box-guide-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .poster-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --promo-height: 42px;
  }

  .top-promo {
    gap: 22px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .site-header,
  .site-header.scrolled {
    min-height: 66px;
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--promo-height) + 66px + 38px) 18px 48px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(76px, 25vw, 118px);
  }

  .brand-tagline {
    font-size: clamp(30px, 10vw, 44px);
  }

  .brand-short-line {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .opening-product-rail {
    margin: 0 auto 18px;
    padding: 14px 0 16px 14px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .opening-rail-copy {
    margin-right: 14px;
    padding: 14px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .opening-rail-copy h2 {
    max-width: 12ch;
    font-size: clamp(30px, 9vw, 38px);
  }

  .opening-rail-track {
    grid-auto-columns: minmax(176px, 72vw);
    padding-right: 14px;
  }

  .opening-product-card {
    min-height: 214px;
    grid-template-rows: 126px auto auto;
  }

  .opening-product-card img {
    height: 126px;
  }

  .opening-product-card strong {
    font-size: 13px;
  }

  .hero-guide-visual {
    min-height: auto;
  }

  .hero-guide-panel h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-guide-panel h2 small {
    font-size: 13px;
  }

  .hero-guide-panel .guide-frame {
    min-height: 470px;
    box-shadow: 7px 7px 0 var(--bando-ink);
  }

  .hero-guide-panel .guide-step {
    left: 18px;
    right: 18px;
    top: 82px;
    min-height: 320px;
    padding: 22px;
  }

  .hero-people-card {
    width: min(305px, 82vw);
    height: 390px;
  }

  .hero-frame-small {
    left: 0;
    top: 22px;
    width: 126px;
    height: 145px;
  }

  .hero-frame-product {
    right: 0;
    bottom: 22px;
    width: 116px;
    height: 138px;
  }

  .hero-ticket {
    right: 14px;
    bottom: 200px;
    min-width: 134px;
  }

  .box-guide-section {
    padding-inline: 18px;
  }

  .box-guide-copy h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .guide-frame {
    min-height: 520px;
    box-shadow: 7px 7px 0 var(--bando-ink);
  }

.guide-badge {
    left: 18px;
    top: 18px;
    font-size: 10px;
  }

  .guide-progress {
    right: 18px;
    top: 28px;
    gap: 5px;
  }

  .guide-progress i {
    width: 8px;
    height: 8px;
  }

  .guide-step {
    left: 18px;
    right: 18px;
    top: 92px;
    min-height: 310px;
    padding: 22px;
  }

  .guide-step strong {
    font-size: clamp(36px, 13vw, 58px);
  }

  .hero-gift-motion {
    display: none;
  }

  .announcement {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .announcement span {
    border-bottom: 2px solid var(--bando-ink);
  }

  .poster-wall,
  .occasion-grid,
  .planner-grid,
  .product-grid,
  .service-section,
  .zone-grid {
    grid-template-columns: 1fr;
  }

  .best-seller-slider {
    grid-auto-columns: minmax(252px, 86vw);
    gap: 14px;
  }

  .best-seller-slide {
    min-height: 340px;
    padding: 20px;
  }

  .featured-shortcuts {
    justify-content: center;
  }

  .promo-billboard {
    min-height: 280px;
    justify-items: center;
    text-align: center;
  }

  .promo-billboard strong {
    max-width: 12ch;
    font-size: clamp(44px, 15vw, 86px);
  }

  .rewards-billboard strong {
    max-width: 13ch;
  }

  .rewards-band {
    margin-inline: 0;
    padding: 46px 20px;
  }

  .rewards-steps {
    grid-template-columns: 1fr;
  }

  .rewards-steps article {
    min-height: auto;
  }

  .section {
    padding: 66px 20px;
  }

  .section-header {
    align-items: start;
  }

  .intro-copy {
    padding-left: 0;
    border-left: 0;
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }
}

@media (max-width: 520px) {
  .utility-menu-panel {
    right: -56px;
    width: min(356px, calc(100vw - 18px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-frame {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 82px 18px 18px;
  }

  .guide-frame::before {
    display: none;
  }

  .guide-step {
    position: relative;
    inset: auto;
    min-height: auto;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .guide-progress i {
    animation: none;
  }
}

/* Final responsive guardrails for the Ban.do/Toffee Jar direction. */
.top-promo,
.memory-marquee,
.site-footer,
.hero-stickers {
  overflow: hidden;
}

.memory-marquee {
  position: relative;
  min-height: 46px;
}

.memory-marquee div {
  position: absolute;
  inset: 0 auto auto 0;
  width: max-content;
}

.hero-stickers,
.footer-links {
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}

.hero-stickers a,
.footer-links a {
  max-width: 100%;
}

.butterfly-cursor,
.butterfly-dust {
  contain: layout paint size;
}

.hero-people-card img[src$="hero-warm-gift-boxes.jpeg"] {
  object-position: center 72%;
}

@media (max-width: 980px) {
  .top-promo {
    justify-content: center;
    overflow: hidden;
  }

  .top-promo span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 520px) {
  .top-promo span:nth-child(2) {
    display: none;
  }
}

/* Keep quick links tucked into the viewport corners until the user needs them. */
.hero-gift-motion {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: clip;
  pointer-events: none;
}

.hero-gift-motion:has(.gift-float:hover),
.hero-gift-motion:has(.gift-float:focus-visible) {
  z-index: 64;
}

.gift-float {
  position: fixed;
  animation: none;
  opacity: 0.38;
  scale: 0.62;
  filter: drop-shadow(1px 2px 0 rgba(20, 16, 13, 0.12));
  pointer-events: auto;
  transition:
    opacity 160ms ease,
    scale 160ms ease,
    filter 160ms ease;
}

.gift-float:hover,
.gift-float:focus-visible {
  opacity: 1;
  scale: 0.9;
  filter: drop-shadow(6px 7px 0 rgba(20, 16, 13, 0.28));
  outline: none;
}

.gift-float span {
  background: rgba(255, 248, 230, 0.86);
  box-shadow: 1px 2px 0 rgba(20, 16, 13, 0.34);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.gift-float:hover span,
.gift-float:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.gift-float-box {
  left: max(10px, env(safe-area-inset-left));
  top: calc(var(--promo-height) + var(--header-height) + 18px);
}

.gift-float-card {
  right: max(10px, env(safe-area-inset-right));
  top: calc(var(--promo-height) + var(--header-height) + 18px);
}

.gift-float-note {
  left: max(10px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
}

.gift-float-mini {
  right: max(10px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}

@media (min-width: 981px) {
  .gift-float-box,
  .gift-float-card {
    top: calc(var(--promo-height) + var(--header-height) + 28px);
  }

  .gift-float-note,
  .gift-float-mini {
    bottom: 30px;
  }
}

@media (max-width: 680px) {
  .hero-gift-motion {
    display: block;
  }

  .hero-gift-motion .gift-float {
    opacity: 0.32;
    scale: 0.5;
  }

  .hero-gift-motion .gift-float:hover,
  .hero-gift-motion .gift-float:focus-visible {
    scale: 0.72;
  }

  .gift-float-box,
  .gift-float-card {
    top: calc(var(--promo-height) + 66px + 8px);
  }

  .gift-float-note,
  .gift-float-mini {
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .gift-float span {
    bottom: -23px;
    padding: 3px 6px;
    font-size: 9px;
  }
}

/* Archies-style inner collection pages: same TITLI shell, focused foreground. */
.collection-page {
  min-height: 100vh;
  padding: calc(var(--promo-height) + var(--header-height) + 34px) clamp(18px, 4vw, 54px) 72px;
  overflow-x: clip;
  color: var(--bando-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 225, 236, 0.72), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(190, 236, 255, 0.62), transparent 24%),
    linear-gradient(rgba(24, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px),
    var(--bando-paper);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

.collection-breadcrumb {
  max-width: 1220px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  color: rgba(24, 17, 15, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.guide-kicker-link,
.guide-title-link {
  color: inherit;
  text-decoration: none;
}

.collection-breadcrumb a {
  color: var(--toffee-brown);
}

.collection-hero-panel {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 auto;
}

.collection-hero-copy,
.collection-hero-card,
.collection-filter-panel,
.collection-results,
.collection-help-band {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.14);
}

.collection-hero-copy {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 225, 236, 0.78), rgba(255, 248, 230, 0.95)),
    var(--bando-paper);
}

.collection-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--bando-pink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 var(--bando-yellow),
    7px 7px 0 var(--bando-ink);
}

.collection-hero-copy > p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(24, 17, 15, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.collection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.collection-meta span,
.collection-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 2px 2px 0 rgba(24, 17, 15, 0.16);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.collection-hero-card {
  overflow: hidden;
  margin: 0;
  background: var(--bando-yellow);
}

.collection-hero-card a {
  position: relative;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.collection-hero-card a::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.9);
  color: var(--bando-ink);
  content: "View Product";
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.16);
}

.collection-hero-card a:hover,
.collection-hero-card a:focus-visible {
  outline: 4px solid var(--bando-pink);
  outline-offset: -8px;
}

.collection-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.collection-hero-card figcaption {
  padding: 12px 16px;
  border-top: 2px solid var(--bando-ink);
  color: rgba(24, 17, 15, 0.74);
  background: var(--bando-paper);
  font-size: 13px;
  font-weight: 800;
}

.collection-featured-carousel {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 24px auto 0;
  padding: 16px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 210, 229, 0.92), rgba(255, 247, 179, 0.88)),
    var(--bando-paper);
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.14);
}

.collection-carousel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  padding: 18px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: inherit;
  background: var(--bando-paper);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.collection-carousel-copy a {
  color: inherit;
  text-decoration: none;
}

.collection-carousel-copy:hover,
.collection-carousel-copy:focus-visible {
  background: #fff7df;
  box-shadow: 6px 6px 0 var(--bando-ink);
  outline: 3px solid var(--bando-pink);
  outline-offset: 3px;
  transform: translate(-2px, -2px);
}

.collection-carousel-copy:hover .section-kicker,
.collection-carousel-copy:focus-visible .section-kicker,
.collection-carousel-copy:hover h2,
.collection-carousel-copy:focus-visible h2 {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.collection-carousel-copy h2 {
  margin: 12px 0 0;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

.collection-carousel-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.collection-carousel-control {
  width: 42px;
  height: 42px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.18);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.collection-carousel-control:hover,
.collection-carousel-control:focus-visible {
  background: var(--bando-pink);
  color: var(--bando-paper);
  transform: translate(-1px, -1px);
}

.collection-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 32%);
  gap: 14px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 4px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bando-pink) rgba(24, 17, 15, 0.12);
  scrollbar-width: thin;
  touch-action: pan-x;
}

.collection-carousel-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.collection-carousel-slide {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 180px 1fr;
  min-height: 390px;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-paper);
  box-shadow: 5px 5px 0 rgba(24, 17, 15, 0.13);
}

.collection-carousel-media {
  display: block;
  min-height: 180px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.collection-carousel-media:hover img,
.collection-carousel-media:focus-visible img {
  filter: saturate(1.05) brightness(1.02);
}

.collection-carousel-slide img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid var(--bando-ink);
  background: #fff;
}

.collection-carousel-slide > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.collection-carousel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.collection-carousel-tags span {
  display: inline-flex;
  padding: 5px 8px;
  border: 1.5px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-carousel-slide h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.02;
}

.collection-carousel-slide p {
  margin: 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.collection-carousel-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.collection-carousel-price strong {
  font-size: 18px;
  font-weight: 900;
}

.collection-carousel-price s {
  color: rgba(24, 17, 15, 0.48);
  font-weight: 800;
}

.collection-tabs {
  max-width: 1220px;
  display: flex;
  gap: 10px;
  margin: 26px auto;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scrollbar-color: var(--bando-pink) rgba(24, 17, 15, 0.12);
  scrollbar-width: thin;
}

.collection-tabs a,
.collection-filter-list button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 16px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.13);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-tabs a.active,
.collection-filter-list button.active {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.collection-shop-shell {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0 auto;
}

.collection-filter-panel {
  position: sticky;
  top: calc(var(--promo-height) + var(--header-height) + 18px);
  padding: 22px;
  background: var(--bando-yellow);
}

.collection-panel-label {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-filter-panel h2 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.collection-filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.collection-filter-list button {
  width: 100%;
  cursor: pointer;
}

.collection-filter-note {
  margin: 22px 0 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.collection-results {
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 250, 243, 0.94);
}

.collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.collection-toolbar p {
  margin: 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(24, 17, 15, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-toolbar .collection-search {
  flex: 1 1 260px;
  justify-content: flex-end;
}

.collection-search input,
.category-directory-search input {
  width: min(100%, 290px);
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid rgba(24, 17, 15, 0.62);
  border-radius: 999px;
  color: var(--bando-ink);
  background: #fffdf8;
  font: inherit;
  font-weight: 700;
  text-transform: none;
}

.collection-search input:focus,
.category-directory-search input:focus {
  outline: 3px solid rgba(255, 47, 103, 0.34);
  outline-offset: 2px;
  border-color: var(--bando-pink);
}

.collection-search-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px;
  border: 1px dashed rgba(24, 17, 15, 0.4);
  border-radius: 8px;
  color: rgba(24, 17, 15, 0.72);
  font-weight: 700;
  text-align: center;
}

.collection-toolbar select {
  min-height: 40px;
  padding: 8px 34px 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  font-weight: 900;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 5px 5px 0 rgba(24, 17, 15, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.collection-card:hover,
.collection-card:focus-within {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--bando-ink);
}

.collection-card-media {
  position: relative;
  display: block;
  border-bottom: 2px solid var(--bando-ink);
  background: #ffe1ec;
}

/* Verified Drive earring photos: direct mobile-safe card images. */
.collection-card-media[href*="stock-stud-earrings-1"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-01.webp"); }
.collection-card-media[href*="stock-stud-earrings-2"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-02.webp"); }
.collection-card-media[href*="stock-stud-earrings-3"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-03.webp"); }
.collection-card-media[href*="stock-stud-earrings-4"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-04.webp"); }
.collection-card-media[href*="stock-stud-earrings-5"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-05.webp"); }
.collection-card-media[href*="stock-stud-earrings-6"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-06.webp"); }
.collection-card-media[href*="stock-stud-earrings-7"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-07.webp"); }
.collection-card-media[href*="stock-stud-earrings-8"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-08.webp"); }
.collection-card-media[href*="stock-stud-earrings-9"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-09.webp"); }
.collection-card-media[href*="stock-stud-earrings-10"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-10.webp"); }
.collection-card-media[href*="stock-stud-earrings-11"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-11-fixed-v3.webp"); }
.collection-card-media[href*="stock-stud-earrings-12"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-12.webp"); }
.collection-card-media[href*="stock-stud-earrings-13"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-13.webp"); }
.collection-card-media[href*="stock-stud-earrings-14"] { background-image: url("/media/assets/titli-product-photos/earrings/stud-14.webp"); }
.collection-card-media[href*="stock-jhumka-1"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-01.webp"); }
.collection-card-media[href*="stock-jhumka-2"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-02.webp"); }
.collection-card-media[href*="stock-jhumka-3"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-03.webp"); }
.collection-card-media[href*="stock-jhumka-4"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-04.webp"); }
.collection-card-media[href*="stock-jhumka-5"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-05.webp"); }
.collection-card-media[href*="stock-jhumka-6"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-06.webp"); }
.collection-card-media[href*="stock-jhumka-7"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-07.webp"); }
.collection-card-media[href*="stock-jhumka-8"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-08.webp"); }
.collection-card-media[href*="stock-jhumka-9"] { background-image: url("/media/assets/titli-product-photos/earrings/jhumka-09.webp"); }
.collection-card-media[href*="stock-stud-earrings-"], .collection-card-media[href*="stock-jhumka-"] { background-size: cover; background-position: center; }

.collection-card-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.collection-card-media span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card-media::after {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 9px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 2px 2px 0 var(--bando-ink);
  content: "View";
  font-size: 10px;
  font-weight: 950;
  opacity: 0.92;
  text-transform: uppercase;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.collection-card:hover .collection-card-media::after,
.collection-card:focus-within .collection-card-media::after {
  opacity: 1;
  transform: translate(-2px, -2px);
}

.collection-card-body {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.collection-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.collection-card-tags span {
  min-height: 26px;
  padding: 6px 8px;
  font-size: 10px;
  background: #dff6ff;
}

.collection-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.02;
}

.collection-card h3 a {
  color: inherit;
  text-decoration: none;
}

.collection-card h3 a:hover,
.collection-card h3 a:focus-visible {
  color: var(--bando-pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.collection-card p {
  margin: 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.collection-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.collection-price strong {
  color: var(--bando-pink);
  font-size: 21px;
  font-weight: 950;
}

.collection-price s {
  color: rgba(24, 17, 15, 0.48);
  font-size: 14px;
  font-weight: 800;
}

.collection-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.collection-card-actions .button {
  min-height: 44px;
  padding-inline: 12px;
}

.collection-card-actions .button.secondary {
  border: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 var(--bando-ink);
}

.collection-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: rgba(24, 17, 15, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.build-box-shortcuts {
  display: grid;
  max-width: 1220px;
  margin: 0 auto 28px;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.build-box-shortcuts[hidden] {
  display: none;
}

.build-box-shortcuts-copy,
.build-box-route-grid a {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-paper);
  box-shadow: 5px 5px 0 rgba(24, 17, 15, 0.14);
}

.build-box-shortcuts-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
}

.build-box-shortcuts-copy h2 {
  margin: 0;
  color: var(--bando-pink);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--bando-yellow), 5px 5px 0 var(--bando-ink);
}

.build-box-shortcuts-copy p:last-child {
  margin: 0;
  color: rgba(24, 17, 15, 0.74);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.build-box-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.build-box-route-grid a {
  display: grid;
  gap: 7px;
  padding: 16px;
  color: var(--bando-ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.build-box-route-grid a:hover,
.build-box-route-grid a:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--bando-ink);
}

.build-box-route-grid span {
  width: fit-content;
  padding: 5px 8px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.build-box-route-grid strong {
  color: var(--bando-pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.build-box-route-grid small {
  color: rgba(24, 17, 15, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
}

.rewards-account-shell {
  max-width: 1220px;
  margin: 0 auto 28px;
}

.rewards-auth-grid,
.rewards-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 22px;
  align-items: stretch;
}

.rewards-rules-card,
.rewards-auth-card,
.rewards-member-card,
.rewards-perk-board {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.15);
}

.rewards-rules-card,
.rewards-member-card {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 22px 22px,
    #fff1a8;
}

.rewards-auth-card,
.rewards-perk-board {
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 225, 236, 0.86), rgba(255, 248, 230, 0.96)),
    var(--bando-paper);
}

.rewards-auth-card h2 {
  margin-bottom: 28px;
}

.rewards-rules-card h2,
.rewards-member-card h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 0.96;
}

.rewards-rule-list,
.rewards-perk-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.rewards-rule-list article,
.rewards-perk-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 4px 4px 0 rgba(24, 17, 15, 0.13);
}

.rewards-rule-list span,
.rewards-perk-grid span {
  width: fit-content;
  padding: 6px 9px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rewards-rule-list strong,
.rewards-perk-grid strong,
.rewards-history h3 {
  color: var(--bando-ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
}

.rewards-rule-list small,
.rewards-perk-grid small,
.rewards-system-note,
.rewards-auth-note,
.rewards-mini-note,
.rewards-history p {
  color: rgba(24, 17, 15, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

.rewards-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.rewards-auth-tabs button,
.rewards-earn-actions button {
  min-height: 42px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.14);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rewards-auth-tabs button.active {
  color: var(--bando-paper);
  background: var(--bando-pink);
  box-shadow: 5px 5px 0 var(--bando-ink);
}

.rewards-form {
  display: grid;
  gap: 15px;
}

.rewards-perk-board > [data-rewards-profile] {
  margin-bottom: 30px;
}

.rewards-captcha-shell {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 2px solid rgba(24, 17, 15, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.95);
}

.rewards-captcha-shell [data-rewards-captcha] {
  width: 100%;
  min-height: 65px;
}

.rewards-captcha-shell p {
  margin: 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.rewards-form label {
  display: grid;
  gap: 8px;
  color: var(--bando-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rewards-form .rewards-consent-row {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.5;
  text-transform: none;
}

.rewards-form .rewards-consent-row input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  padding: 0;
  border-width: 2px;
  border-radius: 4px;
  box-shadow: none;
  accent-color: var(--bando-pink);
}

.rewards-consent-row span {
  min-width: 0;
}

.rewards-consent-row a {
  color: var(--bando-pink);
  text-underline-offset: 3px;
}

.rewards-form input,
.rewards-form select {
  min-height: 48px;
  width: 100%;
  padding: 10px 13px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: rgba(255, 250, 243, 0.95);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.12);
  font-size: 15px;
  font-weight: 800;
  text-transform: none;
}

.rewards-form input:focus,
.rewards-form select:focus {
  outline: 3px solid rgba(247, 48, 105, 0.28);
}

.rewards-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rewards-form-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: #dff6ff;
  font-weight: 900;
  line-height: 1.35;
}

.rewards-auth-note,
.rewards-system-note {
  margin: 16px 0 0;
}

.rewards-member-line {
  margin: 16px 0 0;
  color: rgba(24, 17, 15, 0.72);
  font-size: 16px;
  font-weight: 850;
}

.rewards-member-line strong {
  color: var(--bando-pink);
}

.rewards-points-card {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 22px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-pink);
  color: var(--bando-paper);
  box-shadow: 6px 6px 0 var(--bando-ink);
}

.rewards-points-card span {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(64px, 10vw, 110px);
  line-height: 0.85;
  text-shadow: 4px 4px 0 var(--bando-ink);
}

.rewards-points-card strong {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.rewards-points-card small {
  color: rgba(255, 248, 230, 0.9);
  font-size: 14px;
  font-weight: 850;
}

.rewards-progress {
  height: 18px;
  overflow: hidden;
  margin-top: 18px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
}

.rewards-progress i {
  height: 100%;
  display: block;
  border-right: 2px solid var(--bando-ink);
  background: var(--bando-yellow);
}

.rewards-profile-tags,
.rewards-dashboard-actions,
.rewards-earn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.rewards-profile-tags span {
  padding: 8px 11px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.ghost {
  color: var(--bando-ink);
  background: var(--bando-paper);
}

.rewards-history {
  margin-top: 24px;
}

.rewards-history h3 {
  margin: 0 0 12px;
}

.rewards-history ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rewards-history li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 2px solid rgba(24, 17, 15, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.82);
  font-weight: 850;
}

.rewards-history li strong {
  color: var(--bando-pink);
}

.rewards-policy-board {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 38px);
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 22px 22px,
    #fffaf3;
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.15);
}

.rewards-auth-grid + .rewards-policy-board {
  margin-top: 22px;
}

.rewards-policy-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.rewards-policy-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.rewards-policy-heading > p {
  max-width: 360px;
  margin: 0;
  color: rgba(24, 17, 15, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.rewards-policy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.rewards-policy-columns h3 {
  margin: 0;
  color: var(--bando-ink);
  font-size: clamp(22px, 2.4vw, 32px);
}

.rewards-redemption-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.rewards-redemption-grid article {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-yellow);
  box-shadow: 4px 4px 0 rgba(24, 17, 15, 0.13);
}

.rewards-redemption-grid strong {
  color: var(--bando-ink);
  font-size: clamp(18px, 2vw, 25px);
}

.rewards-redemption-grid small {
  color: rgba(24, 17, 15, 0.72);
  font-weight: 800;
}

.rewards-proof-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border: 2px solid rgba(24, 17, 15, 0.24);
  border-radius: 8px;
  background: #dff6ff;
}

.rewards-proof-note p {
  margin: 0;
  color: rgba(24, 17, 15, 0.82);
  font-weight: 750;
  line-height: 1.55;
}

.rewards-proof-note a {
  color: var(--bando-pink);
  font-weight: 900;
  text-underline-offset: 3px;
}

.rewards-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.rewards-card-actions a,
.rewards-card-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.14);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
}

.rewards-card-actions a:focus-visible,
.rewards-card-actions button:focus-visible {
  outline: 3px solid rgba(247, 48, 105, 0.34);
  outline-offset: 2px;
}

.rewards-card-actions a:hover,
.rewards-card-actions button:hover {
  background: #fff;
}

@media (max-width: 760px) {
  .rewards-policy-heading {
    display: grid;
    align-items: start;
  }

  .rewards-policy-columns,
  .rewards-redemption-grid {
    grid-template-columns: 1fr;
  }
}

.policy-page {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 82px) 0;
}

.policy-hero,
.policy-card {
  border: var(--bando-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 168, 0.9), rgba(255, 250, 243, 0.94)),
    var(--bando-paper);
  box-shadow: 8px 8px 0 var(--bando-ink);
}

.policy-hero {
  padding: clamp(28px, 6vw, 54px);
}

.policy-hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

.policy-hero p:not(.section-kicker),
.policy-card p {
  max-width: 800px;
  color: rgba(24, 17, 15, 0.78);
  font-size: 17px;
  line-height: 1.64;
}

.policy-card {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(190, 236, 255, 0.54), rgba(255, 225, 236, 0.72)),
    var(--bando-paper);
}

.policy-card h2 {
  margin: 0 0 12px;
  color: var(--bando-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.5vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.collection-help-band {
  max-width: 1220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px auto 0;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(190, 236, 255, 0.9), rgba(255, 225, 236, 0.92)),
    var(--bando-paper);
}

.collection-help-band h2 {
  max-width: 780px;
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 0.98;
}

.collection-help-band p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(24, 17, 15, 0.76);
  font-size: 17px;
  line-height: 1.58;
}

.occasion-card {
  display: grid;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.occasion-card:focus-visible {
  outline: 3px solid var(--bando-pink);
  outline-offset: 4px;
}

.rewards-auth-card {
  order: -1;
}

.rewards-account-shell {
  scroll-margin-top: calc(var(--promo-height) + var(--header-height) + 18px);
}

.collection-page[data-collection-key="rewards"] .collection-hero-panel {
  margin-bottom: 22px;
}

.collection-page[data-collection-key="rewards"] .collection-hero-copy {
  min-height: 250px;
  padding-block: clamp(22px, 3vw, 34px);
}

.collection-page[data-collection-key="rewards"] .collection-hero-copy h1 {
  font-size: clamp(44px, 5.4vw, 74px);
}

.collection-page[data-collection-key="rewards"] .collection-hero-card img {
  min-height: 250px;
}

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .butterfly-cursor,
  .butterfly-dust {
    display: none !important;
  }

  .checkout-layout,
  .checkout-payment-box {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    min-width: 0;
  }

  .collection-page {
    padding-inline: 14px;
  }

  .collection-hero-panel,
  .collection-featured-carousel,
  .collection-shop-shell,
  .build-box-shortcuts,
  .rewards-auth-grid,
  .rewards-dashboard {
    grid-template-columns: 1fr;
  }

  .collection-hero-copy {
    min-height: auto;
  }

  .collection-hero-card img {
    min-height: 320px;
  }

  .collection-carousel-copy {
    min-height: auto;
  }

  .collection-carousel-shell {
    grid-template-columns: 1fr;
  }

  .collection-carousel-control {
    display: none;
  }

  .collection-carousel-track {
    grid-auto-columns: minmax(230px, 78%);
    margin-inline: -4px;
  }

  .collection-filter-panel {
    position: static;
  }

  .collection-filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .collection-filter-list button {
    width: auto;
  }

  .collection-help-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .checkout-page,
  .payment-result-page {
    padding-inline: 14px;
  }

  .checkout-form-grid,
  .checkout-totals div {
    grid-template-columns: 1fr;
  }

  .payment-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .checkout-hero h1,
  .payment-result-card h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .checkout-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .checkout-item strong {
    grid-column: 2;
  }

  .checkout-item img {
    width: 56px;
    height: 62px;
  }

  .cart-drawer.open {
    background: var(--bando-paper);
  }

  .cart-panel {
    width: 100vw;
    max-width: 100vw;
    min-height: 100dvh;
    box-shadow: none;
  }

  .cart-items {
    padding: 14px;
  }

  .cart-recommendation {
    grid-template-columns: 56px 1fr;
  }

  .cart-recommendation div {
    grid-template-columns: 1fr;
  }

  .cart-recommendation button {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .build-box-shortcuts {
    margin-inline: 16px;
  }

  .build-box-route-grid {
    grid-template-columns: 1fr;
  }

  .collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-hero-copy h1 {
    font-size: clamp(50px, 17vw, 82px);
  }

  .collection-card-body {
    min-height: auto;
  }

  .collection-card-actions {
    grid-template-columns: 1fr;
  }

  .collection-featured-carousel {
    padding: 12px;
  }

  .collection-carousel-copy h2 {
    font-size: clamp(27px, 10vw, 38px);
  }

  .collection-carousel-track {
    grid-auto-columns: minmax(220px, 88%);
  }

  .collection-carousel-slide {
    min-height: 370px;
  }

  .hero-guide-panel h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 11.5vw, 52px);
    line-height: 0.92;
    text-shadow:
      3px 3px 0 var(--bando-yellow),
      5px 5px 0 var(--bando-ink);
  }

  .hero-guide-panel .guide-frame {
    min-height: 500px;
  }

  .hero-guide-panel .guide-step {
    top: 104px;
    min-height: 330px;
  }

  .guide-progress i,
  .guide-visual-strip a {
    animation: none;
  }

  .rewards-form-row,
  .rewards-auth-tabs {
    grid-template-columns: 1fr;
  }

  .rewards-dashboard-actions .button,
  .rewards-earn-actions button {
    width: 100%;
  }

  .rewards-points-card span {
    font-size: clamp(58px, 22vw, 86px);
  }
}

/* Final product-focus pass: quieter labels, clearer actions, larger product surface. */
.top-promo a {
  color: inherit;
  text-decoration: none;
}

.top-promo a:hover,
.top-promo a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section-kicker:not(a),
.eyebrow:not(a) {
  width: fit-content !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #7b5346 !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.08em;
}

a.section-kicker,
.guide-kicker-link {
  cursor: pointer;
}

.collection-meta span,
.collection-card-tags span,
.collection-carousel-tags span,
.rewards-rule-list span,
.rewards-perk-grid span,
.rewards-steps span,
.build-box-route-grid span {
  color: #5f4238;
  background: #fffdf5;
  box-shadow: none;
}

.hero h1 {
  font-size: clamp(72px, 9vw, 134px);
}

.brand-tagline {
  font-size: clamp(24px, 3vw, 32px);
}

.hero-text {
  max-width: 520px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.46;
}

.hero-content {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.opening-product-rail {
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  align-items: stretch;
  margin-top: 0;
  background: #fffdf5;
}

.opening-rail-copy h2 {
  font-size: clamp(30px, 3.4vw, 52px);
}

.opening-product-card {
  min-width: clamp(210px, 24vw, 280px);
}

.opening-product-card img {
  height: clamp(190px, 22vw, 260px);
}

.intro-section,
.occasion-section,
.best-sellers-section,
.rewards-band,
.editorial-band {
  padding-block: clamp(46px, 6vw, 78px);
}

.section-header h2,
.intro-section h2,
.rewards-copy h2,
.editorial-copy h2 {
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1;
}

.collection-hero-panel {
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
}

.collection-hero-copy {
  min-height: 320px;
  padding: clamp(24px, 3.8vw, 42px);
}

.collection-hero-copy h1 {
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 0.94;
}

.collection-hero-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin-top: 18px;
  font-size: clamp(16px, 1.6vw, 19px);
}

.collection-hero-card img {
  min-height: 340px;
}

.collection-featured-carousel {
  margin-top: 28px;
}

.collection-carousel-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.collection-carousel-slide {
  grid-template-rows: 220px 1fr;
}

.collection-carousel-slide img {
  height: 220px;
}

.collection-grid {
  gap: 22px;
}

.collection-card-media img {
  aspect-ratio: 4 / 5;
}

.collection-card-body {
  min-height: 224px;
  gap: 10px;
}

.collection-card h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.collection-card p {
  overflow: visible;
}

.collection-price strong {
  font-size: 22px;
}

.rewards-copy .button {
  margin-top: 18px;
}

.rewards-steps a {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 190px;
  padding: 20px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: inherit;
  background: var(--bando-paper);
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.12);
  text-decoration: none;
}

.rewards-steps a:nth-child(2) {
  background: #dff6ff;
}

.rewards-steps a:nth-child(3) {
  background: #ffe1ec;
}

.rewards-steps a:hover,
.rewards-steps a:focus-visible {
  outline: 3px solid var(--bando-pink);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.checkout-hero h1,
.payment-result-card h1,
.orders-hero h1 {
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 0.98;
  text-shadow: 3px 3px 0 var(--bando-yellow), 5px 5px 0 var(--bando-ink);
}

.checkout-hero p:last-child,
.payment-result-card > p,
.orders-hero p {
  font-size: 16px;
  font-weight: 700;
}

.checkout-payment-box {
  align-items: start;
  gap: 22px;
  padding: 22px;
}

.checkout-payment-box .section-kicker {
  margin-bottom: 12px;
}

.checkout-payment-box h3 {
  margin-top: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.checkout-payment-box p:not(.section-kicker) {
  margin-top: 12px;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.orders-page {
  min-height: calc(100vh - var(--promo-height) - var(--header-height));
  padding: calc(var(--promo-height) + var(--header-height) + 34px) 22px 64px;
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--bando-paper);
}

.orders-hero,
.orders-empty,
.orders-list {
  max-width: 1120px;
  margin-inline: auto;
}

.orders-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.orders-hero h1,
.orders-hero p,
.orders-empty h2,
.orders-empty p {
  margin: 0;
}

.orders-empty,
.order-card {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffdf5;
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.14);
}

.orders-empty {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
}

.orders-empty[hidden] {
  display: none;
}

.orders-list {
  display: grid;
  gap: 18px;
}

.order-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.order-card-header,
.order-card-grid {
  display: grid;
  gap: 14px;
}

.order-card-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.order-card-header span,
.order-card-grid span {
  color: #7b5346;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-card-header strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.order-card-header p {
  margin: 0;
  padding: 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.order-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-card-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.35;
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-steps li {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 2px solid rgba(24, 17, 15, 0.22);
  border-radius: 999px;
  color: rgba(24, 17, 15, 0.62);
  background: #fff8e6;
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.tracking-steps li.active {
  border-color: var(--bando-ink);
  color: var(--bando-ink);
  background: #bdf063;
}

.order-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-item-list li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffe1ec;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .hero-content,
  .collection-hero-panel,
  .opening-product-rail {
    grid-template-columns: 1fr;
  }

  .collection-card-media img {
    aspect-ratio: 1 / 1;
  }

  .order-card-grid,
  .tracking-steps {
    grid-template-columns: 1fr;
  }

  .order-card-header {
    grid-template-columns: 1fr;
  }
}

/* Product clarity pass: less shouting, more product. */
.hero-guide-panel .section-kicker,
.hero-guide-panel h2 {
  position: relative;
  z-index: 2;
}

.hero-guide-panel .section-kicker {
  margin-bottom: 16px;
}

.hero-guide-panel h2 {
  margin-top: 0;
}

.section-header {
  align-items: end;
  gap: clamp(18px, 3vw, 42px);
}

.section-header h2,
.intro-section h2,
.rewards-copy h2,
.editorial-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.6vw, 56px);
  letter-spacing: 0;
}

.section-header h2 a,
.intro-section h2 a,
.best-sellers-section h2 a {
  color: inherit;
  text-decoration: none;
}

.section-header h2 a:hover,
.section-header h2 a:focus-visible,
.best-sellers-section h2 a:hover,
.best-sellers-section h2 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.section-lede,
.intro-copy p,
.editorial-copy p,
.rewards-copy p {
  max-width: 620px;
  color: #5d4037;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
}

.intro-copy p + p {
  margin-top: 14px;
}

.opening-product-rail {
  gap: 18px;
  border-width: 2px;
}

.opening-rail-copy {
  align-content: center;
}

.opening-rail-copy h2 {
  font-size: clamp(26px, 2.9vw, 42px);
}

.opening-product-card {
  min-width: clamp(230px, 25vw, 310px);
  padding: 14px;
}

.opening-product-card img {
  height: clamp(220px, 24vw, 300px);
  object-fit: cover;
  background: #fffaf3;
}

.opening-product-card strong {
  font-size: 15px;
  line-height: 1.32;
}

.occasion-card {
  min-height: 152px;
  padding: 18px;
}

.occasion-card strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.02;
}

.occasion-card small {
  max-width: 95%;
  font-size: 13px;
  line-height: 1.34;
}

.featured-shortcuts {
  margin-bottom: 18px;
}

.product-led-slider {
  grid-auto-columns: minmax(286px, 360px);
  gap: 18px;
}

.product-led-slider .best-seller-slide {
  min-height: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  color: var(--bando-ink);
  background: #fffaf2;
  text-decoration: none;
  overflow: hidden;
}

.product-led-slider .best-seller-slide:hover,
.product-led-slider .best-seller-slide:focus-visible {
  transform: translateY(-4px);
  outline: 3px solid var(--bando-pink);
  outline-offset: 4px;
}

.best-seller-product-images {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 260px;
}

.best-seller-product-images img {
  height: 100%;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  object-fit: contain;
  background: #fffdf5;
  box-shadow: 4px 4px 0 rgba(24, 17, 15, 0.12);
}

.best-seller-product-images img:first-child {
  grid-row: 1 / span 2;
}

.product-led-slider .best-seller-slide > span {
  width: fit-content;
  margin-top: 4px;
  padding: 7px 11px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--bando-ink);
}

.product-led-slider .best-seller-slide h3 {
  margin: 0;
  padding: 10px 12px;
  border: 2px solid rgba(24, 17, 15, 0.18);
  border-radius: 8px;
  color: var(--bando-ink);
  background: rgba(255, 250, 242, 0.94);
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.1);
}

.product-led-slider .best-seller-slide p {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(24, 17, 15, 0.14);
  border-radius: 8px;
  color: #321f1a;
  background: rgba(255, 250, 242, 0.92);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.34;
}

.collection-meta span,
.collection-card-tags a,
.collection-carousel-tags a,
.order-item-list li {
  border: 1px solid rgba(24, 17, 15, 0.16);
}

.collection-card-tags a,
.collection-carousel-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #5f4238;
  background: #fffdf5;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.collection-card-tags a:hover,
.collection-card-tags a:focus-visible,
.collection-carousel-tags a:hover,
.collection-carousel-tags a:focus-visible {
  color: var(--bando-ink);
  background: var(--bando-yellow);
  outline: 2px solid var(--bando-ink);
  outline-offset: 2px;
}

.collection-card-body {
  min-height: 190px;
}

.collection-card-actions {
  margin-top: auto;
}

.collection-carousel-slide {
  grid-template-rows: 250px 1fr;
}

.collection-carousel-slide img {
  height: 250px;
}

.rewards-auth-card {
  order: -1;
}

.rewards-auth-card .button,
.rewards-dashboard-actions .button,
.rewards-earn-actions button {
  cursor: pointer;
}

.rewards-auth-card,
.rewards-rules-card,
.rewards-member-card,
.rewards-perk-board,
.checkout-payment-box,
.checkout-summary-card,
.order-card,
.orders-empty {
  box-shadow: 5px 5px 0 rgba(24, 17, 15, 0.13);
}

.checkout-payment-box {
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  row-gap: 18px;
}

.checkout-payment-box .section-kicker {
  margin-bottom: 10px;
}

.checkout-payment-box h3 {
  margin: 0;
  padding-top: 2px;
}

.checkout-payment-box p:not(.section-kicker) {
  margin: 14px 0 0;
}

.orders-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: clamp(64px, 22vw, 112px);
  }

  .section-header {
    align-items: start;
  }

  .section-header h2,
  .intro-section h2,
  .rewards-copy h2,
  .editorial-copy h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .opening-product-card {
    min-width: min(78vw, 290px);
  }

  .product-led-slider {
    grid-auto-columns: minmax(260px, 82vw);
  }

  .best-seller-product-images {
    min-height: 220px;
  }

  .checkout-payment-box {
    grid-template-columns: 1fr;
  }
}

/* Savana-inspired product-first pass: simplify support UI and let products lead. */
.opening-product-rail {
  gap: 16px;
}

.opening-rail-copy h2 {
  font-size: clamp(24px, 2.6vw, 38px);
}

.opening-product-card {
  min-width: clamp(216px, 22vw, 272px);
  padding: 12px;
}

.opening-product-card strong {
  font-size: 14px;
  line-height: 1.28;
}

.best-sellers-section .section-lede {
  max-width: 430px;
}

.featured-shortcuts {
  margin-bottom: 14px;
}

.product-led-slider {
  grid-auto-columns: minmax(272px, 334px);
  gap: 16px;
}

.best-seller-product-images {
  min-height: 236px;
}

.product-led-slider .best-seller-slide {
  gap: 10px;
  padding: 14px;
}

.product-led-slider .best-seller-slide h3 {
  font-size: clamp(24px, 2.1vw, 34px);
}

.product-led-slider .best-seller-slide p {
  font-size: 14px;
  line-height: 1.3;
}

.intro-copy p,
.section-lede {
  max-width: 560px;
}

.collection-hero-panel {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: 20px;
}

.collection-hero-copy,
.collection-hero-card,
.collection-filter-panel,
.collection-results,
.collection-help-band {
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.1);
}

.collection-hero-copy {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 245, 230, 0.96), rgba(255, 229, 239, 0.72)),
    var(--bando-paper);
}

.collection-hero-copy h1 {
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 0.94;
  text-shadow:
    3px 3px 0 var(--bando-yellow),
    5px 5px 0 rgba(24, 17, 15, 0.86);
}

.collection-hero-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 14px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.38;
}

.collection-meta {
  margin-top: 18px;
  gap: 8px;
}

.collection-featured-carousel {
  grid-template-columns: minmax(176px, 220px) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: rgba(255, 250, 243, 0.95);
}

.collection-carousel-copy {
  min-height: auto;
  padding: 14px;
  background: #fffdf6;
}

.collection-carousel-copy h2 {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.02;
}

.collection-carousel-track {
  grid-auto-columns: minmax(220px, 28%);
  gap: 12px;
}

.collection-carousel-slide {
  grid-template-rows: 210px 1fr;
  min-height: 346px;
}

.collection-carousel-slide img {
  height: 210px;
}

.collection-carousel-slide p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection-shop-shell {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.collection-filter-panel {
  padding: 18px;
  background: #fff7df;
}

.collection-panel-label {
  font-size: 12px;
}

.collection-filter-panel h2 {
  font-size: 26px;
}

.collection-filter-note {
  font-size: 12px;
}

.collection-results {
  padding: clamp(16px, 2.3vw, 22px);
}

.collection-toolbar {
  margin-bottom: 18px;
}

.collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-card-body {
  min-height: 182px;
  gap: 8px;
  padding: 14px;
}

.collection-card h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.06;
}

.collection-card p {
  font-size: 13px;
  line-height: 1.4;
}

.collection-price strong {
  font-size: 20px;
}

.collection-card-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .collection-featured-carousel,
  .collection-shop-shell {
    grid-template-columns: 1fr;
  }

  .collection-filter-panel {
    position: static;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

/* Marketplace-card galleries for exact TITLI product matches. */
.product-media.is-gallery,
.collection-card-media.is-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.product-media.is-gallery::-webkit-scrollbar,
.collection-card-media.is-gallery::-webkit-scrollbar {
  display: none;
}

.product-media.is-gallery > img,
.collection-card-media.is-gallery > img {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

.product-media.is-gallery > img {
  height: 100%;
  object-fit: contain;
  background: #fffaf2;
}

.collection-card-media.is-gallery > img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #fffaf2;
}

.media-gallery-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  max-width: 96px;
  padding: 5px 7px;
  border: 1px solid rgba(24, 17, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.82);
  pointer-events: none;
}

.media-gallery-dots.is-condensed {
  max-width: 78px;
}

.media-gallery-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(24, 17, 15, 0.42);
}

.site-spread-showcase,
.collection-drop-showcase {
  display: grid;
  gap: 18px;
  color: var(--bando-ink);
}

.site-spread-showcase {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  padding: clamp(26px, 4vw, 52px) 22px;
  border-block: 2px solid var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    #fff5c8;
}

.site-spread-copy,
.collection-drop-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.site-spread-copy .section-kicker,
.collection-drop-copy .section-kicker {
  margin: 0;
  width: fit-content;
}

.site-spread-copy h2,
.collection-drop-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.site-spread-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-spread-links a {
  padding: 8px 11px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: #ffe1ec;
  box-shadow: 2px 2px 0 var(--bando-ink);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.site-spread-track,
.collection-drop-track {
  display: flex;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 14px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--bando-pink) rgba(24, 17, 15, 0.12);
}

.site-spread-card,
.collection-drop-card {
  position: relative;
  flex: 0 0 min(330px, 78vw);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  scroll-snap-align: start;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffdf5;
  box-shadow: 5px 5px 0 var(--bando-ink);
  color: var(--bando-ink);
  text-decoration: none;
}

.site-spread-card.is-wide,
.collection-drop-card:first-child {
  flex-basis: min(560px, 84vw);
  aspect-ratio: 16 / 9;
}

.site-spread-card img,
.collection-drop-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-spread-card span,
.collection-drop-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.9);
  color: var(--bando-ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-spread-card:hover,
.site-spread-card:focus-visible,
.collection-drop-card:hover,
.collection-drop-card:focus-visible {
  outline: 3px solid var(--bando-pink);
  outline-offset: 4px;
}

.collection-drop-showcase {
  margin: 0 auto;
  width: min(1160px, calc(100% - 32px));
  padding: 22px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffdf5;
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.14);
}

.collection-drop-showcase[hidden] {
  display: none;
}

.collection-drop-showcase {
  grid-template-columns: minmax(190px, 0.25fr) minmax(0, 1fr);
}

/* QA polish: keep section badges and compact counters from crowding nearby text. */
.intro-section > .section-kicker {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
}

.cart-button {
  min-width: 44px;
  overflow: visible;
}

.cart-count {
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  line-height: 1;
  white-space: nowrap;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  align-items: end;
  justify-items: end;
  padding: clamp(14px, 3vw, 32px);
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(24, 17, 15, 0.38);
  cursor: pointer;
}

.newsletter-card {
  position: relative;
  z-index: 1;
  width: min(470px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 28px));
  overflow-y: auto;
  padding: clamp(22px, 3vw, 30px);
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 22px 22px,
    #fff5c8;
  box-shadow: 9px 9px 0 var(--bando-ink);
}

.newsletter-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: #ffe1ec;
  box-shadow: 2px 2px 0 var(--bando-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
}

.newsletter-step {
  display: grid;
  gap: 16px;
}

.newsletter-step[hidden] {
  display: none;
}

.newsletter-step .section-kicker {
  margin: 0;
  background: #ffe1ec;
}

.newsletter-step h2 {
  max-width: 13ch;
  margin: 0;
  padding-right: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 0.98;
}

.newsletter-step p {
  margin: 0;
  color: #5f4238;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
  color: rgba(24, 17, 15, 0.74);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.newsletter-form input:focus,
.newsletter-form select:focus,
.newsletter-close:focus-visible,
.newsletter-later:focus-visible {
  outline: 3px solid var(--bando-pink);
  outline-offset: 3px;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.78fr);
  gap: 12px;
}

.newsletter-later {
  justify-self: start;
  border: 0;
  color: #7b5346;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.newsletter-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: #5f4238;
  font-size: 13px;
  font-weight: 850;
}

.newsletter-status[data-tone="error"] {
  color: var(--bando-pink);
}

.newsletter-status[data-tone="success"] {
  color: #245c3d;
}

.newsletter-success strong {
  display: inline-block;
  padding: 2px 7px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: var(--bando-yellow);
  color: var(--bando-ink);
  font-size: 0.92em;
}

@media (max-width: 640px) {
  .newsletter-popup {
    align-items: end;
    justify-items: center;
    padding: 10px;
  }

  .newsletter-card {
    width: min(100%, 390px);
    max-height: calc(100vh - 20px);
    padding: 20px;
    box-shadow: 5px 5px 0 var(--bando-ink);
  }

  .newsletter-step h2 {
    max-width: 12ch;
    font-size: clamp(30px, 9vw, 38px);
  }

  .newsletter-form-row {
    grid-template-columns: 1fr;
  }

  .site-spread-showcase,
  .collection-drop-showcase {
    grid-template-columns: 1fr;
  }

  .site-spread-showcase {
    padding-inline: 12px;
  }

  .site-spread-copy h2,
  .collection-drop-copy h2 {
    font-size: 30px;
  }

  .collection-drop-showcase {
    width: min(100% - 20px, 430px);
    padding: 16px;
  }

  .site-spread-card,
  .collection-drop-card {
    flex-basis: min(282px, 78vw);
  }

  .site-spread-card.is-wide,
  .collection-drop-card:first-child {
    flex-basis: min(350px, 86vw);
  }
}

@media (max-width: 480px) {
  .checkout-discount-entry {
    grid-template-columns: 1fr;
  }

  .checkout-discount-entry .button {
    width: 100%;
  }
}

.product-media,
.collection-carousel-media {
  color: inherit;
  text-decoration: none;
}

.product-media {
  display: block;
}

.product-body h3 a,
.collection-carousel-slide h3 a {
  color: inherit;
  text-decoration: none;
}

.product-body h3 a:hover,
.product-body h3 a:focus-visible,
.collection-carousel-slide h3 a:hover,
.collection-carousel-slide h3 a:focus-visible {
  color: var(--bando-pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.product-card-actions .button {
  min-height: 44px;
  padding-inline: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.collection-carousel-media {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid var(--bando-ink);
  background: #fff;
}

.collection-carousel-media img {
  border-bottom: 0;
  object-fit: contain;
  background: #fffaf2;
}

.product-detail-page {
  min-height: 100vh;
  padding: calc(var(--promo-height) + var(--header-height) + 34px) 0 72px;
  overflow-x: clip;
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    #fffaf2;
}

.product-detail-shell {
  display: grid;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 34px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
}

.product-detail-gallery,
.product-detail-copy,
.product-detail-empty,
.product-detail-more {
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: var(--bando-paper);
  box-shadow: 6px 6px 0 rgba(24, 17, 15, 0.14);
}

.product-detail-gallery {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-detail-gallery-main {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bando-pink) rgba(24, 17, 15, 0.12);
}

.product-detail-gallery-main img {
  flex: 0 0 min(520px, 86vw);
  width: min(520px, 86vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  scroll-snap-align: start;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffaf2;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.product-detail-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1.5px solid rgba(24, 17, 15, 0.24);
  border-radius: 6px;
  background: #fffaf2;
}

.product-detail-copy {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.product-detail-back {
  width: fit-content;
  color: var(--bando-ink);
  font-size: 13px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-detail-copy .section-kicker {
  width: fit-content;
  margin: 0;
}

.product-detail-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

.product-detail-description {
  margin: 0;
  color: rgba(24, 17, 15, 0.74);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.product-variant-picker {
  display: grid;
  grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
  gap: 8px 12px;
  align-items: center;
  padding: 14px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #eef8ff;
  box-shadow: 4px 4px 0 rgba(24, 17, 15, 0.16);
}

.product-variant-picker label {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-variant-picker select {
  width: 100%;
  min-height: 44px;
  padding: 8px 38px 8px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 6px;
  color: var(--bando-ink);
  background: #fffaf2;
  font: inherit;
  font-weight: 900;
}

.product-variant-picker small {
  grid-column: 2;
  color: rgba(24, 17, 15, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-badges span {
  padding: 7px 10px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: #dff6ff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-price strong {
  color: var(--bando-pink);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 950;
}

.product-detail-price s {
  color: rgba(24, 17, 15, 0.48);
  font-size: 17px;
  font-weight: 850;
}

.product-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-detail-list div {
  display: grid;
  grid-template-columns: minmax(88px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(24, 17, 15, 0.14);
}

.product-detail-list dt {
  color: rgba(24, 17, 15, 0.58);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-detail-list dd {
  margin: 0;
  font-weight: 850;
}

.product-detail-service-note {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1.5px solid rgba(24, 17, 15, 0.28);
  border-radius: 8px;
  background: #fff5d9;
}

.product-detail-service-note p {
  margin: 0;
  color: rgba(24, 17, 15, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.product-detail-service-note div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.product-detail-service-note a {
  color: var(--bando-ink);
  font-size: 12px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-detail-actions .button {
  min-height: 50px;
  white-space: nowrap;
}

.product-detail-empty {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 42px;
  padding: 26px;
}

.product-detail-empty h1 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.product-detail-more {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 54px;
  padding: clamp(18px, 3vw, 28px);
}

.product-detail-more[hidden] {
  display: none;
}

.product-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-more-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.product-more-card a {
  display: grid;
  gap: 8px;
  color: var(--bando-ink);
  text-decoration: none;
}

.product-more-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  background: #fffaf2;
}

.product-more-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.product-more-card strong {
  color: var(--bando-pink);
  font-size: 16px;
}

@media (max-width: 760px) {
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery-main img {
    flex-basis: min(360px, 84vw);
    width: min(360px, 84vw);
  }

  .product-detail-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-detail-actions,
  .product-card-actions {
    grid-template-columns: 1fr;
  }

  .product-more-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .product-detail-copy h1 {
    font-size: 36px;
  }

  .product-variant-picker {
    grid-template-columns: 1fr;
  }

  .product-variant-picker small {
    grid-column: 1;
  }

  .product-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Breathing-room pass: reduce scan clutter while keeping product actions clear. */
.top-promo {
  min-height: 42px;
  gap: clamp(18px, 4vw, 72px);
  padding-inline: clamp(14px, 4vw, 40px);
}

.top-promo span:nth-child(n + 3) {
  display: none;
}

.hero,
.collection-hero-panel,
.collection-shop-shell,
.product-detail-shell {
  gap: clamp(24px, 4vw, 52px);
}

.hero {
  padding-top: clamp(52px, 8vw, 104px);
  padding-bottom: clamp(54px, 8vw, 108px);
}

.hero-copy {
  gap: 18px;
}

.hero-text,
.section-lede,
.collection-hero-copy > p:not(.section-kicker),
.product-detail-description {
  max-width: 52ch;
  line-height: 1.62;
}

.hero-stickers {
  gap: 10px;
  margin-top: 4px;
}

.hero-stickers a:nth-child(n + 4),
.featured-shortcuts,
.collection-card-tags,
.collection-carousel-tags,
.product-detail-badges,
.collection-filter-note,
.collection-hero-card figcaption {
  display: none;
}

.opening-product-rail,
.site-spread-showcase,
.best-sellers-section,
.promo-billboards,
.collection-featured-carousel,
.collection-drop-showcase,
.collection-tabs,
.collection-help-band,
.product-detail-more {
  margin-top: clamp(34px, 6vw, 78px);
  margin-bottom: clamp(34px, 6vw, 78px);
}

.opening-product-card {
  grid-template-rows: minmax(168px, 1fr) auto;
}

.opening-product-card strong {
  display: none;
}

.product-led-slider .best-seller-slide {
  gap: 14px;
  padding: 18px;
}

.product-led-slider .best-seller-slide p {
  display: none;
}

.product-led-slider .best-seller-slide h3 {
  padding: 12px 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
}

.collection-meta span:nth-child(n + 3) {
  display: none;
}

.collection-card-body {
  min-height: 0;
  gap: 11px;
  padding: 18px;
}

.collection-card-body p,
.collection-carousel-slide p,
.product-description {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 2px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
}

.collection-card-actions,
.product-card-actions {
  margin-top: auto;
  padding-top: 6px;
}

.collection-card-actions,
.product-card-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.collection-card-actions .button,
.product-card-actions .button {
  min-height: 32px;
  width: 100%;
  padding: 6px 5px;
  border-width: 2px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--bando-ink);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.collection-card-actions .button:hover,
.collection-card-actions .button:focus-visible,
.product-card-actions .button:hover,
.product-card-actions .button:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--bando-ink);
}

.collection-carousel-copy {
  padding: clamp(22px, 3vw, 34px);
}

.collection-carousel-copy h2,
.collection-drop-copy h2,
.site-spread-copy h2 {
  max-width: 11ch;
}

.product-detail-copy {
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.product-detail-list {
  gap: 4px;
}

.product-detail-list div {
  padding: 8px 0;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .hero-stickers a:nth-child(n + 3) {
    display: none;
  }

  .opening-product-rail,
  .site-spread-showcase,
  .best-sellers-section,
  .collection-featured-carousel,
  .collection-drop-showcase,
  .collection-shop-shell,
  .product-detail-shell {
    margin-top: 34px;
    margin-bottom: 44px;
  }

  .collection-card-body,
  .product-detail-copy {
    padding: 16px;
  }
}

/* Final mobile containment pass.
   Keep this after the desktop refinements above so inner pages cannot inherit
   a late two-column layout or intrinsically wide gallery image on phones. */
@media (max-width: 860px) {
  .collection-hero-panel,
  .collection-featured-carousel,
  .collection-shop-shell,
  .collection-drop-showcase,
  .checkout-layout,
  .checkout-payment-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-hero-panel > *,
  .collection-featured-carousel > *,
  .collection-shop-shell > *,
  .collection-drop-showcase > *,
  .checkout-layout > *,
  .checkout-payment-box > * {
    min-width: 0;
    max-width: 100%;
  }

  .collection-hero-copy,
  .collection-hero-card,
  .collection-help-band {
    width: 100%;
    box-sizing: border-box;
  }

  .collection-hero-card a,
  .collection-hero-card img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: calc(var(--promo-height) + var(--header-height) + 38px);
  }

  .product-detail-shell {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail-shell > *,
  .product-detail-gallery,
  .product-detail-gallery-main,
  .product-detail-copy {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-detail-gallery-main img {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .hero-gift-motion .gift-float span {
    display: none;
  }
}

/* Mobile alignment QA: linked section badges must participate in normal flow.
   Inline anchors ignore vertical margins and can overlap the heading below. */
a.section-kicker,
a.eyebrow {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-header > * {
  min-width: 0;
}

.section-header h2 {
  margin-top: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .section-header {
    width: 100%;
    gap: 18px;
  }

  .section-header > div,
  .section-header .section-lede {
    width: 100%;
  }

  .section-header a.section-kicker {
    margin-bottom: 18px;
  }
}

/* Readable type scale: keep key labels and headings bold while body copy stays
   compact, regular-weight, and comfortable to scan across the whole shop. */
body {
  font-size: 16px;
  line-height: 1.5;
}

.policy-page {
  padding-top: calc(var(--promo-height) + var(--header-height) + clamp(24px, 4vw, 48px));
  padding-bottom: clamp(34px, 6vw, 82px);
}

.hero-text,
.section-lede,
.intro-copy,
.intro-copy p,
.rewards-copy p,
.editorial-copy p:not(.eyebrow),
.contact-section p,
.policy-hero p:not(.section-kicker),
.policy-card p,
.collection-hero-copy > p:not(.section-kicker),
.collection-card p,
.collection-carousel-slide p,
.collection-help-band p:not(.section-kicker),
.product-description,
.product-detail-description,
.newsletter-step p {
  font-size: clamp(15px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.section-header h2,
.intro-section h2,
.rewards-copy h2,
.editorial-copy h2,
.contact-section h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.03;
}

.policy-hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.98;
}

.policy-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.collection-hero-copy h1,
.orders-hero h1,
.product-detail-copy h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.98;
}

.collection-card h3,
.product-led-slider .best-seller-slide h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.08;
}

.button,
.nav-links,
.utility-menu-panel,
.footer-links {
  font-size: 14px;
}

.checkout-hero p:last-child,
.checkout-payment-box p:not(.section-kicker),
.payment-result-card > p,
.orders-hero p,
.orders-empty p,
.order-card p {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.checkout-hero h1,
.payment-result-card h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
}

.button,
.section-kicker,
.eyebrow,
strong,
b {
  font-weight: 800;
}

@media (max-width: 860px) {
  .policy-page {
    padding-top: calc(var(--promo-height) + var(--header-height) + 24px);
  }

  .policy-hero,
  .policy-card {
    padding: 24px;
  }

  .policy-hero h1 {
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1;
  }

  .policy-card h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .section-header h2,
  .intro-section h2,
  .rewards-copy h2,
  .editorial-copy h2,
  .contact-section h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .collection-hero-copy h1,
  .orders-hero h1,
  .product-detail-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .checkout-hero h1,
  .payment-result-card h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero h1 {
    font-size: clamp(56px, 20vw, 88px);
  }

  .brand-tagline {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.08;
  }
}

/* Current inventory category map. */
.available-categories {
  width: min(1220px, calc(100% - 36px));
  margin: clamp(42px, 7vw, 88px) auto;
  padding: clamp(20px, 3vw, 34px);
  border: 2px solid var(--bando-ink);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 8px 8px 0 rgba(24, 17, 15, 0.12);
}

.category-directory-search {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 10px 22px;
  align-items: end;
  margin: 24px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(24, 17, 15, 0.22);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.74);
}

.category-directory-search .section-kicker {
  margin: 0 0 4px;
}

.category-directory-search h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.category-directory-search label {
  display: block;
}

.category-directory-search input {
  width: 100%;
}

.category-directory-search-results {
  grid-column: 1 / -1;
}

.category-directory-search-status {
  margin: 4px 0 10px;
  color: rgba(24, 17, 15, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.category-directory-search-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.category-directory-search-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--bando-ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.category-directory-search-list a:hover,
.category-directory-search-list a:focus-visible {
  background: #fff;
  outline: 2px solid var(--bando-pink);
  outline-offset: 1px;
}

.category-directory-search-list span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-directory-search-list strong {
  flex: 0 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.available-categories-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: end;
  margin-bottom: 24px;
}

.available-categories-heading .section-kicker {
  grid-column: 1 / -1;
}

.available-categories-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 0.98;
}

.available-categories-heading > a {
  color: var(--bando-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.available-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.available-category-card {
  display: grid;
  grid-template-rows: 190px auto auto;
  gap: 8px;
  min-width: 0;
  padding: 10px 10px 16px;
  overflow: hidden;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: var(--bando-paper);
  box-shadow: 4px 4px 0 rgba(24, 17, 15, 0.14);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.available-category-card:hover,
.available-category-card:focus-visible {
  outline: 3px solid var(--bando-pink);
  outline-offset: 3px;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--bando-ink);
}

.available-category-card img {
  width: 100%;
  height: 190px;
  border-radius: 5px;
  object-fit: cover;
  background: #fff;
}

.available-category-card span {
  color: rgba(24, 17, 15, 0.68);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.available-category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.05;
}

@media (max-width: 1040px) {
  .available-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .category-directory-search {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 14px;
  }

  .category-directory-search-list {
    grid-template-columns: 1fr;
  }

  .available-categories {
    width: calc(100% - 28px);
    padding: 16px;
  }

  .available-categories-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .available-categories-heading .section-kicker {
    grid-column: auto;
  }

  .available-categories-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .available-category-grid {
    grid-template-columns: 1fr;
  }

  .available-category-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-items: center;
    min-height: 118px;
    padding: 8px 12px 8px 8px;
  }

  .available-category-card img {
    grid-row: 1 / 3;
    width: 112px;
    height: 100px;
  }

  .available-category-card span {
    align-self: end;
  }

  .available-category-card strong {
    align-self: start;
    font-size: 22px;
  }
}

/* Dushyant mobile QA pass: one type system, clear interaction states, and
   resilient product/cart layouts. */
:root {
  --font-body: "Aptos", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-label: "Trebuchet MS", Inter, ui-sans-serif, system-ui, sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.brand-tagline,
.collection-card h3,
.collection-carousel-slide h3,
.product-detail-copy h1,
.policy-card h2,
.rewards-perk-grid strong,
.rewards-rule-list strong {
  font-family: var(--font-display);
}

.hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.button,
.section-kicker,
.eyebrow,
.nav-links,
.utility-menu,
.collection-tabs,
.collection-toolbar,
.collection-panel-label,
.product-meta {
  font-family: var(--font-label);
}

.hero-stickers {
  gap: 14px;
  overflow: visible;
  padding: 0 7px 8px 0;
}

.collection-page,
.product-detail-page {
  position: relative;
  z-index: 4;
}

.collection-breadcrumb {
  position: relative;
  z-index: 5;
  isolation: isolate;
  pointer-events: auto;
}

.collection-breadcrumb a {
  position: relative;
  z-index: 1;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 4px 2px;
  pointer-events: auto;
  touch-action: manipulation;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.collection-meta {
  gap: 8px;
  color: rgba(24, 17, 15, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.collection-meta span,
.collection-meta span:nth-child(n) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font-size: inherit;
  line-height: 1.4;
  text-transform: none;
}

.collection-meta span:not(:last-child)::after {
  margin-left: 8px;
  color: var(--bando-pink);
  content: "•";
}

.rewards-perk-grid article:nth-child(4n + 1) {
  background: #fff3c9;
}

.rewards-perk-grid article:nth-child(4n + 2) {
  background: #dff6ff;
}

.rewards-perk-grid article:nth-child(4n + 3) {
  background: #ffe1ec;
}

.rewards-perk-grid article:nth-child(4n) {
  background: #eeffd0;
}

.rewards-perk-grid article {
  min-height: 132px;
  align-content: start;
  box-shadow: 5px 5px 0 rgba(24, 17, 15, 0.15);
}

.rewards-perk-grid span {
  border-width: 1.5px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: none;
}

.utility-menu-panel a:nth-child(n),
.utility-menu-panel button:nth-child(n) {
  color: var(--bando-ink);
}

.utility-menu-panel .utility-featured-link,
.utility-menu-panel .utility-featured-link:nth-child(n) {
  color: var(--bando-ink);
  background: var(--bando-yellow);
}

.utility-menu-panel .utility-featured-link::after {
  color: currentColor;
  content: ">";
}

.cart-panel {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.cart-items {
  min-height: 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cart-recommendations,
.cart-recommendations:not(:empty) {
  display: none;
}

.product-detail-thumbs {
  grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
}

.product-detail-thumbs[hidden],
.product-detail-thumbs:empty {
  display: none;
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .hero-stickers {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0 7px 8px 0;
  }

  .hero-stickers a {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-inline: 10px;
    box-shadow: 3px 3px 0 var(--bando-ink);
    font-size: 12px;
    text-align: center;
  }

  .collection-tabs {
    padding: 7px 7px 15px;
    overflow-y: visible;
  }

  .collection-breadcrumb {
    gap: 6px;
    font-size: 12px;
  }

  .rewards-perk-grid article {
    min-height: 120px;
  }
}

/* TITLI / TITLI for Men audience switch and catalog pass. */
.audience-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  background: #fffaf2;
  box-shadow: 3px 3px 0 var(--bando-ink);
}

.audience-switcher button {
  min-height: 34px;
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--bando-ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.audience-switcher button.active {
  color: var(--bando-paper);
  background: var(--bando-pink);
}

.audience-switcher button:focus-visible {
  outline: 3px solid var(--bando-yellow);
  outline-offset: 2px;
}

.audience-switcher .men-entry-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #17324d;
  background: #9edcff;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.audience-switcher .men-entry-link:focus-visible {
  outline: 3px solid var(--bando-yellow);
  outline-offset: 2px;
}

body[data-audience="men"] .hero {
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, #dff3ff 0 52%, #fff5df 52% 100%);
}

body[data-audience="men"] {
  --men-navy: #17324d;
  --men-blue: #9edcff;
  --men-cream: #fff6e3;
  background:
    radial-gradient(circle at 18px 18px, rgba(71, 139, 175, 0.08) 1.2px, transparent 1.8px) 0 0 / 30px 30px,
    linear-gradient(180deg, #eef9ff, #fff8e8 52%, #e5f5ff);
}

body[data-audience="men"] .site-header,
body[data-audience="men"] .site-header.scrolled {
  background: rgba(255, 248, 232, 0.97);
  border-bottom-color: var(--men-navy);
}

body[data-audience="men"] .audience-switcher {
  border-color: var(--men-navy);
  border-radius: 8px;
  background: var(--men-cream);
  box-shadow: 3px 3px 0 var(--men-navy);
}

body[data-audience="men"] .audience-switcher button {
  border-radius: 5px;
}

body[data-audience="men"] .audience-switcher button.active {
  color: #fff;
  background: var(--men-navy);
}

body[data-audience="men"] .brand,
body[data-audience="men"] .nav-links a,
body[data-audience="men"] .header-tools button {
  color: var(--men-navy);
}

body[data-audience="men"] .hero {
  border-bottom: 5px solid var(--men-navy);
}

body[data-audience="men"] .hero-copy::before {
  content: "THE MEN'S EDIT";
  border-radius: 3px;
  color: #fff;
  background: var(--men-navy);
  box-shadow: 4px 4px 0 rgba(23, 50, 77, 0.22);
  transform: rotate(-1deg);
}

body[data-audience="men"] .hero h1 {
  color: var(--men-navy);
  letter-spacing: 0.015em;
  text-shadow: 4px 4px 0 var(--men-blue);
}

.hero-audience-switcher {
  position: relative;
  width: fit-content;
  margin: 18px auto 16px;
  justify-content: center;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  transform: rotate(-1deg);
}

.hero-audience-switcher:active,
.hero-audience-switcher.is-swipe-tracking {
  cursor: grabbing;
}

.hero-audience-switcher::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -44px;
  width: 38px;
  height: 14px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(23, 50, 77, 0.42)) 100% 2px / 30px 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(86, 169, 211, 0.38)) 100% 7px / 22px 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(23, 50, 77, 0.28)) 100% 12px / 15px 1px no-repeat;
  opacity: 0;
  transform: translate(10px, -50%);
  animation: audience-air-drift-left 5.2s ease-in-out infinite;
}

.hero-audience-switcher.swipe-complete {
  transition: transform 180ms ease;
  transform: rotate(-1deg) scale(0.98);
}

@keyframes audience-air-drift-left {
  0%, 68% {
    opacity: 0;
    transform: translate(12px, -50%);
  }
  74% {
    opacity: 0.18;
  }
  88% {
    opacity: 0.46;
    transform: translate(-8px, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-18px, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-audience-switcher::after {
    animation: none;
  }
}

.hero-audience-switcher button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
  min-height: 46px;
  min-width: min(270px, calc(100vw - 44px));
  padding: 11px 24px;
  font-size: 13px;
}

.hero-audience-switcher .men-entry-link {
  position: relative;
  z-index: 1;
  min-width: min(270px, calc(100vw - 44px));
  min-height: 46px;
  padding: 11px 24px;
  border-radius: 999px;
  pointer-events: auto;
  touch-action: manipulation;
  font-size: 13px;
}

.hero-audience-switcher button[data-audience-mode="men"] {
  color: #17324d;
  background: #9edcff;
}

body[data-audience="men"] .hero-audience-switcher button[data-audience-mode="men"].active {
  color: #102b43;
  background: #8ed8ff;
}

body[data-audience="men"] .brand-tagline,
body[data-audience="men"] .hero-text,
body[data-audience="men"] .section-description {
  color: #294760;
}

body[data-audience="men"] .button {
  border-color: var(--men-navy);
  border-radius: 5px;
  box-shadow: 4px 4px 0 var(--men-navy);
}

body[data-audience="men"] .button.primary {
  color: #fff;
  background: var(--men-navy);
}

body[data-audience="men"] .button.secondary {
  color: var(--men-navy);
  background: var(--men-cream);
}

body[data-audience="men"] .opening-product-rail {
  background: #e8f6ff;
}

body[data-audience="men"] .opening-rail-copy {
  background: #fff7e5;
  border-color: var(--men-navy);
  border-radius: 4px;
  box-shadow: 6px 6px 0 rgba(23, 50, 77, 0.18);
}

body[data-audience="men"] .opening-rail-copy h2,
body[data-audience="men"] .available-categories-heading h2 {
  color: var(--men-navy);
  font-family: "Arial Black", var(--font-label);
  letter-spacing: -0.035em;
}

body[data-audience="men"] .opening-product-card {
  background: #fffaf0;
  border-color: var(--men-navy);
  border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(23, 50, 77, 0.2);
}

body[data-audience="men"] .opening-product-card:nth-child(even) {
  background: #f1faff;
}

body[data-audience="men"] .available-categories {
  background: #fff8e8;
  border-color: var(--men-navy);
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(23, 50, 77, 0.18);
}

body[data-audience="men"] .available-category-card {
  background: #edf8ff;
  border-color: var(--men-navy);
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(23, 50, 77, 0.2);
}

body[data-audience="men"] .available-category-card:nth-child(even) {
  background: #fffaf0;
}

body[data-audience="men"] .coming-soon-card {
  background: linear-gradient(135deg, #dff3ff, #fff5df);
}

body[data-audience="men"] .hero h1 {
  max-width: 8.5ch;
  font-size: clamp(68px, 8.6vw, 132px);
}

.section-description {
  max-width: 58ch;
  margin: 0;
  color: #5d4037;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.opening-rail-copy .section-description {
  margin: 10px 0 4px;
}

.available-categories-heading .section-description {
  grid-column: 1 / 2;
}

.available-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.available-category-card {
  grid-template-rows: 190px auto auto 1fr;
}

.available-category-card small {
  color: #5d4037;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.category-directory-page .available-categories {
  width: min(1220px, 100%);
}

.category-directory-page .available-categories + .available-categories {
  margin-top: clamp(28px, 4vw, 48px);
}

.category-directory-page .collection-help-band {
  max-width: 1220px;
}

.coming-soon-card {
  cursor: default;
  background:
    linear-gradient(135deg, rgba(223, 246, 255, 0.9), rgba(255, 243, 201, 0.92));
}

.opening-product-card.coming-soon-card {
  align-content: start;
  min-height: 330px;
}

.coming-soon-emoji,
.available-category-card .category-emoji {
  min-height: 190px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: rgba(255, 250, 243, 0.92);
  font-size: clamp(64px, 8vw, 104px);
  line-height: 1;
}

.opening-product-card .coming-soon-emoji {
  height: clamp(220px, 24vw, 300px);
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
    padding-inline: 18px;
  }

  .header-tools {
    gap: 8px;
  }

  .audience-switcher button {
    padding-inline: 8px;
    font-size: 10px;
  }

  .hero-audience-switcher button {
    min-height: 44px;
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .audience-switcher {
    box-shadow: 2px 2px 0 var(--bando-ink);
  }

  .audience-switcher button {
    min-height: 30px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .hero-audience-switcher button {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero-audience-switcher .men-entry-link {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .site-header .brand span {
    display: none;
  }

  body[data-audience="men"] .hero h1 {
    max-width: 9ch;
    font-size: clamp(54px, 16vw, 82px);
  }

  .available-categories-heading .section-description {
    grid-column: auto;
  }

  .available-category-card {
    grid-template-rows: auto auto 1fr;
  }

  .available-category-card img,
  .available-category-card .category-emoji {
    grid-row: 1 / 4;
  }

  .available-category-card small {
    align-self: start;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 7px;
    padding-inline: 10px;
  }

  .brand-symbol {
    width: 29px;
  }

  .header-tools {
    gap: 5px;
  }

  .utility-menu > summary {
    width: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
  }

  .utility-menu > summary > span:last-child {
    display: none;
  }

  .cart-button {
    width: 40px;
    height: 40px;
  }
}

.editorial-instagram {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(460px, 1fr) auto;
  overflow: hidden;
  border-right: 2px solid var(--bando-ink);
  color: var(--bando-ink);
  background: #fff;
}

.editorial-instagram-profile {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(24, 17, 15, 0.16);
}

.editorial-instagram-profile > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.editorial-instagram-profile strong,
.editorial-instagram-meta strong {
  font-size: 13px;
  font-weight: 750;
}

.editorial-instagram-profile small {
  color: #756962;
  font-size: 11px;
}

.editorial-instagram-profile b {
  margin-left: auto;
  letter-spacing: 2px;
}

.editorial-instagram-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7) border-box;
}

.editorial-instagram-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.editorial-instagram .editorial-image {
  min-height: 460px;
  border: 0;
  border-bottom: 1px solid rgba(24, 17, 15, 0.14);
}

.editorial-instagram-meta {
  padding: 9px 14px 14px;
}

.editorial-instagram-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
  font-size: 25px;
  line-height: 1;
}

.editorial-instagram-save {
  margin-left: auto;
}

.editorial-instagram-meta p {
  margin: 0 0 7px;
  color: #352b26;
  font-size: 13px;
  line-height: 1.45;
}

.editorial-instagram-meta > a {
  color: #7c6f68;
  font-size: 12px;
  font-weight: 700;
}

.contact-section-description {
  max-width: 54ch;
  margin: 20px 0 0;
  color: rgba(24, 17, 15, 0.76);
}

.contact-form input[type="file"] {
  padding: 8px;
  cursor: pointer;
}

.contact-form input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 9px 12px;
  border: 2px solid var(--bando-ink);
  border-radius: 5px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  font-weight: 800;
  cursor: pointer;
}

.contact-file-hint {
  color: rgba(24, 17, 15, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.collaboration-send-options {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--bando-ink);
  border-radius: 8px;
  color: var(--bando-ink);
  background: rgba(255, 225, 236, 0.72);
  box-shadow: 4px 4px 0 var(--bando-ink);
}

.collaboration-send-options[hidden] {
  display: none;
}

.collaboration-send-options p,
.collaboration-send-options small {
  margin: 0;
}

.collaboration-send-options p {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.collaboration-send-options small {
  color: rgba(24, 17, 15, 0.68);
  font-size: 11px;
  font-weight: 600;
}

.collaboration-send-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.collaboration-send-actions .button {
  width: 100%;
  text-align: center;
}

@media (max-width: 980px) {
  .editorial-instagram {
    border-right: 0;
    border-bottom: 2px solid var(--bando-ink);
  }

  .editorial-instagram .editorial-image {
    min-height: clamp(360px, 88vw, 520px);
    border-bottom: 1px solid rgba(24, 17, 15, 0.14);
  }
}

@media (max-width: 560px) {
  .collaboration-send-actions {
    grid-template-columns: 1fr;
  }
}

/* TITLI for Men — standalone coming-soon poster. */
.men-coming-soon-page {
  --men-poster-navy: #132f49;
  --men-poster-blue: #a9ddf5;
  --men-poster-cream: #fff4dc;
  --men-poster-red: #d64e48;
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--men-poster-navy);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px) 0 0 / 32px 32px,
    linear-gradient(135deg, var(--men-poster-blue) 0 52%, var(--men-poster-cream) 52% 100%);
}

.men-coming-soon-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(20px, 4vw, 46px);
  padding: clamp(18px, 3vw, 38px);
  overflow: hidden;
}

.men-coming-soon-shell::before,
.men-coming-soon-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.men-coming-soon-shell::before {
  width: min(48vw, 620px);
  aspect-ratio: 1;
  right: -12vw;
  top: -18vw;
  border: clamp(30px, 5vw, 76px) solid rgba(19, 47, 73, 0.08);
  border-radius: 50%;
}

.men-coming-soon-shell::after {
  left: 4vw;
  bottom: 10vh;
  width: 150px;
  height: 22px;
  background: var(--men-poster-red);
  box-shadow: 18px 18px 0 var(--men-poster-navy);
  transform: rotate(-8deg);
}

.men-poster-header,
.men-poster-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.men-mini-brand,
.men-back-link {
  color: inherit;
  text-decoration: none;
}

.men-mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.men-mini-mark {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  padding: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--men-poster-navy);
  box-shadow: 4px 4px 0 rgba(19, 47, 73, 0.2);
}

.men-edition-label {
  padding: 8px 12px;
  border: 2px solid var(--men-poster-navy);
  background: var(--men-poster-cream);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(1.5deg);
}

.men-poster {
  position: relative;
  width: min(960px, 100%);
  align-self: center;
  justify-self: center;
  padding: clamp(24px, 5vw, 64px);
  border: 3px solid var(--men-poster-navy);
  background:
    linear-gradient(rgba(19, 47, 73, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 47, 73, 0.045) 1px, transparent 1px),
    rgba(255, 244, 220, 0.92);
  background-size: 26px 26px;
  box-shadow: clamp(10px, 2vw, 22px) clamp(10px, 2vw, 22px) 0 var(--men-poster-navy);
}

.men-poster-number {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  top: clamp(12px, 2vw, 24px);
  color: rgba(19, 47, 73, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 118px);
  font-weight: 900;
  line-height: 0.8;
}

.men-poster-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  color: #fff;
  background: var(--men-poster-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.men-poster h1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  margin: 0;
  color: var(--men-poster-navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.78;
}

.men-poster h1 > span {
  font-size: clamp(78px, 16vw, 190px);
  letter-spacing: -0.075em;
  text-shadow: 7px 7px 0 var(--men-poster-blue);
}

.men-poster h1 > small {
  font-size: clamp(22px, 4vw, 48px);
  font-style: italic;
  letter-spacing: -0.04em;
}

.men-gta-statement {
  position: relative;
  z-index: 1;
  margin: clamp(28px, 5vw, 52px) 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.men-gta-statement span {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
}

.men-gta-statement strong {
  padding: 10px 14px 7px;
  color: var(--men-poster-cream);
  background: var(--men-poster-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-align: center;
  transform: rotate(-1deg);
}

.men-wait-statement {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  margin: clamp(28px, 4vw, 44px) 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-align: right;
}

.men-wait-statement em {
  color: var(--men-poster-red);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.men-women-line {
  white-space: nowrap;
}

.men-fine-print {
  margin-top: clamp(26px, 5vw, 54px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 2px solid var(--men-poster-navy);
  padding-top: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.men-orbit {
  position: absolute;
  border: 2px solid rgba(19, 47, 73, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.men-orbit-one {
  width: 260px;
  height: 120px;
  right: -110px;
  bottom: 26%;
  transform: rotate(-22deg);
}

.men-orbit-two {
  width: 190px;
  height: 90px;
  left: -90px;
  top: 42%;
  transform: rotate(18deg);
}

.men-poster-footer {
  font-size: 12px;
  font-weight: 800;
}

.men-poster-footer p {
  margin: 0;
  text-align: right;
}

.men-back-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 2px solid var(--men-poster-navy);
  color: var(--men-poster-cream);
  background: var(--men-poster-navy);
  box-shadow: 5px 5px 0 rgba(19, 47, 73, 0.22);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.men-back-link:hover,
.men-back-link:focus-visible {
  outline: 3px solid var(--men-poster-red);
  outline-offset: 3px;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(19, 47, 73, 0.28);
}

.men-moving-line {
  width: calc(100% + 76px);
  margin: 0 -38px -38px;
  display: flex;
  overflow: hidden;
  border-top: 2px solid var(--men-poster-navy);
  border-bottom: 2px solid var(--men-poster-navy);
  color: var(--men-poster-cream);
  background: var(--men-poster-navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 36px;
  white-space: nowrap;
}

.men-moving-line span {
  min-width: max-content;
  animation: menPosterTicker 16s linear infinite;
}

@keyframes menPosterTicker {
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 680px) {
  .men-coming-soon-shell {
    padding: 16px;
  }

  .men-coming-soon-shell::after {
    display: none;
  }

  .men-poster-header,
  .men-poster-footer {
    align-items: flex-start;
  }

  .men-edition-label {
    max-width: 160px;
    text-align: center;
  }

  .men-poster {
    padding: 24px 18px 28px;
    box-shadow: 9px 9px 0 var(--men-poster-navy);
  }

  .men-poster h1 {
    display: grid;
    gap: 8px;
  }

  .men-poster h1 > span {
    font-size: clamp(72px, 25vw, 108px);
  }

  .men-gta-statement {
    grid-template-columns: 1fr;
  }

  .men-gta-statement strong {
    width: fit-content;
  }

  .men-wait-statement {
    max-width: none;
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .men-poster-footer {
    display: grid;
    gap: 12px;
    padding-bottom: 4px;
  }

  .men-poster-footer p {
    text-align: left;
    font-size: 11px;
    line-height: 1.45;
  }

  .men-moving-line {
    width: calc(100% + 32px);
    margin: 4px -16px -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .men-moving-line span {
    animation: none;
  }
}
/* Storefront gift showcase */
.nav-featured-link {
  color: #8f263a !important;
  font-weight: 800;
}

.storefront-home .top-promo {
  background: linear-gradient(90deg, #7e1f32, #ad6438);
  color: #fff8ee;
}

.storefront-home .top-promo a {
  color: #fff8ee;
}

.storefront-home .hero {
  background:
    radial-gradient(circle at 16% 14%, rgba(195, 64, 67, 0.16), transparent 34%),
    radial-gradient(circle at 80% 72%, rgba(209, 148, 62, 0.2), transparent 38%),
    #fff7ea;
}

.storefront-home .hero-guide-panel {
  display: block;
}

.storefront-home .gift-hero-card {
  display: grid;
}

.storefront-home .gift-hero-visual,
.storefront-home .gift-hero-card {
  pointer-events: auto;
}

.homepage-build-box-section {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 6vw, 88px);
  border-top: 3px solid var(--bando-ink);
  border-bottom: 3px solid var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.045) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, #fff8dd, #ffe0ea 58%, #dff6ff);
}

.homepage-build-box-section .hero-guide-panel {
  width: min(900px, 100%);
  text-align: center;
}

.homepage-build-box-section .hero-guide-panel .section-kicker,
.homepage-build-box-section .hero-guide-panel h2 {
  margin-inline: auto;
}

.gift-hero-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(124, 61, 39, 0.18);
  border-radius: 34px;
  background: #211c19;
  box-shadow: 0 28px 74px rgba(99, 42, 35, 0.2);
  color: #fff8ee;
  text-decoration: none;
}

.gift-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(31, 19, 16, 0.88) 100%);
  pointer-events: none;
}

.gift-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gift-hero-card:hover img,
.gift-hero-card:focus-visible img {
  transform: scale(1.025);
}

.gift-hero-card span,
.gift-hero-card strong,
.gift-hero-card small {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 54px);
}

.gift-hero-card span {
  bottom: 118px;
  color: #f3c277;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gift-hero-card strong {
  bottom: 66px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.gift-hero-card small {
  bottom: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gift-showcase {
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(124, 61, 39, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 8%, rgba(243, 194, 119, 0.32), transparent 30%),
    linear-gradient(145deg, #261b19, #5e2030);
  box-shadow: 0 28px 74px rgba(99, 42, 35, 0.2);
  color: #fff8ee;
}

.gift-showcase-heading {
  display: grid;
  gap: 6px;
}

.gift-showcase-heading span {
  color: #f3c277;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gift-showcase-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.gift-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gift-showcase-grid a {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #fff8ee;
  text-decoration: none;
}

.gift-showcase-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(255, 248, 238, 0.72);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gift-showcase-grid a:hover img,
.gift-showcase-grid a:focus-visible img {
  transform: translateY(-3px);
  border-color: #f3c277;
}

.gift-showcase-grid small {
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.3;
}

.gift-showcase-cta {
  justify-self: start;
  padding: 11px 16px;
  border: 1px solid #f3c277;
  border-radius: 999px;
  background: #f3c277;
  color: #251817;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.storefront-home .opening-product-card img {
  background: #211d1a;
}

.free-delivery-promo {
  width: 100%;
  padding: clamp(12px, 2vw, 24px);
  overflow: hidden;
  background: #fff2dd;
  border-top: 4px solid #8d1027;
  border-bottom: 4px solid #8d1027;
}

.storefront-home main#top > .free-delivery-promo:first-child {
  margin-top: 118px;
}

.free-delivery-promo-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 2px solid rgba(141, 16, 39, 0.52);
  border-radius: clamp(14px, 2vw, 24px);
  box-shadow: 0 12px 28px rgba(81, 31, 16, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.free-delivery-promo-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}

.free-delivery-promo-copy {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(54%, 940px);
  display: grid;
  justify-items: center;
  gap: clamp(2px, 0.5vw, 9px);
  color: #651128;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  text-shadow: 0 1px 0 rgba(255, 249, 234, 0.9);
}

.free-delivery-promo-copy small {
  font-size: clamp(0.52rem, 1.25vw, 1.2rem);
  font-weight: 900;
  letter-spacing: clamp(0.08em, 0.3vw, 0.24em);
  line-height: 1;
}

.free-delivery-promo-copy > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 5.25vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
  white-space: nowrap;
}

.free-delivery-promo-copy > span {
  color: #2b1a14;
  font-size: clamp(0.58rem, 1.55vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.free-delivery-promo-copy > span b {
  color: #8d1027;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22em;
}

.free-delivery-promo-copy em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.65vw, 10px);
  min-height: clamp(20px, 3vw, 48px);
  padding: clamp(4px, 0.55vw, 9px) clamp(9px, 1.5vw, 24px);
  border: 1px solid rgba(101, 17, 40, 0.62);
  border-radius: 999px;
  color: #fffaf0;
  background: rgba(101, 17, 40, 0.94);
  box-shadow: 0 5px 12px rgba(74, 24, 22, 0.14);
  font-size: clamp(0.48rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.free-delivery-promo-copy em span {
  font-size: 1.2em;
}

/* Product images belong in galleries, never inside titles or action controls. */
.collection-card h3 a > img,
.product-card h3 a > img,
.collection-card-actions button img,
.collection-card-actions a.button img,
.product-card-actions button img,
.product-card-actions a.button img,
button[data-add-to-cart] img,
button[data-buy-now] img,
button[data-stock-request] img {
  display: none !important;
}

@media (max-width: 560px) {
  .collection-card-actions .button,
  .collection-card-actions button,
  .product-card-actions .button,
  .product-card-actions button {
    min-height: 44px;
    max-height: 64px;
    overflow: hidden;
  }
}

.free-delivery-promo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(81, 31, 16, 0.24);
}

.free-delivery-promo-link:focus-visible {
  outline: 4px solid #f0b33d;
  outline-offset: 4px;
}

.page-delivery-promo {
  margin-block: clamp(26px, 4vw, 58px);
}

.page-delivery-promo-start {
  margin-top: 0;
}

.page-delivery-promo-end {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .storefront-home main#top > .free-delivery-promo:first-child {
    margin-top: 110px;
  }

  .free-delivery-promo {
    padding: 10px;
    border-top-width: 3px;
    border-bottom-width: 3px;
  }

  .free-delivery-promo-link {
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(81, 31, 16, 0.18);
  }

  .free-delivery-promo-copy {
    width: 52%;
    gap: 3px;
  }

  .gift-hero-card img {
    min-height: 440px;
  }

  .gift-hero-card strong {
    font-size: 2.1rem;
  }

  .gift-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .gift-showcase-grid {
    gap: 8px;
  }

  .gift-showcase-grid img {
    border-radius: 13px;
  }

  .gift-showcase-grid small {
    font-size: 0.64rem;
  }
}

/* Swipeable TITLI Instagram story */
.editorial-carousel {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 17, 15, 0.14);
  background: #eadfd8;
}

.editorial-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y pinch-zoom;
}

.editorial-carousel-track::-webkit-scrollbar {
  display: none;
}

.editorial-carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: #eadfd8;
}

.editorial-nine-collage {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  color: inherit;
  background: #fffaf0;
}

.editorial-nine-collage figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #eadfd8;
}

.editorial-nine-collage-feature {
  grid-row: 1 / -1;
}

.editorial-nine-collage-reverse .editorial-nine-collage-feature {
  grid-column: 2;
}

.editorial-nine-collage-reverse figure:not(.editorial-nine-collage-feature) {
  grid-column: 1;
}

.editorial-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.editorial-nine-collage:hover img,
.editorial-nine-collage:focus-visible img {
  transform: scale(1.025);
}

.editorial-nine-collage:focus-visible {
  outline: 4px solid var(--bando-yellow);
  outline-offset: -6px;
}

.editorial-carousel-slide-product::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(25, 15, 16, 0.76));
}

.editorial-carousel-product-card {
  position: absolute;
  z-index: 2;
  left: clamp(14px, 3vw, 24px);
  right: clamp(14px, 3vw, 24px);
  bottom: 54px;
  display: grid;
  justify-items: start;
  gap: 7px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(20, 10, 12, 0.35);
}

.editorial-carousel-product-card > span {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-carousel-product-card > strong {
  max-width: 18ch;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 4.2vw, 42px);
  font-weight: 400;
  line-height: 0.98;
}

.editorial-carousel-product-card .button {
  min-height: 40px;
  margin-top: 3px;
  padding: 9px 14px;
  border-color: #fff;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  box-shadow: 3px 3px 0 #fff;
  text-shadow: none;
}

.editorial-carousel-offer-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.editorial-carousel-offer-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 7px 11px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: var(--bando-ink);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 3px 3px 0 var(--bando-coral);
  text-shadow: none;
}

.editorial-carousel-offer-price del {
  color: rgba(24, 17, 15, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.editorial-carousel-offer-price strong {
  color: var(--deep-maroon);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(25px, 4vw, 34px);
  line-height: 0.85;
}

.editorial-carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 14, 15, 0.5);
  box-shadow: 0 6px 22px rgba(20, 14, 15, 0.18);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.editorial-carousel-arrow:hover,
.editorial-carousel-arrow:focus-visible {
  color: var(--bando-ink);
  background: var(--bando-yellow);
}

.editorial-carousel-arrow-prev {
  left: 12px;
}

.editorial-carousel-arrow-next {
  right: 12px;
}

.editorial-carousel-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 6px 9px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(20, 14, 15, 0.48);
  backdrop-filter: blur(8px);
}

.editorial-carousel-dots button {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.editorial-carousel-dots button::before {
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
}

.editorial-carousel-dots button[aria-pressed="true"]::before {
  width: 23px;
  border-radius: 999px;
  background: #fff;
}

.editorial-carousel-count {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 14, 15, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

@media (max-width: 560px) {
  .editorial-carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .editorial-carousel-product-card {
    bottom: 50px;
  }

  .editorial-carousel-product-card > strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .editorial-carousel-offer-row {
    gap: 9px;
  }

  .editorial-carousel-offer-price {
    padding: 6px 9px;
  }

  .editorial-carousel-offer-price strong {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-carousel-track {
    scroll-behavior: auto;
  }

  .editorial-nine-collage img {
    transition: none;
  }
}

/* Shared, shoppable lifestyle stories used across the core shopping journey. */
.lifestyle-campaign {
  width: min(1320px, calc(100% - 32px));
  margin: clamp(54px, 8vw, 108px) auto 24px;
  padding: clamp(22px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(91, 42, 56, 0.13);
  border-radius: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 201, 70, 0.26), transparent 28%),
    linear-gradient(145deg, #fffaf0 0%, #f7eee3 56%, #eef6f2 100%);
}

.lifestyle-campaign-header {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: 8px clamp(24px, 5vw, 72px);
  margin-bottom: clamp(22px, 3vw, 38px);
}

.lifestyle-campaign-header p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--deep-maroon, #682738);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lifestyle-campaign-header h2 {
  margin: 0;
  color: var(--bando-ink, #25191b);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.lifestyle-campaign-header > span {
  max-width: 620px;
  color: rgba(37, 25, 27, 0.72);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.55;
}

.lifestyle-campaign-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}

.lifestyle-moment-card {
  position: relative;
  grid-column: span 4;
  min-height: clamp(390px, 43vw, 580px);
  overflow: hidden;
  border-radius: clamp(20px, 2.6vw, 34px);
  color: #fff;
  background: #2b2022;
  box-shadow: 0 20px 60px rgba(55, 31, 36, 0.15);
  isolation: isolate;
  touch-action: pan-y;
}

.lifestyle-campaign-home .lifestyle-moment-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
  min-height: clamp(620px, 70vw, 860px);
}

.lifestyle-campaign-home .lifestyle-moment-card:nth-child(2),
.lifestyle-campaign-home .lifestyle-moment-card:nth-child(3) {
  grid-column: span 5;
  min-height: clamp(295px, 34vw, 419px);
}

.lifestyle-campaign-home .lifestyle-moment-card:nth-child(4) {
  grid-column: 1 / -1;
  min-height: clamp(360px, 42vw, 520px);
}

.lifestyle-campaign-directory .lifestyle-moment-card {
  grid-column: span 6;
}

.lifestyle-campaign-collection .lifestyle-moment-card:first-child {
  grid-column: span 6;
}

.lifestyle-campaign-collection .lifestyle-moment-card:not(:first-child) {
  grid-column: span 3;
}

.lifestyle-campaign-product .lifestyle-moment-card {
  grid-column: span 6;
}

.lifestyle-moment-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.lifestyle-moment-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.lifestyle-moment-slide img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lifestyle-moment-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 14, 0.02) 0 52%, rgba(20, 12, 14, 0.18) 70%, rgba(20, 12, 14, 0.64) 100%);
}

.lifestyle-moment-product-peek {
  position: absolute;
  z-index: 1;
  top: 68px;
  right: 16px;
  width: clamp(78px, 8vw, 116px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: #fffaf2;
  box-shadow: 0 10px 26px rgba(20, 12, 14, 0.22);
  pointer-events: none;
}

.lifestyle-moment-product-peek img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.lifestyle-moment-card.is-product-first {
  color: #2b1d20;
  background: #fffaf2;
}

.lifestyle-moment-card.is-product-first .lifestyle-moment-shade {
  background: linear-gradient(180deg, transparent 55%, rgba(255, 250, 242, 0.2) 70%, rgba(255, 250, 242, 0.92) 100%);
}

.lifestyle-moment-card.is-product-first .lifestyle-moment-slide.is-lifestyle > img {
  padding: 48px 14px 132px;
  object-fit: contain;
  background: #fffaf2;
}

.lifestyle-moment-card.is-product-first .lifestyle-moment-location {
  border-color: rgba(63, 38, 43, 0.18);
  color: #5e2938;
  background: rgba(255, 250, 240, 0.9);
}

.lifestyle-moment-card.is-product-first .lifestyle-moment-product {
  color: #2b1d20;
}

.lifestyle-moment-card.is-product-first .lifestyle-moment-cta {
  color: #fff;
  background: #77293f;
}

.lifestyle-moment-product-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(255, 250, 240, 0.42) 82%, rgba(255, 250, 240, 0.76) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 42%);
}

.lifestyle-moment-location {
  position: absolute;
  top: 16px;
  left: 16px;
  max-width: calc(100% - 172px);
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(28, 18, 20, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.lifestyle-moment-slide.is-product {
  color: #2b1d20;
  background: #f6f1ea;
}

.lifestyle-moment-slide.is-product .lifestyle-moment-location {
  border-color: rgba(63, 38, 43, 0.18);
  color: #5e2938;
  background: rgba(255, 250, 240, 0.82);
}

.lifestyle-moment-slide.is-product .lifestyle-moment-copy {
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(75, 45, 51, 0.12);
  border-radius: clamp(16px, 2vw, 24px);
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 14px 38px rgba(55, 31, 36, 0.12);
  backdrop-filter: blur(8px);
}

.lifestyle-moment-copy {
  position: absolute;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  left: clamp(16px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 9px 16px;
}

.lifestyle-moment-product {
  grid-column: 1 / -1;
  max-width: 680px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(25px, 3.1vw, 48px);
  line-height: 1;
  text-wrap: balance;
}

.lifestyle-campaign-collection .lifestyle-moment-card:not(:first-child) .lifestyle-moment-product {
  font-size: clamp(21px, 2vw, 30px);
}

.lifestyle-moment-offer {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 9px;
}

.lifestyle-moment-offer del {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.lifestyle-moment-offer strong {
  color: #fff0a4;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1;
}

.lifestyle-moment-offer small {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: #77293f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lifestyle-moment-slide.is-product .lifestyle-moment-offer del {
  color: rgba(43, 29, 32, 0.56);
}

.lifestyle-moment-slide.is-product .lifestyle-moment-offer strong {
  color: #762b40;
}

.lifestyle-moment-cta {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  color: #271a1d;
  background: #fff4bc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lifestyle-moment-slide.is-product .lifestyle-moment-cta {
  color: #fff;
  background: #77293f;
}

.lifestyle-moment-controls {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  background: rgba(28, 18, 20, 0.46);
  box-shadow: 0 7px 22px rgba(20, 12, 14, 0.14);
  backdrop-filter: blur(10px);
}

.lifestyle-moment-controls > button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  font-size: 15px;
  cursor: pointer;
}

.lifestyle-moment-controls > button:hover,
.lifestyle-moment-controls > button:focus-visible {
  color: #271a1d;
  background: #fff4bc;
}

.lifestyle-moment-controls > span[data-lifestyle-count] {
  min-width: 32px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.lifestyle-moment-dots {
  display: flex;
  align-items: center;
  gap: 0;
}

.lifestyle-moment-dots button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lifestyle-moment-dots button::before {
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
}

.lifestyle-moment-dots button[aria-pressed="true"]::before {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

.lifestyle-moment-slide:hover img {
  transform: scale(1.025);
}

.lifestyle-moment-slide:focus-visible {
  outline: 4px solid var(--bando-yellow, #ffd34e);
  outline-offset: -5px;
}

@media (max-width: 860px) {
  .lifestyle-campaign-header {
    grid-template-columns: 1fr;
  }

  .lifestyle-campaign-header p {
    grid-column: auto;
  }

  .lifestyle-campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lifestyle-campaign .lifestyle-moment-card,
  .lifestyle-campaign-home .lifestyle-moment-card:nth-child(n),
  .lifestyle-campaign-directory .lifestyle-moment-card,
  .lifestyle-campaign-collection .lifestyle-moment-card:first-child,
  .lifestyle-campaign-collection .lifestyle-moment-card:not(:first-child),
  .lifestyle-campaign-product .lifestyle-moment-card {
    grid-column: auto;
    grid-row: auto;
    min-height: min(142vw, 600px);
  }

  .lifestyle-campaign-collection .lifestyle-moment-card:not(:first-child) .lifestyle-moment-product {
    font-size: clamp(25px, 7vw, 36px);
  }
}

@media (max-width: 520px) {
  .lifestyle-campaign {
    width: calc(100% - 20px);
    padding: 20px;
    border-radius: 26px;
  }

  .lifestyle-campaign-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-moment-copy {
    grid-template-columns: 1fr;
  }

  .lifestyle-moment-cta {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lifestyle-moment-track,
  .lifestyle-moment-slide img {
    transition: none;
  }
}


/* Secure checkout, Rewards redemption, and authenticated order tracking */
.checkout-rewards-box,
.orders-account-panel,
.tracking-lookup-card,
.order-tracking-number,
.order-referral-status,
.tracking-admin-form,
.tracking-history {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 5px 5px 0 var(--ink);
}

.checkout-rewards-box {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  padding: 18px;
}

.checkout-rewards-box p { margin: 4px 0 0; }
.checkout-rewards-box a { color: var(--pink); font-weight: 900; }
.checkout-redeem-option {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: var(--yellow);
  font-weight: 900;
}
.checkout-redeem-option select {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.orders-account-panel,
.tracking-lookup-card { max-width: 1180px; margin: 24px auto; padding: 24px; }
.tracking-lookup-card { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 24px; align-items: end; }
.tracking-lookup-entry { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.tracking-lookup-entry input { min-width: 0; }
.order-tracking-number { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin: 18px 0; padding: 16px; }
.order-tracking-number span { width: 100%; text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.order-tracking-number strong { font-size: 1.2rem; overflow-wrap: anywhere; }
.order-tracking-number a { color: var(--pink); font-weight: 900; }
.order-tracking-number.pending { box-shadow: none; border-style: dashed; }
.order-referral-status {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 16px;
  background: var(--yellow);
}
.order-referral-status span {
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.order-referral-status[data-status="rewarded"] { background: #dff7e7; }
.order-item-list li { display: inline-flex; align-items: center; gap: 8px; }
.order-price-breakdown,
.order-owner-customer {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.order-price-breakdown { display: grid; gap: 8px; }
.order-price-breakdown p { display: flex; justify-content: space-between; gap: 18px; margin: 0; }
.order-price-breakdown p:last-child { padding-top: 9px; border-top: 1px solid var(--line); font-size: 1.08rem; }
.order-owner-customer h3 { margin: 0 0 10px; }
.order-owner-customer p { margin: 6px 0; overflow-wrap: anywhere; }
.tracking-history { margin-top: 18px; padding: 14px 16px; }
.tracking-history summary { cursor: pointer; font-weight: 900; }
.tracking-history ol { display: grid; gap: 12px; margin: 14px 0 0; padding-left: 20px; }
.tracking-history li span { display: block; color: var(--muted); font-size: .84rem; }
.tracking-history li p { margin: 4px 0 0; }
.tracking-admin-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 20px; padding: 18px; background: var(--pink-soft); }
.tracking-admin-form .section-kicker,
.tracking-admin-form button,
.tracking-admin-form [role="status"] { grid-column: 1 / -1; }
.tracking-admin-form label { display: grid; gap: 7px; font-weight: 900; }
.tracking-admin-form textarea { resize: vertical; }
.orders-error { padding: 24px; text-align: center; }

@media (max-width: 700px) {
  .tracking-lookup-card,
  .tracking-admin-form { grid-template-columns: 1fr; }
  .tracking-lookup-entry { grid-template-columns: 1fr; }
  .tracking-admin-form .section-kicker,
  .tracking-admin-form button,
  .tracking-admin-form [role="status"] { grid-column: 1; }
  .order-tracking-number { align-items: flex-start; }
}

/* Owner launch dashboard */
.owner-dashboard {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 90px;
}
.owner-hero,
.owner-panel-heading,
.owner-access-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.owner-hero {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 100%);
}
.owner-hero h1 {
  max-width: 780px;
  margin: 8px 0 14px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .94;
}
.owner-hero p:not(.section-kicker) { max-width: 720px; color: var(--muted); }
.owner-access-card {
  margin: 24px 0;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.owner-access-card h2 { margin: 4px 0; }
.owner-live-pill,
.owner-stock-badge,
.owner-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #e3f8e8;
  color: #176a32;
}
.owner-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.owner-metrics article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.owner-metrics span { color: var(--muted); font-weight: 800; }
.owner-metrics strong { font-size: 2.25rem; }
.owner-panel {
  margin-top: 24px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}
.owner-panel-heading { margin-bottom: 24px; }
.owner-panel-heading h2 { margin: 5px 0; }
.owner-panel-heading p:not(.section-kicker) { max-width: 700px; color: var(--muted); }
.owner-panel-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.owner-table-wrap { overflow-x: auto; }
.owner-table { width: 100%; border-collapse: collapse; }
.owner-table th,
.owner-table td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; white-space: nowrap; }
.owner-table th { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.owner-table td strong,
.owner-table td small { display: block; }
.owner-table td small { margin-top: 4px; color: var(--muted); }
.owner-table .owner-order-archived { opacity: .68; }
.owner-table .owner-order-detail-row td {
  padding: 0 12px 14px;
  white-space: normal;
}
.owner-order-details {
  border-radius: 14px;
  background: #fff8f5;
}
.owner-order-details summary {
  padding: 12px 14px;
  color: var(--pink);
  cursor: pointer;
  font-weight: 900;
}
.owner-order-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr .8fr;
  gap: 18px;
  padding: 4px 14px 16px;
}
.owner-order-detail-grid h3 { margin: 0 0 9px; font-size: .95rem; }
.owner-order-detail-grid p { margin: 5px 0; }
.owner-order-items { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.owner-order-items li,
.owner-order-breakdown p { display: flex; justify-content: space-between; gap: 14px; }
.owner-order-items li span { min-width: 0; }

/* Release hardening: reliable touch targets and 320px-safe layout. */
:root {
  --promo-height: 44px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.top-promo {
  min-height: var(--promo-height);
}

.top-promo a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding-inline: 8px;
}

.hero-gift-motion .gift-float {
  min-width: 44px;
  min-height: 44px;
  scale: 1;
}

.hero-gift-motion .gift-float:hover,
.hero-gift-motion .gift-float:focus-visible {
  scale: 1.08;
}

.cart-drawer,
.cart-panel {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 681px) {
  .cart-panel {
    width: min(420px, 100%);
  }
}

@media (max-width: 680px) {
  .hero-gift-motion .gift-float,
  .hero-gift-motion .gift-float:hover,
  .hero-gift-motion .gift-float:focus-visible {
    scale: 1;
  }

  .checkout-page,
  .checkout-layout,
  .checkout-form-card,
  .checkout-summary-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
.owner-status[data-status="unpaid"],
.owner-status[data-status="cancelled"] { background: #fff0f0; color: #a02727; }
.owner-status[data-status="placed"],
.owner-status[data-status="packing"],
.owner-status[data-status="awaiting-payment"] { background: #fff4d7; color: #825700; }
.owner-stock-heading { align-items: end; }
.owner-stock-tools {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(240px, 340px);
  gap: 12px;
  align-items: end;
}
.owner-stock-search,
.owner-stock-category { display: grid; gap: 7px; font-weight: 900; }
.owner-stock-search input,
.owner-stock-category select,
.owner-quantity input,
.owner-stock-reason input {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.owner-stock-list { display: grid; gap: 12px; }
.owner-stock-row {
  display: grid;
  grid-template-columns: 62px minmax(190px, 1fr) auto auto 110px minmax(150px, 220px) auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.owner-stock-row img {
  width: 62px;
  height: 62px;
  border-radius: 13px;
  object-fit: cover;
  background: var(--pink-soft);
}
.owner-stock-product { display: grid; gap: 5px; }
.owner-stock-product small { color: var(--muted); }
.owner-stock-badge[data-tone="untracked"] { background: #eee; color: #555; }
.owner-stock-badge[data-tone="low"] { background: #fff4d7; color: #825700; }
.owner-stock-badge[data-tone="out"] { background: #fff0f0; color: #a02727; }
.owner-track-toggle { display: flex; align-items: center; gap: 8px; font-weight: 850; white-space: nowrap; }
.owner-track-toggle input { width: 20px; height: 20px; accent-color: var(--pink); }
.owner-quantity { display: grid; gap: 5px; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.owner-stock-reason { display: grid; gap: 5px; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.owner-stock-status { grid-column: 2 / -1; min-height: 1.2em; margin: -5px 0 0; color: var(--pink); font-weight: 850; }
.owner-stock-status span { display: block; margin-top: 4px; color: var(--muted); font-size: .82rem; }
.owner-backup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  max-width: 820px;
}
.owner-backup-passphrase { display: grid; gap: 7px; font-weight: 900; }
.owner-backup-passphrase input {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.owner-backup-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.owner-backup-status { min-height: 1.3em; margin: 18px 0 0; color: var(--pink); font-weight: 850; }
.owner-backup-warning {
  max-width: 820px;
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  color: #6c4d00;
  background: #fff4d7;
}
.owner-empty { padding: 28px; text-align: center; color: var(--muted); }
.button:disabled { cursor: not-allowed; opacity: .55; }

@media (max-width: 900px) {
  .owner-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owner-stock-row { grid-template-columns: 56px 1fr auto; }
  .owner-stock-row img { width: 56px; height: 56px; }
  .owner-stock-badge { justify-self: end; }
  .owner-track-toggle,
  .owner-quantity,
  .owner-stock-reason,
  .owner-stock-row .button { grid-column: span 1; }
  .owner-stock-status { grid-column: 1 / -1; }
  .owner-order-detail-grid { grid-template-columns: 1fr 1fr; }
  .owner-order-breakdown { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .owner-store-link { display: none; }
  .owner-hero,
  .owner-panel-heading,
  .owner-access-card { align-items: flex-start; flex-direction: column; }
  .owner-hero .button,
  .owner-access-card .button { width: 100%; }
  .owner-metrics { grid-template-columns: 1fr 1fr; }
  .owner-metrics article { padding: 16px; }
  .owner-metrics strong { font-size: 1.75rem; }
  .owner-stock-search { width: 100%; }
  .owner-stock-tools { width: 100%; grid-template-columns: 1fr; }
  .owner-stock-row { grid-template-columns: 52px 1fr; }
  .owner-stock-badge { grid-column: 2; justify-self: start; }
  .owner-track-toggle,
  .owner-quantity,
  .owner-stock-reason,
  .owner-stock-row .button { grid-column: 1 / -1; width: 100%; }
  .owner-stock-status { grid-column: 1 / -1; }
  .owner-backup-grid { grid-template-columns: 1fr; }
  .owner-backup-actions { grid-column: 1; }
  .owner-backup-actions .button { width: 100%; }
  .owner-order-detail-grid { grid-template-columns: 1fr; }
  .owner-order-breakdown { grid-column: auto; }
}

/* Homepage gift showcase: one message, one tidy product panel. */
.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  padding-top: calc(var(--promo-height) + var(--header-height) + 38px);
  padding-bottom: clamp(58px, 6vw, 84px);
}

.hero-copy {
  align-self: center;
  max-width: 540px;
}

.hero-audience-switcher {
  margin: 8px 0 10px;
  transform: none;
}

.hero .brand-tagline {
  max-width: 520px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1.02;
}

.hero .hero-text {
  max-width: 48ch;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1.05rem;
  line-height: 1.62;
}

.hero-stickers {
  margin-top: 6px;
  padding: 0 6px 6px 0;
}

.gift-showcase {
  align-self: center;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: clamp(20px, 2.5vw, 30px);
  border: 2px solid var(--bando-ink);
  border-radius: 24px;
  color: var(--bando-ink);
  background:
    linear-gradient(90deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, rgba(24, 17, 15, 0.035) 1px, transparent 1px) 0 0 / 22px 22px,
    #fffaf3;
  box-shadow: 10px 10px 0 #7f243a;
}

.gift-showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.gift-showcase-heading span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1.5px solid var(--bando-ink);
  border-radius: 999px;
  color: var(--bando-ink);
  background: var(--bando-yellow);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.gift-showcase-heading strong {
  max-width: 11ch;
  color: #651128;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  line-height: 0.98;
  text-align: right;
}

.gift-showcase-grid {
  gap: 14px;
}

.gift-showcase-grid a {
  gap: 10px;
  padding: 9px;
  border: 1.5px solid rgba(24, 17, 15, 0.38);
  border-radius: 15px;
  color: var(--bando-ink);
  background: #fff;
  box-shadow: 3px 3px 0 rgba(24, 17, 15, 0.14);
}

.gift-showcase-grid img {
  border: 0;
  border-radius: 10px;
}

.gift-showcase-grid small {
  min-height: 2.6em;
  color: var(--bando-ink);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.3;
}

.gift-showcase-cta {
  min-height: 44px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bando-ink);
  border-radius: 999px;
  color: #fffaf3;
  background: #7f243a;
  box-shadow: 3px 3px 0 var(--bando-ink);
}

.gift-showcase-cta:hover,
.gift-showcase-cta:focus-visible {
  color: var(--bando-ink);
  background: var(--bando-yellow);
  transform: translate(-1px, -1px);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 660px;
  }

  .gift-showcase {
    width: 100%;
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .hero {
    gap: 34px;
    padding-inline: 18px;
    padding-bottom: 50px;
  }

  .hero .brand-tagline {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero .hero-text {
    font-size: 1rem;
  }

  .gift-showcase {
    gap: 15px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 6px 6px 0 #7f243a;
  }

  .gift-showcase-heading {
    display: grid;
    justify-items: start;
    gap: 10px;
  }

  .gift-showcase-heading strong {
    max-width: none;
    font-size: 2rem;
    text-align: left;
  }

  .gift-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .gift-showcase-grid a {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
  }

  .gift-showcase-grid img {
    width: 88px;
  }

  .gift-showcase-grid small {
    min-height: 0;
    font-size: 0.88rem;
  }
}
