/* House Merch Storefront Styles */
/* Matches the booking portal design system */

:root {
  --bg-main: #f8f3ee;
  --bg-card: #ffffff;
  --white: #ffffff;
  --primary: #c8652d;
  --primary-dark: #9f3e1f;
  --primary-light: #e2725b;
  --text-dark: #1a1a1a;
  --text-muted: #6f6f6f;
  --text-light: #999999;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --transition: 0.2s ease;
  --max-width: 1200px;
}

/* Storefront palette: keep the customer-facing merch experience on the same
   warm, translucent admin design system. */
body.merch-page:not(.merch-admin-page) {
  --bg-main: #f7f1ea;
  --bg-card: #ffffff;
  --primary: #c8652d;
  --primary-dark: #9f3e1f;
  --primary-light: #e08a55;
  --text-dark: #1a1a1a;
  --text-muted: #6f6f6f;
  --text-light: #9a8f86;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(circle at top left, rgba(200, 101, 45, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f3ee 0%, #f6efe8 100%) !important;
}

body.merch-page:not(.merch-admin-page) .merch-main {
  background: transparent;
}

body.merch-page:not(.merch-admin-page) .merch-hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, #f8f3ee 0%, #f6efe8 100%);
}

body.merch-page:not(.merch-admin-page) .category-card,
body.merch-page:not(.merch-admin-page) .product-card,
body.merch-page:not(.merch-admin-page) .tracking-card,
body.merch-page:not(.merch-admin-page) .tracking-empty {
  border-color: var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(251, 247, 242, 0.92) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.merch-page:not(.merch-admin-page) .category-card:hover,
body.merch-page:not(.merch-admin-page) .product-card:hover {
  border-color: rgba(200, 101, 45, 0.24);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.11);
}

body.merch-page:not(.merch-admin-page) .product-card__image {
  background: linear-gradient(145deg, #fff 0%, #fbf6f1 100%);
}

/* The editorial hero is a black-backed render. Screen blending makes only
   the black backdrop disappear into the admin-style ivory canvas while the
   highlights, product colors, and 3D shading remain visible. */
body.merch-page:not(.merch-admin-page) .merch-hero__art::after {
  position: absolute;
  right: 6%;
  bottom: 5%;
  left: 8%;
  z-index: 0;
  height: 13%;
  content: '';
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(60, 39, 27, 0.22) 0%, rgba(60, 39, 27, 0.09) 42%, transparent 76%);
  filter: blur(14px);
  pointer-events: none;
}

body.merch-page:not(.merch-admin-page) .merch-hero__image--composition {
  z-index: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 22px rgba(60, 39, 27, 0.18));
}

body.merch-page:not(.merch-admin-page) .merch-hero__image--composition:hover {
  filter: drop-shadow(0 24px 28px rgba(60, 39, 27, 0.24));
}

*, *::before, *::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.merch-page::before,
body.merch-page::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body.is-account-drawer-open,
body.is-checkout-modal-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ─── Header (inherited from /booking/styles.css) ─── */

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: #d2602d;
  color: var(--white);
}

.btn-secondary:hover {
  background: #c24e2f;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

/* Keep cart coupon controls comfortably separated without changing their styling. */
.cart-coupon {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.cart-coupon__field {
  display: grid;
  gap: 8px;
}

.cart-coupon__preview {
  margin-top: 0;
}

.cart-available-coupons {
  display: grid;
  gap: 8px;
}

.cart-available-coupons__title {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-available-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 9px 10px;
  border: 1px dashed rgba(191, 86, 48, .45);
  border-radius: 8px;
  background: #fffaf7;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.cart-available-coupon:hover,
.cart-available-coupon.is-selected {
  border-style: solid;
  background: rgba(191, 86, 48, .08);
}

.cart-available-coupon span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cart-available-coupon strong {
  color: var(--primary-dark);
  font-size: 12px;
}

.cart-available-coupon small {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-available-coupon b {
  flex: 0 0 auto;
  color: #28734a;
  font-size: 11px;
}

.cart-drawer__footer > #checkoutBtn {
  margin-top: 14px;
}

.storefront-header__right {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.header-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #34241d;
  cursor: pointer;
}

.header-icon-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--hero-rust, #b5551f);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.merch-auth-row {
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  pointer-events: auto;
  width: auto;
}

.merch-auth-row .storefront-header__cta {
  margin-left: 0;
  
}

/* Keep the merch hero and navbar visually continuous. */
.merch-page .storefront-header {
  box-shadow: none;
}

body.is-auth-loading .merch-auth-cta {
  visibility: hidden;
}

.merch-auth-cta .header-book-now-btn {
  white-space: nowrap;
}

.merch-account-btn {
  min-width: min(320px, 100%);
  max-width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.merch-account-btn .profile-avatar {
  flex: 0 0 auto;
}

.merch-account-btn .profile-meta {
  min-width: 0;
}

.merch-account-btn .profile-meta span {
  display: block;
  overflow: hidden;
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.42);
  backdrop-filter: blur(2px);
  z-index: 1680;
}

.account-drawer-overlay[hidden] {
  display: none !important;
}

.account-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(570px, 100vw);
  height: 100dvh;
  z-index: 1700;
  transform: translateX(100%);
  transition: transform 0.32s ease;
  will-change: transform;
}

.account-drawer[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.account-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.account-drawer--influencer { width: 100vw; }
.account-drawer--influencer .account-drawer__shell { border-left: 0; }
.account-drawer--influencer .account-drawer__content { width: min(1400px, 100%); margin: 0 auto; }

.account-drawer__shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.1);
}

.account-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 27px 30px 27px;
  border-bottom: 1px solid #e9e4df;
}

.account-drawer__eyebrow,
.account-section__eyebrow,
.account-card__eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.account-drawer__header h2,
.account-section h4,
.account-card__summary h3 {
  margin: 0;
  color: var(--text-dark);
}

.account-drawer__header h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.drawer-close-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #e3dfdb;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.drawer-close-btn:hover {
  background: #fbf7f4;
  color: var(--text-dark);
}

.account-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px 30px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.account-panel-nav {
  display: grid;
  gap: 0;
  padding: 13px 12px;
  border: 1px solid #e7ded7;
  border-radius: 16px;
  background: #faf6f2;
  box-shadow: 0 2px 10px rgba(33, 24, 18, 0.04);
}

.account-panel-nav button {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.account-panel-nav button:hover,
.account-panel-nav button:focus-visible,
.account-panel-nav button[aria-current="page"] {
  background: var(--white);
  color: var(--primary);
  outline: none;
}

.account-panel-nav__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: currentColor;
}

.account-panel-nav button span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.account-panel-nav__logout {
  display: none !important;
}

.account-section--coupon-history,
.account-section--extra {
  display: none !important;
}

.influencer-dashboard-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.account-drawer--influencer .account-panel-nav__logout {
  display: flex !important;
}

.influencer-month-select {
  display: grid;
  gap: 4px;
  min-width: 128px;
}

.influencer-month-select span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.influencer-month-select select {
  min-width: 128px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-size: 12px;
  padding: 8px 10px;
}

.account-card,
.account-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.account-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.account-card__avatar.profile-avatar {
  width: 56px;
  height: 56px;
}

.account-card__summary {
  min-width: 0;
}

.account-card__summary h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.account-card__title-row,
.account-section__actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.account-card__title-row {
  margin-bottom: 10px;
}

.account-action-btn {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 9px 14px;
  font-size: 10px;
  white-space: nowrap;
}

.account-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.account-meta-list li {
  display: grid;
  gap: 2px;
}

.account-meta-list li span,
.account-list__item p,
.account-card__note,
.account-empty-state span {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

.account-meta-list li strong,
.account-list__item strong {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
}

.account-card__note {
  margin-top: 10px;
}

.account-success-message {
  margin: 10px 0 0;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-form--address {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-field {
  display: grid;
  gap: 6px;
}

.account-field--wide {
  grid-column: 1 / -1;
}

.account-field span,
.account-check span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-field input,
.account-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-size: 14px;
  padding: 10px 11px;
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.account-field input:focus,
.account-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 101, 45, 0.12);
}

.account-field input[readonly] {
  background: #faf7f3;
  color: var(--text-muted);
}

.account-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-check input {
  accent-color: var(--primary);
}

.account-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-section {
  padding: 18px;
}

.account-section--orders {
  padding: 20px 12px 18px;
  border-color: #e7ded7;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(33, 24, 18, 0.055);
}

.account-section--orders .account-section__eyebrow {
  color: #df4b1b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.account-section--orders .account-section__head {
  margin-bottom: 18px;
  padding: 0 10px;
}

.account-section--orders .account-section__head h4 {
  color: #111111;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.account-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.account-section__head h4 {
  font-size: 16px;
}

.account-section__count {
  flex: 0 0 auto;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(200, 101, 45, 0.1);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.account-section--orders .account-section__count {
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  background: #fdeee7;
  color: #df4b1b;
  font-size: 14px;
  line-height: 1;
}

.account-order-filter {
  display: grid;
  grid-template-columns: minmax(0, 149px) minmax(0, 149px) auto;
  align-items: end;
  gap: 13px;
  margin: -2px 0 20px;
  padding: 18px;
  border-radius: 8px;
  background: #fbf7f4;
  border: 1px solid #eadfd8;
}

.account-order-filter .account-field span {
  color: #686868;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.account-order-filter .account-field input {
  height: 48px;
  border-color: #e5ddd6;
  border-radius: 8px;
  color: #686868;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 12px;
}

.account-order-filter__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-order-filter__actions .account-action-btn {
  min-height: 48px;
  width: 68px;
  padding: 13px 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #df5525 0%, #c83c14 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.account-order-filter__clear {
  border: 0;
  background: transparent;
  color: #df4b1b;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 14px 0;
  cursor: pointer;
  transition: color var(--transition);
}

.account-order-filter__clear:hover,
.account-order-filter__clear:focus-visible {
  color: var(--primary-dark);
}

.account-order-filter__message,
.account-order-filter__summary {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
}

.account-list {
  display: grid;
  gap: 10px;
}

.account-order-list {
  gap: 18px;
}

.account-list__item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 6px;
}
.account-list__item {
    grid-template-columns: 64px 1fr;
    align-items: center;
    }
#account-wishlist .account-list__item {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}
#account-addresses .account-list__item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}
.account-list__image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    grid-row: 1 / span 2;
}
.account-order-card {
  padding: 17px 16px 17px;
  gap: 6px;
  border: 1px solid #eadfd8;
  border-radius: 8px;
  background: #fbf7f4;
  box-shadow: 0 2px 10px rgba(33, 24, 18, 0.04);
  grid-template-columns: 1fr;
  align-items: stretch;
  min-width: 0;
}

.account-order-card > .account-list__row > strong {
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.account-order-card > p {
  color: #727272;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

.account-order-meta-dot {
  color: #8a8a8a;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  margin: 0 5px;
  transform: translateY(-1px);
}

.account-list__item p {
  line-height: 1.45;
}

.account-order-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(200, 101, 45, 0.08);
}

.account-order-coupon span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.account-order-coupon strong {
  color: var(--primary-dark);
  font-size: 12px;
}

.account-list__item span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.account-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.account-item-actions--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
  align-items: stretch;
  width: 100%;
}

.account-item-actions--inline button {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  text-align: center;
  justify-content: center;
  white-space: normal;
  line-height: 1.2;
}

.account-order-actions {
  gap: 12px 14px;
  padding-top: 12px;
}

.account-item-actions button {
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  transition: color var(--transition);
}

.account-item-actions button:hover {
  color: var(--primary);
}

.account-item-actions.account-order-actions button {
  position: relative;
  min-height:  48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ee6338;
  border-radius: 6px;
  background: #fffdfb;
  color: #df4b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.account-order-action__icon {
  position: static;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  transform: none;
  stroke: currentColor;
}

.account-item-actions.account-order-actions button span {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-align: center;
  text-transform: inherit;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.account-item-actions.account-order-actions button:hover,
.account-item-actions.account-order-actions button:focus-visible {
  border-color: #df4b1b;
  background: #fff7f2;
  color: #c83c14;
  outline: none;
}

.account-item-actions.account-order-actions button:focus-visible {
  box-shadow: 0 0 0 3px rgba(223, 75, 27, 0.18);
}

.account-item-actions.account-order-actions button:disabled,
.account-item-actions.account-order-actions button[aria-disabled="true"] {
  border-color: #efc5b6;
  background: #f8f1ed;
  color: #bd8d7d;
  cursor: not-allowed;
  opacity: 0.72;
}

.account-list__item--stacked .account-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-list__item--stacked .account-list__row span {
  flex: 0 0 auto;
}

.account-empty-state {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
}

.account-empty-state p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.account-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(200, 101, 45, 0.06);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-badge--live {
  background: rgba(29, 103, 74, 0.12);
  color: #1d674a;
}

.account-badge--muted {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
}

.account-section--influencer {
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
}

.influencer-coupon-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px 18px;
  margin: 16px 0 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(200, 101, 45, 0.08), rgba(255, 248, 241, 0.96));
  border: 1px solid rgba(200, 101, 45, 0.12);
}

.influencer-coupon-hero--unavailable {
  filter: grayscale(1);
  opacity: 0.62;
  background: #f1f1f1;
  border-color: #d7d7d7;
}

.influencer-coupon-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.influencer-coupon-hero__copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.influencer-coupon-hero__copy h4 {
  margin: 0;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.influencer-coupon-hero__copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.influencer-coupon-hero__meta {
  display: none;
}

.influencer-coupon-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.influencer-coupon-hero__stat {
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 4px;
}

.influencer-coupon-hero__stat small {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.influencer-coupon-hero__stat strong {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.2;
  word-break: break-word;
}

.influencer-coupon-hero__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.influencer-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 16px;
}

.influencer-kpi {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(200, 101, 45, 0.06), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 6px;
}

.influencer-kpi p,
.influencer-kpi span {
  margin: 0;
}

.influencer-kpi p {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.influencer-kpi strong {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.15;
}

.influencer-kpi span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.influencer-grid {
  display: grid;
  gap: 12px;
}

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

.influencer-panel {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.influencer-chart {
  display: grid;
  gap: 10px;
}

.influencer-chart__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.influencer-chart__label,
.influencer-chart__value {
  font-size: 12px;
  color: var(--text-muted);
}

.influencer-chart__value {
  color: var(--text-dark);
  white-space: nowrap;
}

.influencer-chart__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.influencer-chart__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200, 101, 45, 0.75), rgba(200, 101, 45, 0.95));
}

.influencer-insight-list {
  margin-bottom: 12px;
}

.influencer-mini-list {
  display: grid;
  gap: 8px;
}

.influencer-mini-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.influencer-mini-list__item strong,
.influencer-mini-list__item span {
  font-size: 12px;
  color: var(--text-dark);
}

.influencer-coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.influencer-coupon-card {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 10px;
}

.influencer-coupon-card--unavailable {
  filter: grayscale(1);
  opacity: 0.58;
  background: #f1f1f1;
  border-color: #d7d7d7;
}

.influencer-coupon-card--unavailable .influencer-coupon-card__meta span {
  background: rgba(0, 0, 0, 0.06);
  color: #777;
}

.influencer-coupon-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.influencer-coupon-card__head strong {
  display: block;
  color: var(--text-dark);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.influencer-coupon-card__head span {
  color: var(--text-muted);
  font-size: 12px;
}

.influencer-coupon-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.influencer-coupon-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.influencer-coupon-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(200, 101, 45, 0.08);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
}

.influencer-details {
  padding: 0;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.influencer-details > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.influencer-details > summary::-webkit-details-marker {
  display: none;
}

.influencer-details > summary small {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.influencer-details > *:not(summary) {
  padding: 0 18px 18px;
}

.influencer-toolbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
}

.influencer-toolbar .account-field span {
  font-size: 9px;
}

.influencer-toolbar input,
.influencer-toolbar select,
.influencer-profile-form input,
.influencer-profile-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-size: 14px;
  padding: 10px 11px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.influencer-toolbar input:focus,
.influencer-toolbar select:focus,
.influencer-profile-form input:focus,
.influencer-profile-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 101, 45, 0.12);
}

.influencer-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
}

.influencer-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.influencer-table th,
.influencer-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.influencer-table th {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.influencer-table td {
  color: var(--text-dark);
}

.influencer-table--compact {
  min-width: 680px;
}

.influencer-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.influencer-pagination span {
  color: var(--text-muted);
  font-size: 12px;
}

.influencer-pagination > div {
  display: flex;
  gap: 8px;
}

.influencer-commission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.influencer-commission-card {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 6px;
}

.influencer-commission-card span {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.influencer-commission-card strong {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.25;
  word-break: break-word;
}

.influencer-notifications {
  display: grid;
  gap: 10px;
}

.influencer-notification {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 4px;
}

.influencer-notification strong {
  color: var(--text-dark);
  font-size: 13px;
}

.influencer-notification p,
.influencer-notification span {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.account-logout-btn {
  margin-top: 2px;
}

.merch-flow-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 15, 15, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.merch-flow-modal[hidden] {
  display: none !important;
}

.merch-flow-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.merch-flow-modal__panel {
  width: min(560px, 100%);
  max-height: min(780px, calc(100dvh - 48px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.merch-flow-modal__header,
.merch-flow-modal__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
}

.merch-flow-modal__header {
  border-bottom: 1px solid var(--border);
}

.merch-flow-modal__footer {
  border-top: 1px solid var(--border);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.merch-flow-modal__eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.merch-flow-modal__header h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.2;
}

.merch-flow-modal__body {
  overflow-y: auto;
  padding: 18px 20px;
}

.checkout-profile-summary {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 14px;
}

.checkout-profile-summary p,
.checkout-profile-summary span,
.checkout-address-card small,
.merch-flow-notice p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.checkout-profile-summary strong {
  display: block;
  color: var(--text-dark);
  font-size: 15px;
  margin: 2px 0;
}

.checkout-address-list {
  display: grid;
  gap: 10px;
}

.checkout-address-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #faf7f3;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.checkout-address-card.is-selected {
  border-color: var(--primary);
  background: rgba(200, 101, 45, 0.07);
  box-shadow: 0 0 0 3px rgba(200, 101, 45, 0.1);
}

.checkout-address-card input {
  margin-top: 3px;
  accent-color: var(--primary);
}

.checkout-address-card strong,
.checkout-address-card small {
  display: block;
}

.checkout-address-card strong {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.checkout-address-card em {
  align-self: start;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-address-form {
  margin: 0;
}

.merch-flow-notice {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #faf7f3;
  border: 1px dashed rgba(0, 0, 0, 0.08);
}

.merch-flow-notice--error {
  border-color: rgba(159, 62, 31, 0.24);
  background: rgba(200, 101, 45, 0.07);
}

.text-accent {
  color: var(--primary);
}

/* ─── Section Title ─── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

/* ─── Categories ─── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  padding: 0;
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.category-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0ebe5;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.category-card__title {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 16px 4px;
}

.category-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 16px 16px;
}

/* ─── Shop Section ─── */
.merch-shop { padding-bottom: 64px; }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.shop-controls {
  display: flex;
  gap: 12px;
}

.shop-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236f6f6f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.shop-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ─── Smart Merch Sidebar ─── */
.merch-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(270px, 1fr);
  gap: 24px;
  align-items: start;
}

.merch-product-column {
  min-width: 0;
}

.smart-merch-sidebar {
  --smart-merch-accent: #AE5431;
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
  min-width: 0;
}

.smart-merch-sidebar__section {
  padding: 20px;
  border: 1px solid rgba(174, 84, 49, 0.1);
  border-radius: 20px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 12px 30px rgba(96, 62, 34, 0.07);
}

.smart-merch-sidebar__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.smart-merch-sidebar__heading h3,
.smart-merch-offer h3 {
  margin: 0;
  color: #33231c;
  font-size: 1.02rem;
  line-height: 1.25;
}

.smart-merch-sidebar__view-all,
.smart-merch-sidebar__text-cta {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--smart-merch-accent);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.smart-merch-sidebar__view-all:hover,
.smart-merch-sidebar__text-cta:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.smart-merch-product-list {
  display: grid;
  gap: 12px;
}

.smart-merch-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.smart-merch-product img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  background: #f5eee8;
}

.smart-merch-product__info {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.smart-merch-product__info strong {
  overflow: hidden;
  color: #3c2a21;
  font-size: 0.78rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-merch-product__hype {
  color: #AE5431;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.smart-merch-product__rating {
  color: var(--smart-merch-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.smart-merch-product__price {
  color: #5e4639;
  font-size: 0.78rem;
  font-weight: 700;
}

.smart-merch-product:hover strong,
.smart-merch-product:focus-visible strong {
  color: var(--smart-merch-accent);
}

.smart-merch-product:focus-visible,
.smart-merch-sidebar button:focus-visible {
  outline: 2px solid rgba(174, 84, 49, 0.48);
  outline-offset: 3px;
  border-radius: 8px;
}

.smart-merch-bundle {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.smart-merch-bundle-list {
  display: grid;
  gap: 14px;
}

.smart-merch-bundle__items {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  margin-bottom: 4px;
}

.smart-merch-bundle__items img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  background: #f5eee8;
}

.smart-merch-bundle__plus {
  color: var(--smart-merch-accent);
  font-size: 1.25rem;
  font-weight: 500;
}

.smart-merch-bundle > strong {
  color: #3c2a21;
  font-size: 0.85rem;
}

.smart-merch-bundle__savings {
  color: var(--smart-merch-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.smart-merch-bundle__price {
  font-size: 1rem !important;
}

.smart-merch-sidebar__cta {
  width: 100%;
  margin-top: 5px;
  min-height: 40px;
  border-radius: 10px;
  background: var(--smart-merch-accent);
}

.smart-merch-sidebar__cta:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.cart-total-row--discount span:last-child {
  color: #ae5431;
}

.cart-total-row--payable {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(60, 42, 33, 0.12);
}

.smart-merch-offer {
  display: grid;
  gap: 7px;
}

.smart-merch-offer__eyebrow {
  margin: 0;
  color: var(--smart-merch-accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.smart-merch-offer p:not(.smart-merch-offer__eyebrow) {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.smart-merch-sidebar__text-cta {
  justify-self: start;
  margin-top: 2px;
}

.smart-merch-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-merch-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5e4639;
  font-size: 0.8rem;
  line-height: 1.35;
}

.smart-merch-benefits li span {
  color: var(--smart-merch-accent);
  font-weight: 800;
}

/* ─── Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f0eb;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

/* Shopify-style Checkout */
.shopify-checkout {
  width: 100%;
  padding: 32px 28px 30px;
  background: rgba(250, 247, 243, 0.72);
}

.shopify-checkout__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr);
  gap: 48px;
  align-items: start;
}

.shopify-checkout-form {
  min-width: 0;
}

.shopify-section {
  margin: 0 0 22px;
}

.shopify-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.shopify-section h1,
.shopify-section h2,
.shopify-summary h2 {
  margin: 0;
  color: #111;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.shopify-section__head p {
  margin: 0;
  color: #84817f;
  font-size: 14px;
  line-height: 1.4;
}

.shopify-section__head a {
  color: #b94b24;
  text-decoration: none;
  font-weight: 600;
}

.shopify-field-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.shopify-field {
  position: relative;
  display: block;
  grid-column: span 3;
  min-width: 0;
}

.shopify-field--wide {
  grid-column: 1 / -1;
}

.checkout-phone-control {
  display: grid;
  grid-template-columns: minmax(148px, 0.38fr) minmax(0, 1fr);
  gap: 8px;
}

.checkout-phone-control select,
.checkout-phone-control input {
  min-width: 0;
}

.checkout-phone-control select {
  padding-right: 34px;
}

.shopify-field-grid .shopify-field:nth-last-of-type(3),
.shopify-field-grid .shopify-field:nth-last-of-type(2),
.shopify-field-grid .shopify-field:nth-last-of-type(1):not(.shopify-field--wide) {
  grid-column: span 2;
}

.shopify-field span:first-child {
  position: absolute;
  left: 17px;
  top: 7px;
  z-index: 1;
  color: #5e5b59;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.shopify-field input,
.shopify-field select {
  width: 100%;
  height: 56px;
  padding: 22px 46px 9px 17px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #141414;
  font: 500 14px/1 var(--font-body);
  outline: none;
  box-shadow: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.shopify-field input::placeholder {
  color: #8f8d8b;
  font-weight: 400;
}

.shopify-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 22px) 31px, calc(100% - 16px) 31px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.shopify-field input:focus,
.shopify-field select:focus,
.shopify-coupon__field:focus-within,
.shopify-payment-option:focus-within {
  border-color: rgba(185, 75, 36, 0.72);
  box-shadow: 0 0 0 3px rgba(185, 75, 36, 0.12);
  background: #fff;
}

.shopify-field.has-error input,
.shopify-field.has-error select {
  border-color: #b42318;
}

.checkout-field-error {
  display: block;
  margin: 5px 0 0;
  color: #b42318 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.shopify-field__icon {
  position: absolute !important;
  right: 16px;
  top: 18px !important;
  left: auto !important;
  width: 20px;
  height: 20px;
  color: #4d4b49;
}

.shopify-field__icon svg,
.shopify-shipping-box svg,
.shopify-pay-button svg,
.shopify-coupon svg,
.shopify-trust svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shopify-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
}

.shopify-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #b94b24;
}

.shopify-shipping-box,
.shopify-payment-option {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(242, 239, 236, 0.78);
}

.shopify-shipping-box span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border: 1px solid #b94b24;
  border-radius: 50%;
  color: #b94b24;
}

.shopify-shipping-box span svg {
  width: 19px;
  height: 19px;
}

.shopify-shipping-box p {
  margin: 0;
  color: #686462;
  font-size: 14px;
  line-height: 1.35;
}

.shopify-payment-option {
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
}

.shopify-payment-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #b94b24;
}

.shopify-payment-option span {
  margin-right: auto;
  color: #111;
  font-size: 14px;
  font-weight: 600;
}

.shopify-payment-option strong {
  color: #173153;
  font-size: 15px;
  font-style: italic;
  font-weight: 800;
}

.shopify-pay-button {
  width: 100%;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #c9572b 0%, #b84620 100%);
  color: #fff;
  font: 800 14px/1 var(--font-mono);
  letter-spacing: 0.04em;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.shopify-pay-button:hover {
  background: linear-gradient(180deg, #b94b24 0%, #9f3e1f 100%);
}

.shopify-pay-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.shopify-pay-button svg {
  width: 20px;
  height: 20px;
}

.shopify-summary {
  position: sticky;
  top: 100px;
  min-width: 0;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(80, 42, 24, 0.08);
}

.shopify-summary h2 {
  margin-bottom: 30px;
}

.shopify-summary-products {
  display: grid;
  gap: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.shopify-summary-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.shopify-summary-product__image {
  position: relative;
  width: 96px;
  height: 96px;
}

.shopify-summary-product__image img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #eee8e1;
}

.shopify-summary-product__image span {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b94b24;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.shopify-summary-product__copy {
  min-width: 0;
}

.shopify-summary-product__copy strong {
  display: block;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shopify-summary-product__copy small {
  display: block;
  margin-top: 3px;
  color: #6e6a67;
  font-size: 14px;
  line-height: 1.3;
}

.shopify-summary-product__price {
  align-self: center;
  color: #111;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.shopify-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.shopify-coupon__field {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.shopify-coupon__field span {
  width: 20px;
  height: 20px;
  color: #696765;
}

.shopify-coupon__field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: 500 14px/1 var(--font-body);
}

.shopify-coupon__field input::placeholder {
  color: #8b8784;
}

.shopify-coupon__apply {
  height: 48px;
  border: 1px solid #bf5630;
  border-radius: 8px;
  background: transparent;
  color: #9f3e1f;
  font: 800 13px/1 var(--font-mono);
  letter-spacing: 0.06em;
}

.shopify-coupon__apply:disabled {
  opacity: 0.6;
}

.shopify-coupon__message {
  grid-column: 1 / -1;
  margin-top: -6px;
  color: #356b36;
  font-size: 13px;
}

.shopify-coupon__message.is-error {
  color: #b42318;
}

.checkout-coupon-offers {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.checkout-coupon-offers__title {
  margin: 0 0 2px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.checkout-coupon-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 13px;
  border: 1px dashed rgba(191, 86, 48, .45);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.checkout-coupon-offer:hover,
.checkout-coupon-offer.is-selected {
  border-style: solid;
  background: rgba(191, 86, 48, .08);
}

.checkout-coupon-offer span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-coupon-offer strong {
  color: var(--primary-dark);
  font-size: 13px;
}

.checkout-coupon-offer small {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-coupon-offer b {
  flex: 0 0 auto;
  color: #28734a;
  font-size: 12px;
}

.shopify-pricing {
  display: grid;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.shopify-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #111;
  font-size: 15px;
  line-height: 1.2;
}

.shopify-price-row strong {
  font-weight: 600;
  text-align: right;
}

.shopify-price-row em {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  margin-left: 7px;
  border: 1px solid #75716e;
  border-radius: 50%;
  color: #75716e;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
}

.shopify-price-row--discount,
.shopify-price-row--discount strong {
  color: #356b36;
}

.shopify-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  align-items: end;
  padding: 24px 0 58px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.shopify-total span {
  color: #111;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.shopify-total strong {
  color: #b94b24;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.shopify-total strong small {
  margin-right: 8px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.shopify-total p {
  grid-column: 1 / -1;
  margin: 0;
  color: #6e6a67;
  font-size: 14px;
  line-height: 1.3;
}

.shopify-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
  text-align: center;
}

.shopify-trust div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.shopify-trust span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(112, 70, 42, 0.9);
  border-radius: 50%;
  color: #70462a;
}

.shopify-trust span svg {
  width: 26px;
  height: 26px;
}

.shopify-trust strong {
  color: #111;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.product-card__category {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 6px;
}

.product-card__name {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.3;
  min-height: 39px;
}

.product-card__variant {
  margin: -10px 0 14px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.product-card__specs {
  display: grid;
  gap: 3px;
  margin: -5px 0 12px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}

.product-card__specs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__specs strong {
  color: var(--text-dark);
  font-weight: 600;
}

.product-card__stock {
  margin: 0 0 14px;
  color: #28734a;
  font-size: 11px;
  font-weight: 700;
}

.product-card__stock--low { color: #a76518; }
.product-card__stock--out { color: #a23a2f; }

.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 18px;
}

.product-card__price .price-from {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.product-card__action {
  width: 100%;
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.product-card__action.btn-secondary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(200, 101, 45, 0.18);
}

.product-card__action.btn-secondary:hover {
  background: linear-gradient(180deg, #d46a31 0%, #a94422 100%);
  color: var(--white);
}

.product-card__action.btn-outline {
  border-color: rgba(200, 101, 45, 0.32);
  background: rgba(200, 101, 45, 0.08);
  color: var(--primary-dark);
}

.product-card__action.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(200, 101, 45, 0.14);
  color: var(--primary-dark);
}

.product-card__action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.product-card__action.btn-outline:disabled:hover,
.product-card__action.btn-secondary:disabled:hover {
  border-color: var(--border-strong);
  color: inherit;
  background: inherit;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.product-card__badge--low-stock {
  background: #b45309;
}

.product-card__badge--sold-out {
  background: #b91c1c;
}

.product-card__badge--hype {
  background: #AE5431;
}

/* Product-card overlays: keep badges, wishlist, and annotations inside the image area. */
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.product-card__badge {
  position: static;
  top: auto;
  left: auto;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
  stroke: #34241d;
  fill: none;
  stroke-width: 1.75;
}

.product-card__wishlist.is-selected {
  color: #AE5431;
}

.product-card__wishlist.is-selected svg {
  fill: #AE5431;
  stroke: #AE5431;
}

.product-card__annotation {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 1;
  width: 100px;
  color: #5c4034;
  pointer-events: none;
}

.product-card__annotation span {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.25;
}

.product-card__annotation svg {
  display: block;
  width: 60px;
  height: auto;
  overflow: visible;
}

.product-card__annotation svg path,
.product-card__annotation svg polyline {
  stroke: #5c4034;
  fill: none;
}

.product-card--hoodie .product-card__annotation {
  top: 68px;
  bottom: auto;
  left: 12px;
  width: 90px;
}

/* Keep the hoodie callout beside the garment, as in the editorial reference. */
.product-card--hoodie .product-card__image img {
  width: 82%;
  margin-left: 18%;
  padding: 12px 4px 12px 0;
}

.product-card--hoodie .product-card__annotation svg {
  width: 82px;
}

.product-card--hoodie-combo .product-card__image img {
  width: 82%;
  margin-left: 18%;
  padding: 12px 4px 12px 0;
}

.product-card--hoodie-combo .product-card__annotation {
  width: 82px;
}

.product-card--hoodie-combo .product-card__annotation svg {
  width: 82px;
}

.product-card__stock {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card__stock.in-stock,
.product-card__stock.low-stock {
  color: #2e7d32;
}

.product-card__stock.out-of-stock {
  color: #c62828;
}

.product-card__stock-details {
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

.product-card__image {
  position: relative;
}

/* ─── Product Detail ─── */
.product-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.back-btn:hover {
  color: var(--primary);
}

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-detail__gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f5f0eb;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

/* The transparent bottle artwork has a white matte around the product.
   Multiply it into the gallery background so it blends with the storefront. */
.gallery-main--bottles > img,
.gallery-main--bottles .gallery-magnifier {
  mix-blend-mode: multiply;
}

/* Keep bottle card artwork free of its white image matte as well. */
.product-card--bottle .product-card__image > img {
  mix-blend-mode: multiply;
}

.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.gallery-magnifier {
  position: absolute;
  z-index: 2;
  width: clamp(112px, 24%, 164px);
  aspect-ratio: 1;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(31, 21, 14, 0.24);
  background-color: #f5f0eb;
  background-repeat: no-repeat;
  background-size: 260%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 140ms ease, transform 140ms ease;
}

.gallery-magnifier.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(48, 30, 18, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  background: var(--primary);
  color: #fff;
}

.gallery-nav--previous { left: 12px; }
.gallery-nav--next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.gallery-thumb {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(2.2);
  transform-origin: center center;
}

@media (hover: none), (pointer: coarse) {
  .gallery-main { cursor: default; }
  .gallery-magnifier { display: none; }
}

.detail-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 8px;
}

.detail-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}

.detail-price {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
}

.detail-offer-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 4px 12px 4px 6px;
  border-radius: 999px;
  background: rgba(174, 84, 49, 0.08);
  border: 1px solid rgba(174, 84, 49, 0.2);
}

.detail-offer-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-dark, #a84420);
  color: #ffffff;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-offer-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark, #a84420);
  text-transform: capitalize;
}

.detail-pricing-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.detail-price__original {
  color: var(--text-muted, #9ca3af);
  font-size: 18px;
  text-decoration: line-through;
  font-weight: 500;
}

.detail-price__discounted {
  color: var(--primary-dark, #a84420);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.detail-price__savings {
  color: #15803d;
  font-size: 13px;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.12);
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: .02em;
}

.variant-option.has-offer {
  border-color: rgba(174, 84, 49, 0.4);
}

.variant-offer-dot {
  color: var(--primary-dark, #a84420);
  font-weight: 900;
  margin-left: 2px;
}

.product-card__badge--offer {
  background: var(--primary-dark, #a84420) !important;
  color: #ffffff !important;
}

.product-card__price-original {
  color: var(--text-muted, #9ca3af);
  font-size: 0.88em;
  text-decoration: line-through;
  margin-right: 6px;
}

.product-card__price-discounted {
  color: var(--primary-dark, #a84420);
  font-weight: 700;
}

.detail-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.more-details-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.more-details-button:hover {
  text-decoration: underline;
}

.more-details-button span {
  font-size: 18px;
  line-height: 1;
}

.product-specifications {
  margin: -4px 0 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface, #fffaf5);
}

.product-specifications h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.product-specifications dl {
  margin: 0;
}

.product-specification {
  display: grid;
  grid-template-columns: minmax(120px, 42%) 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.45;
}

.product-specification dt {
  color: var(--text-muted);
  font-weight: 600;
}

.product-specification dd {
  margin: 0;
  color: var(--text);
}

/* Variant selectors */
.variant-group {
  margin-bottom: 20px;
}

.variant-label {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
  display: block;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option {
  padding: 8px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.variant-option:hover {
  border-color: var(--primary);
}

.variant-option.is-selected {
  border-color: var(--primary);
  background: rgba(200, 101, 45, 0.08);
  color: var(--primary);
}

.variant-option.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.quantity-control label {
  font-size: 13px;
  font-weight: 600;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.qty-value {
  font-size: 15px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.replacement-policy-accordion {
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid #E8DDD3;
  border-radius: 12px;
  background: #ffffff;
}

.replacement-policy-accordion__button {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: #A0522D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.replacement-policy-accordion__button:focus-visible {
  outline: 2px solid rgba(160, 82, 45, 0.35);
  outline-offset: -4px;
}

.replacement-policy-accordion__heading {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.replacement-policy-accordion__heading span {
  overflow-wrap: anywhere;
}

.replacement-policy-accordion__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.replacement-policy-accordion__toggle {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.replacement-policy-accordion.is-open .replacement-policy-accordion__toggle {
  transform: rotate(180deg);
}

.replacement-policy-accordion__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.24s ease, opacity 0.2s ease;
}

.replacement-policy-accordion.is-open .replacement-policy-accordion__content {
  max-height: 420px;
  opacity: 1;
}

.replacement-policy-accordion__body {
  margin: 0 20px 16px;
  padding-top: 16px;
  border-top: 1px solid #E8DDD3;
}

.replacement-policy-accordion__body h3 {
  margin: 0 0 6px;
  color: #2F2F2F;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.replacement-policy-accordion__body p {
  margin: 0 0 10px;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.replacement-policy-accordion__body p:last-child {
  margin-bottom: 0;
}

.replacement-policy-accordion__body p + h3 {
  margin-top: 24px;
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.detail-actions .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .detail-actions {
    grid-template-columns: 1fr;
  }
}

.stock-status {
  font-size: 12px;
  margin: 12px 0 0;
}

.stock-status.in-stock {
  color: #2e7d32;
}

.stock-status.low-stock {
  color: #b45309;
}

.stock-status.out-of-stock {
  color: #c62828;
}

.stock-status__detail {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.stock-alert {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: #fff7ed;
}

.stock-alert strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stock-alert span {
  font-size: 13px;
  color: #9a3412;
  line-height: 1.5;
}

.stock-alert--low {
  border-color: rgba(180, 83, 9, 0.18);
}

/* ─── Search Overlay ─── */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 2000;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-overlay[hidden] {
  display: none !important;
}

.search-overlay__inner {
  width: 100%;
  max-width: 600px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-overlay__inner input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}

.search-overlay__inner input:focus {
  border-color: var(--primary);
}

.search-close-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 20px;
  color: var(--text-muted);
  border-radius: 50%;
  transition: all var(--transition);
}

.search-close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.search-results {
  width: 100%;
  max-width: 600px;
  margin-top: 24px;
  overflow-y: auto;
}

/* ─── Cart Drawer ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
}

.cart-overlay[hidden] {
  display: none !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer[hidden] {
  display: none !important;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__header h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.cart-close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 18px;
  color: var(--text-muted);
  border-radius: 50%;
}

.cart-close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f5f0eb;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  min-width: 0;
}

.cart-item__name {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__variant {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.cart-item__price {
  font-size: 13px;
  font-weight: 600;
}

.cart-item__remove {
  border: none;
  background: none;
  color: var(--text-light);
  font-size: 16px;
  padding: 4px;
  cursor: pointer;
}

.cart-item__remove:hover {
  color: #c62828;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-totals {
  margin-bottom: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}

.cart-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty p {
  margin: 0 0 16px;
  font-size: 15px;
}

.product-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

/* ─── Footer ─── */
/* Booking Confirmation */
.booking-confirmation {
  max-width: 100%;
  padding: 14px 28px 12px;
}

.booking-confirmation__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0;
}

.booking-success-header {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 16px 18px;
}

.booking-success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 4px solid #79c875;
  border-radius: 50%;
  color: #4e9c45;
  animation: bookingCheckIn 0.42s ease both;
}

.booking-success-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-success-header h1 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
}

.booking-success-header p {
  margin: 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.45;
}

.booking-confetti {
  position: absolute;
  inset: 0;
  width: min(560px, 100%);
  margin: 0 auto;
  pointer-events: none;
}

.booking-confetti span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(200, 101, 45, 0.22);
  animation: bookingFloat 2.6s ease-in-out infinite;
}

.booking-confetti span:nth-child(1) { top: 18%; left: 21%; }
.booking-confetti span:nth-child(2) { top: 42%; left: 12%; width: 5px; height: 5px; background: rgba(0, 0, 0, 0.08); animation-delay: 0.2s; }
.booking-confetti span:nth-child(3) { top: 18%; right: 21%; background: var(--primary-dark); animation-delay: 0.35s; }
.booking-confetti span:nth-child(4) { top: 42%; right: 12%; width: 5px; height: 5px; background: rgba(0, 0, 0, 0.1); animation-delay: 0.5s; }
.booking-confetti span:nth-child(5) { top: 58%; left: 5%; width: 6px; height: 6px; background: rgba(0, 0, 0, 0.08); animation-delay: 0.7s; }
.booking-confetti span:nth-child(6) { top: 58%; right: 5%; width: 6px; height: 6px; background: rgba(0, 0, 0, 0.12); animation-delay: 0.9s; }

.booking-id-card {
  position: relative;
  width: min(420px, 100%);
  min-height: 72px;
  margin: 0 auto 16px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 13px 58px 12px;
  border: 1px solid rgba(200, 101, 45, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(80, 42, 24, 0.04);
  box-sizing: border-box;
}

.booking-id-card span {
  color: var(--text-dark);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-id-card strong {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

.booking-copy-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(200, 101, 45, 0.1);
  color: var(--primary-dark);
  transition: background var(--transition), color var(--transition);
}

.booking-copy-btn:hover,
.booking-copy-btn.is-copied {
  background: rgba(200, 101, 45, 0.18);
  color: var(--primary-dark);
}

.booking-copy-btn svg,
.booking-detail-icon svg,
.booking-update-icon svg,
.booking-action-btn svg,
.booking-delivery-icon svg,
.booking-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-updates-card {
  width: min(1080px, 100%);
  margin: 0 auto 16px;
  padding: 12px 0 28px;
  box-sizing: border-box;
  border: 1px solid rgba(200, 101, 45, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(80, 42, 24, 0.04);
}

.booking-updates-card h2 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.booking-updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.booking-update-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 82px;
  padding: 0 76px;
}

.booking-update-item:first-child::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: 1px;
  background: rgba(200, 101, 45, 0.2);
}

.booking-update-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 101, 45, 0.1);
  color: var(--primary-dark);
}

.booking-update-icon svg {
  width: 34px;
  height: 34px;
}

.booking-update-item h3 {
  margin: 0 0 6px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.booking-update-item h3 span {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(200, 101, 45, 0.12);
  color: var(--primary-dark);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-update-item strong {
  display: block;
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 15px;
  line-height: 1.2;
}

.booking-update-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.45;
}

.booking-update-icon--whatsapp {
  background: rgba(37, 211, 102, 0.14) !important;
  color: #128c7e !important;
}

.booking-update-badge.is-sent {
  color: #2e7d32;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-whatsapp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 140, 126, 0.35);
  background: #f0fdf4;
  color: #128c7e;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-whatsapp-action-btn:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.booking-whatsapp-action-btn svg {
  width: 16px;
  height: 16px;
}

.booking-whatsapp-action-btn.is-sent {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
}

.booking-details-card,
.booking-feature-cards {
  width: min(1210px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 32px rgba(80, 42, 24, 0.06);
}

.booking-details-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding: 24px 0;
}

.booking-detail-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 82px;
  padding: 0 28px;
}

.booking-detail-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: rgba(200, 101, 45, 0.16);
}

.booking-detail-item:last-child {
  border-right: 0;
}

.booking-detail-icon,
.booking-feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 101, 45, 0.1);
  color: var(--primary);
}

.booking-detail-item h2,
.booking-feature-card h2 {
  margin: 0 0 5px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.booking-detail-item p,
.booking-feature-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.42;
}

.booking-detail-item strong {
  display: block;
  margin: 0 0 5px;
  color: #3e8c35;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.booking-detail-item--delivery .booking-detail-icon {
  background: rgba(88, 155, 74, 0.12);
  color: #4e9c45;
}

.booking-actions {
  width: min(1080px, 100%);
  margin: 20px auto 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  box-sizing: border-box;
}

.booking-action-btn {
  width: 100%;
  height: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.booking-action-btn--neutral {
  border: 1px solid rgba(200, 101, 45, 0.34);
  color: var(--primary-dark);
}

.booking-action-btn--accent {
  border: 1px solid rgba(200, 101, 45, 0.34);
  color: var(--primary-dark);
}

.booking-action-btn--primary {
  border: 1.5px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(200, 101, 45, 0.22);
}

.booking-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(80, 42, 24, 0.09);
}

.booking-feature-cards {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding: 18px 0;
  margin-bottom: 0;
}

.booking-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  min-height: 74px;
  padding: 0 38px;
}

.booking-feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 7px;
  width: 1px;
  background: rgba(200, 101, 45, 0.18);
}

.booking-feature-icon {
  width: 52px;
  height: 52px;
  background: transparent;
  color: var(--primary);
}

.booking-feature-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.45;
}

.booking-feature-card h2 {
  margin-top: 0;
  font-size: 15px;
}

.booking-feature-card p {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.38;
}

@keyframes bookingCheckIn {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bookingFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-7px);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .booking-updates-card,
  .booking-details-card,
  .booking-actions {
    width: min(720px, 100%);
  }

  .booking-updates-card {
    padding: 18px 24px;
  }

  .booking-updates-card h2 {
    margin-bottom: 16px;
  }

  .booking-updates-grid {
    grid-template-columns: 1fr;
  }

  .booking-update-item {
    min-height: 0;
    padding: 18px 0;
  }

  .booking-update-item:first-child {
    border-bottom: 1px solid rgba(200, 101, 45, 0.16);
  }

  .booking-update-item:first-child::after {
    content: none;
  }

  .booking-details-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px;
  }

  .booking-detail-item {
    min-height: 0;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 101, 45, 0.16);
  }

  .booking-detail-item:not(:last-child)::after {
    content: none;
  }

  .booking-detail-item:last-child {
    padding-top: 22px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .booking-detail-item + .booking-detail-item {
    padding-top: 22px;
  }

  .booking-actions,
  .booking-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-feature-card,
  .booking-feature-card:first-child,
  .booking-feature-card:last-child {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 101, 45, 0.14);
  }

  .booking-feature-card:not(:last-child)::after {
    content: none;
  }

  .booking-feature-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .booking-confirmation {
    padding: 24px 16px 22px;
  }

  .booking-success-header {
    padding-top: 0;
  }

  .booking-success-icon {
    width: 68px;
    height: 68px;
    border-width: 4px;
  }

  .booking-success-icon svg {
    width: 38px;
    height: 38px;
  }

  .booking-success-header p {
    font-size: 14px;
  }

  .booking-success-header h1 {
    font-size: 36px;
  }

  .booking-id-card {
    min-height: 72px;
    margin-bottom: 16px;
    padding-left: 18px;
    padding-right: 54px;
  }

  .booking-id-card strong {
    font-size: 16px;
  }

  .booking-details-card,
  .booking-updates-card,
  .booking-feature-cards {
    border-radius: 8px;
  }

  .booking-updates-card {
    padding: 16px 20px;
  }

  .booking-update-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .booking-update-icon {
    width: 56px;
    height: 56px;
  }

  .booking-update-icon svg {
    width: 28px;
    height: 28px;
  }

  .booking-details-card {
    padding: 22px;
  }

  .booking-detail-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
  }

  .booking-detail-icon {
    width: 50px;
    height: 50px;
  }

  .booking-actions,
  .booking-feature-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-action-btn {
    width: 100%;
  }

  .booking-detail-item strong {
    font-size: 18px;
  }

  .booking-feature-cards {
    padding: 12px 18px;
  }

  .booking-feature-card,
  .booking-feature-card:first-child,
  .booking-feature-card:last-child,
  .booking-feature-card:nth-last-child(-n + 2) {
    min-height: 92px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200, 101, 45, 0.14);
  }

  .booking-feature-card:last-child {
    border-bottom: 0;
  }
}

/* ─── Premium House Merch presentation ─── */
.merch-offer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 18px;
  background: #f8e9dc;
  color: #34251e;
  font-size: 13px;
  letter-spacing: .01em;
  text-align: center;
}

.merch-offer-bar strong { color: var(--primary-dark); }
.merch-offer-bar__icon { color: var(--primary); font-size: 20px; line-height: 1; }

.merch-categories { padding-bottom: 58px; }
.merch-categories .section-title { text-align: left; }
.category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.category-card { border-radius: 20px; background: rgba(255,253,250,.9); box-shadow: 0 12px 28px rgba(96,62,34,.06); }
.category-card__image { width: min(210px, 82%); height: 210px; margin: 18px auto 0; border-radius: 50%; background: linear-gradient(145deg,#fbf5ef,#f1e5da); }
.category-card__title { margin-top: 18px; font-family: var(--font-heading); font-size: 18px; }
.category-card__count { display: block; margin: 0 16px 4px; color: var(--primary); font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.category-card__desc { margin-bottom: 20px; }

.merch-shop { padding-bottom: 30px; }
.shop-header { margin-bottom: 26px; }
.shop-header .section-title { margin-bottom: 0; font-size: clamp(28px, 4vw, 38px); }
.shop-controls { gap: 12px; }
.shop-select { min-height: 42px; padding-left: 14px; border-radius: 10px; background-color: #fffdfa; }
.merch-shop-layout { grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr); gap: 26px; }
.merch-promo-rail { display: grid; align-self: start; gap: 16px; min-width: 0; position: sticky; top: 100px; }
.smart-merch-sidebar { position: static; display: grid; gap: 16px; }
.smart-merch-sidebar__section--trending,
.smart-merch-sidebar__section--recommended,
.smart-merch-sidebar__section--offer,
.smart-merch-sidebar__section--benefits { display: none !important; }
.smart-merch-sidebar__section { border-radius: 18px; background: linear-gradient(145deg,#fff7ef,#f5e8dc); box-shadow: 0 12px 28px rgba(96,62,34,.07); }
.smart-merch-sidebar__section--bundle { border-color: rgba(174,84,49,.13); }
.smart-merch-sidebar__heading h3 { font-family: var(--font-heading); font-size: 20px; }
.smart-merch-sidebar__cta, .merch-promo-card__cta { min-height: 38px; border-radius: 9px; font-size: 11px; letter-spacing: .06em; }

.merch-promo-card, .merch-community-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(174,84,49,.09);
  border-radius: 18px;
  background: #fffaf5;
  box-shadow: 0 12px 28px rgba(96,62,34,.07);
}
.merch-promo-card::after, .merch-community-card::after { content: ''; position: absolute; width: 125px; height: 125px; right: -38px; bottom: -52px; border-radius: 50%; background: rgba(174,84,49,.08); }
.merch-promo-card--routine { background: linear-gradient(145deg,#f0efdf,#f8f4e8); }
.merch-promo-card--offer { background: linear-gradient(145deg,#fff0e3,#fae2d2); }
.merch-promo-card--benefits { background: #f1f0e5; }
.merch-promo-card__eyebrow { margin: 0 0 10px; color: var(--primary); font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; }
.merch-promo-card h3, .merch-community-card h3 { position: relative; z-index: 1; margin: 0 0 9px; color: #35251e; font-family: var(--font-heading); font-size: 20px; line-height: 1.18; }
.merch-promo-card p:not(.merch-promo-card__eyebrow), .merch-community-card p:not(.merch-promo-card__eyebrow) { position: relative; z-index: 1; margin: 0 0 14px; color: #6b5549; font-size: 13px; line-height: 1.5; }
.merch-promo-card__products { display: flex; align-items: end; justify-content: flex-end; height: 104px; margin: -10px -2px 4px; }
.merch-promo-card__products img { width: 30%; height: 100%; object-fit: contain; filter: drop-shadow(0 9px 8px rgba(102,54,30,.12)); }
.merch-promo-card__products img:first-child { width: 38%; }
.merch-promo-card__benefits { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; text-align: center; }
.merch-promo-card__benefits span { color: #61703f; font-size: 21px; }
.merch-promo-card__benefits b { display: block; margin-top: 5px; color: #4c5036; font-family: var(--font-body); font-size: 10px; font-weight: 600; line-height: 1.25; }
.merch-community-card { background: linear-gradient(145deg,#f8eee7,#fffaf5); }

.product-grid { gap: 24px; }
.product-card { border-color: rgba(174,84,49,.09); border-radius: 20px; box-shadow: 0 10px 24px rgba(96,62,34,.055); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(96,62,34,.12); }
.product-card__image { background: linear-gradient(145deg,#fbf5ef,#f5e9df); }
.product-card__image::after { content: none; }
.product-card__body { padding: 19px; gap: 11px; }
.product-card__name { font-family: var(--font-heading); font-size: 18px; }
.product-card__price { font-size: 19px; }
.product-card__action { min-height: 42px; border-radius: 9px; }

.merch-benefits-strip { display: grid; grid-template-columns: repeat(4,1fr); max-width: var(--max-width); margin: 0 auto 64px; padding: 22px 24px; border: 1px solid rgba(174,84,49,.08); border-radius: 18px; background: rgba(255,253,250,.78); box-shadow: 0 10px 26px rgba(96,62,34,.05); }
.merch-benefit { display: flex; align-items: center; gap: 12px; padding: 0 20px; border-right: 1px solid rgba(96,62,34,.12); }
.merch-benefit:last-child { border-right: 0; }
.merch-benefit > span { color: var(--primary); font-size: 27px; }
.merch-benefit strong { display: block; color: #33231c; font-size: 13px; }
.merch-benefit p { margin: 4px 0 0; color: var(--text-muted); font-size: 11px; line-height: 1.35; }

.merch-footer__inner { gap: 48px; }
.merch-footer__brand { min-width: min(100%,340px); }
.merch-footer__newsletter { margin-top: 24px; }
.merch-footer__newsletter-label { margin: 0 0 7px !important; color: var(--primary) !important; font-family: var(--font-mono); font-size: 10px !important; letter-spacing: .14em; }
.merch-footer__newsletter h3 { margin: 0 0 12px; color: #33231c; font-family: var(--font-heading); font-size: 20px; }
.merch-newsletter-form { display: flex; gap: 7px; }
.merch-newsletter-form input { min-width: 0; width: 100%; padding: 10px 12px; border: 1px solid rgba(174,84,49,.2); border-radius: 8px; background: #fffaf5; font: inherit; }
.merch-newsletter-form .btn { padding: 10px 15px; font-size: 11px; }
.merch-footer__socials { display: flex; gap: 8px; margin-top: 19px; }
.merch-footer__socials a { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(174,84,49,.25); border-radius: 50%; color: var(--primary); font-size: 12px; text-decoration: none; }
.merch-footer__socials a:hover { background: var(--primary); color: #fff; }

@media (max-width: 1080px) {
  .merch-promo-rail { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .merch-promo-rail .smart-merch-sidebar { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .merch-benefits-strip { grid-template-columns: repeat(2,1fr); gap: 20px 0; }
  .merch-benefit:nth-child(2) { border-right: 0; }
}

@media (max-width: 700px) {
  .merch-offer-bar { min-height: 34px; font-size: 11px; }
  .category-grid { display: flex; overflow-x: auto; gap: 14px; padding: 2px 2px 12px; scroll-snap-type: x proximity; }
  .category-card { flex: 0 0 245px; scroll-snap-align: start; }
  .shop-header { align-items: flex-start; }
  .shop-controls { width: 100%; flex-wrap: wrap; }
  .shop-select { flex: 1 1 150px; }
  .merch-shop-layout { display: block; }
  .merch-promo-rail { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
  .merch-promo-rail .smart-merch-sidebar { display: block; }
  .smart-merch-sidebar__section--bundle { margin-bottom: 0; }
  .merch-promo-card, .merch-community-card { padding: 18px; }
  .merch-benefits-strip { grid-template-columns: 1fr; gap: 15px; margin: 0 20px 45px; padding: 18px; }
  .merch-benefit, .merch-benefit:nth-child(2) { padding: 0; border-right: 0; }
  .merch-footer__inner { display: block; }
  .merch-footer__links { margin-top: 34px; }
}

/* Undo the landing-page presentation layer while retaining the existing merch sidebar styles. */
.merch-categories { padding-bottom: 64px; }
.merch-categories .section-title { text-align: initial; }
.category-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; overflow: visible; }
.category-card { border-radius: var(--radius); background: var(--bg-card); box-shadow: none; }
.category-card__image { width: 100%; height: 200px; margin: 0; border-radius: 0; }
.category-card__title { margin: 16px 16px 4px; font-family: inherit; font-size: 16px; }
.category-card__desc { margin: 0 16px 16px; }
.merch-shop { padding-bottom: 64px; }
.shop-header { margin-bottom: 24px; }
.shop-header .section-title { font-size: clamp(22px, 3vw, 28px); margin-bottom: 24px; }
.merch-shop-layout { grid-template-columns: minmax(0, 3fr) minmax(270px, 1fr); gap: 24px; display: grid; }
.smart-merch-sidebar { position: sticky; top: 100px; display: grid; }
.smart-merch-sidebar__section--trending,
.smart-merch-sidebar__section--recommended,
.smart-merch-sidebar__section--offer,
.smart-merch-sidebar__section--benefits { display: grid !important; }
.product-grid { gap: 20px; }
.product-card { border-radius: var(--radius); box-shadow: none; }
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.product-card__image { background: #f5f0eb; }
.product-card__image::after { content: none !important; }
.product-card__body { padding: 16px; gap: 10px; }
.product-card__name { font-family: inherit; font-size: 15px; }
.product-card__price { font-size: 16px; }
.product-card__action { min-height: 0; border-radius: initial; }
.merch-footer__inner { gap: initial; }
.merch-footer__brand { min-width: 0; }

@media (max-width: 1080px) {
  .merch-shop-layout { display: grid; grid-template-columns: 1fr; }
  .smart-merch-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smart-merch-sidebar__section--recommended { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .category-grid { display: flex; gap: 14px; overflow-x: auto; }
  .category-card { flex: 0 0 280px; }
  .merch-shop-layout { display: grid; }
  .smart-merch-sidebar { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
  .smart-merch-sidebar__section--offer,
  .smart-merch-sidebar__section--benefits,
  .smart-merch-sidebar__section--recommended { display: none !important; }
}

/* Shared storefront container for the merch landing sections. */
.merch-page-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ─── Hero Banner ─── */
.merch-hero {
  --hero-rust: #b5551f;
  --hero-rust-dark: #9c4718;
  --hero-columns: 34% 66%;
  --hero-gap: 8px;
  --hero-min-height: 520px;
  --hero-padding: 48px 40px;
  --hero-display: grid;
  --hero-art-min-height: 560px;
  --hero-title-size: 80px;
  --hero-content-max-width: 620px;
  --hero-subtitle-margin: 0 0 30px;
  --hero-art-margin-top: 0;
  position: relative;
  display: var(--hero-display);
  grid-template-columns: var(--hero-columns);
  align-items: center;
  gap: var(--hero-gap);
  min-height: var(--hero-min-height);
  padding: var(--hero-padding);
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background:
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.7), transparent 34%),
    linear-gradient(108deg, #fbf2e9 0%, #f7eee5 52%, #ead8c8 100%);
  text-align: left;
}

.merch-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  opacity: .36;
  background:
    radial-gradient(ellipse at 17% 72%, rgba(174,84,49,.08), transparent 34%),
    radial-gradient(ellipse at 88% 15%, rgba(255,255,255,.72), transparent 31%);
  pointer-events: none;
}
.merch-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: var(--hero-content-max-width);
  margin-left: 90px;

}

.merch-hero__eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(174,84,49,.55);
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.merch-hero__title {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: var(--hero-title-size);
  line-height: .95;
  letter-spacing: -.035em;
  color: #221d1a;
  text-wrap: balance;
}
.merch-hero__title .text-accent {
  color: var(--hero-rust);
}
.merch-hero .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border: none;
  border-radius: 10px;
  background: var(--hero-rust);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(181,85,31,.28);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.merch-hero .btn-primary:hover {
  background: var(--hero-rust-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(181,85,31,.34);
}
.merch-hero__subtitle {
  max-width: 410px;
  margin: var(--hero-subtitle-margin);
  color: #594a42;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
}

.merch-hero__art {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: var(--hero-art-min-height);
  margin-top: var(--hero-art-margin-top);
  overflow: visible;
}

.merch-hero__image {
  position: absolute;
  z-index: 1;
  display: block;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: screen;
  filter: drop-shadow(0 14px 12px rgba(104,65,40,.14));
  transition: transform .45s ease, filter .45s ease;
}

.merch-hero__image--composition {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: auto;
  width: auto;
  height: 96%;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 22px rgba(91,59,39,.18));
  transition: transform .45s ease, filter .45s ease;
}
.merch-hero__image--composition:hover {
  filter: drop-shadow(0 22px 26px rgba(91,59,39,.22));
  transform: translateY(-4px);
}
.merch-hero__image:hover {
  filter: drop-shadow(0 16px 13px rgba(104,65,40,.19));
  transform: translateY(-4px);
}
.storefront-header {
  position: relative;
  overflow: visible;  /* so the widget isn't clipped if it slightly overflows */
}

/* Final storefront pass: mirror the admin page's peach/orange gradient system. */
body.merch-page:not(.merch-admin-page) .storefront-header,
body.merch-page:not(.merch-admin-page) .merch-hero {
  background:
    radial-gradient(circle at 58% 12%, rgba(255, 220, 195, 0.48), transparent 34%),
    linear-gradient(135deg, #fffaf6 0%, #fff1e9 100%) !important;
}

body.merch-page:not(.merch-admin-page) .merch-hero::before {
  background:
    radial-gradient(ellipse at 17% 72%, rgba(237, 109, 45, 0.09), transparent 34%),
    radial-gradient(ellipse at 88% 15%, rgba(255, 255, 255, 0.72), transparent 31%);
}

body.merch-page:not(.merch-admin-page) .category-card,
body.merch-page:not(.merch-admin-page) .product-card,
body.merch-page:not(.merch-admin-page) .tracking-card,
body.merch-page:not(.merch-admin-page) .tracking-empty,
body.merch-page:not(.merch-admin-page) .smart-merch-sidebar__section {
  border-color: rgba(229, 141, 96, 0.22);
  background: linear-gradient(180deg, #fff 0%, #fff3e9 100%) !important;
  box-shadow: 0 5px 16px rgba(186, 95, 47, 0.09);
}

body.merch-page:not(.merch-admin-page) .product-card__image,
body.merch-page:not(.merch-admin-page) .category-card__image {
  background: linear-gradient(145deg, #fff7ed 0%, #ffd0a8 100%);
}
@media (max-width: 900px) {
  .merch-hero {
    --hero-columns: 42% 58%;
    --hero-gap: 24px;
    --hero-title-size: clamp(38px, 6vw, 58px);
    --hero-padding: 42px 24px;
  }

  .merch-hero__content {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  body.merch-page:not(.merch-admin-page) .storefront-header-wrapper {
    padding-right: 10px;
    padding-left: 10px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 10px;
    border-radius: 0;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__left {
    display: flex !important;
    align-items: center;
    gap: 8px;
    width: auto;
    min-width: 0;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__nav {
    display: none !important;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__drawer {
    display: block !important;
    flex: 0 0 28px;
    width: 28px;
    height: 46px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__drawer summary {
    display: flex !important;
    justify-content: center;
    height: 46px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__drawer:not([open]) nav {
    display: none !important;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__drawer[open] nav {
    position: fixed;
    display: grid !important;
    left: 10px;
    top: 6px;
    width: calc(100% - 20px);
    height: calc(100dvh - 12px);
    padding-top: 72px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__logo {
    display: flex !important;
    flex: 0 1 112px;
    max-width: 112px;
    margin-right: 0;
    padding-block: 3px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__logo img {
    width: 112px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__right {
    display: inline-flex !important;
    flex: 0 0 auto;
    gap: 0;
  }

  body.merch-page:not(.merch-admin-page) .header-icon-btn {
    width: 32px;
    height: 40px;
  }

  body.merch-page:not(.merch-admin-page) .header-icon-btn svg {
    width: 17px;
    height: 17px;
  }

  .merch-hero {
    --hero-display: block;
    --hero-min-height: 0;
    --hero-padding: 46px 18px 18px;
    --hero-art-min-height: clamp(236px, 69vw, 318px);
    --hero-title-size: clamp(38px, 11vw, 50px);
    --hero-content-max-width: 100%;
    --hero-subtitle-margin: 0 auto 22px;
    --hero-art-margin-top: 16px;
    text-align: center;
  }

  .merch-auth-row {
    top: 10px;
    right: 12px;
    max-width: calc(100% - 24px);
  }

  .merch-auth-cta .header-book-now-btn {
    min-height: 30px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
  }

  .merch-hero__content {
    margin: 0 auto;
  }

  .merch-hero__eyebrow {
    margin-bottom: 12px;
    padding-bottom: 7px;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .merch-hero__title {
    margin-bottom: 14px;
    line-height: 1;
  }

  .merch-hero__subtitle {
    max-width: 26rem;
    font-size: clamp(12px, 3.65vw, 15px);
    line-height: 1.6;
  }

  .merch-hero .btn-primary {
    min-height: 42px;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .merch-hero__art {
    overflow: hidden;
  }

  .merch-hero__image--composition {
    left: 50%;
    right: auto;
    width: min(112%, 420px);
    height: 100%;
    max-width: none;
    transform: translateX(-50%);
  }

  .merch-hero__image--composition:hover {
    transform: translateX(-50%) translateY(-4px);
  }
}

@media (max-width: 480px) {
  .merch-hero {
    --hero-padding: 44px 14px 16px;
    --hero-art-min-height: clamp(218px, 68vw, 292px);
    --hero-title-size: clamp(34px, 10.5vw, 44px);
  }

  .merch-hero__subtitle {
    max-width: 23rem;
  }

  .merch-hero__image--composition {
    width: min(118%, 380px);
  }
}

@media (max-width: 374px) {
  body.merch-page:not(.merch-admin-page) .storefront-header__logo {
    flex-basis: 96px;
    max-width: 96px;
  }

  body.merch-page:not(.merch-admin-page) .storefront-header__logo img {
    width: 96px;
  }

  body.merch-page:not(.merch-admin-page) .header-icon-btn {
    width: 29px;
  }

  .merch-hero {
    --hero-padding: 42px 12px 14px;
    --hero-art-min-height: clamp(198px, 66vw, 250px);
    --hero-title-size: clamp(31px, 10vw, 38px);
  }

  .merch-auth-cta .header-book-now-btn {
    padding: 7px 10px;
    font-size: 9px;
  }

  .merch-hero__subtitle {
    font-size: 12px;
  }
}
.merch-categories {
  width: 100%;
  max-width: none;
  scroll-margin-top: 84px;
  padding: clamp(34px, 5vw, 62px) 24px clamp(58px, 7vw, 92px);
}

/* Keep the product controls on one contained desktop row. */
.product-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-filter-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Keep the first product row visually separated from the filter toolbar. */
.product-filter-bar {
  margin-bottom: 24px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid rgba(52, 36, 29, 0.12);
  border-radius: 10px;
  outline: none;
  background: #fffdfa;
  color: var(--text-dark);
}

.filter-button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.filter-button svg {
  width: 18px;
  height: 18px;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* The hero remains full-bleed; these two sections use the normal page width. */
.merch-categories,
.merch-shop {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.merch-shop {
  padding-left: 24px;
  padding-right: 24px;
}

.merch-categories .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
  text-align: left;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  overflow: visible;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  min-height: clamp(390px, 43vw, 520px);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(153, 102, 72, .12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.72), transparent 31%),
    radial-gradient(circle at 82% 74%, rgba(172,118,83,.13), transparent 34%),
    linear-gradient(145deg, #fbf4ec 0%, #efe3d6 100%);
  box-shadow: 0 22px 54px rgba(89, 61, 42, .12);
  color: #34241d;
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.category-card::before,
.category-card::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.category-card::before {
  inset: 18px;
  z-index: -2;
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255,255,255,.44), transparent 23%),
    linear-gradient(118deg, rgba(255,255,255,.24), rgba(141,93,61,.04));
  opacity: .72;
}

.category-card::after {
  right: -22%;
  bottom: -16%;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 43% 57% 50% 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(255,255,255,.52), transparent 34%),
    rgba(174, 130, 95, .13);
  filter: blur(.2px);
  transform: rotate(-12deg);
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(174,84,49,.24);
  box-shadow: 0 30px 68px rgba(89, 61, 42, .17);
  transform: translateY(-6px);
}

.category-card:focus-visible {
  outline: 3px solid rgba(174,84,49,.22);
  outline-offset: 4px;
}

.category-card--mist {
  background:
    radial-gradient(circle at 20% 22%, rgba(255,255,255,.76), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(130,128,98,.16), transparent 35%),
    linear-gradient(145deg, #f7f1e8 0%, #ebe4d8 100%);
}

.category-card--bottle {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.72), transparent 31%),
    radial-gradient(circle at 84% 74%, rgba(174,84,49,.13), transparent 34%),
    linear-gradient(145deg, #fff6ed 0%, #ead9c9 100%);
}

.category-card--hoodies {
  background:
    radial-gradient(circle at 22% 19%, rgba(255,255,255,.7), transparent 31%),
    radial-gradient(circle at 88% 76%, rgba(151,75,47,.15), transparent 34%),
    linear-gradient(145deg, #f8eee6 0%, #e9d8ca 100%);
}

.category-card__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 72%;
  height: 100%;
  min-height: 190px;
}

.category-card__eyebrow {
  margin: 0 0 13px;
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.category-card__title {
  margin: 0 0 12px;
  color: #33231c;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.category-card__desc {
  max-width: 245px;
  margin: 0;
  color: #665348;
  font-size: 14px;
  line-height: 1.55;
}

.category-card__cta {
  margin-top: auto;
  padding-top: 28px;
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.category-card__image {
  position: absolute;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(22px, 3vw, 36px);
  z-index: 2;
  display: grid;
  width: 58%;
  height: 62%;
  margin: 0;
  overflow: visible;
  place-items: end center;
  border-radius: 0;
  background: transparent;
}

.category-card__image::before {
  position: absolute;
  right: 1%;
  bottom: 0;
  left: 6%;
  height: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(93,61,40,.2) 0%, rgba(93,61,40,.1) 44%, rgba(93,61,40,0) 76%);
  content: '';
  filter: blur(12px);
  transform: scaleY(.5);
}

.category-card__image .category-card__product {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
  filter: drop-shadow(0 18px 16px rgba(92,55,33,.16));
  /* The source PNGs have different transparent bottom margins. Offset the
     rendered visual, not the asset, so their visible bases share one line. */
  transform: translateY(var(--category-product-offset, 0)) scale(var(--category-product-scale, 1));
  transform-origin: center bottom;
  transition: transform .4s ease, filter .4s ease;
}

.category-card__image .category-card__product--mist,
.category-card__image .category-card__product--bottle {
  mix-blend-mode: multiply;
}

.category-card__product {
  height: 80%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(var(--category-product-scale, 1)) translateY(var(--category-product-offset, 0%));
  transform-origin: bottom center;
}

.category-card__product--mist {
  --category-product-scale: .91;
  --category-product-offset: 5%;
}

.category-card__product--bottle {
  --category-product-scale: .80;
  --category-product-offset: -8%;
}

.category-card__product--hoodie {
  --category-product-scale: 1.12;
  --category-product-offset: 20%;
}



.category-card:hover .category-card__image .category-card__product,
.category-card:focus-visible .category-card__image .category-card__product {
  filter: drop-shadow(0 22px 18px rgba(92,55,33,.2));
  transform: translateY(calc(var(--category-product-offset, 0) - 5px)) scale(var(--category-product-scale, 1));
}

@media (max-width: 1080px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 360px;
  }

  .category-card__copy {
    max-width: min(420px, 58%);
  }

  .category-card__image {
    width: 42%;
    height: 72%;
  }
}

@media (max-width: 640px) {
  .merch-categories {
    padding: 38px 16px 58px;
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
    padding: 0;
  }

  .category-card {
    min-height: 540px;
    padding: 24px;
    border-radius: 24px;
    scroll-snap-align: unset;
    overflow: hidden;
  }

  .category-card__copy {
    max-width: 88%;
    min-height: 185px;
  }

  .category-card__title {
    font-size: clamp(30px, 10vw, 40px);
  }

  .category-card__image {
    right: 18px;
    bottom: 28px;
    width: 64%;
    height: 54%;
    overflow: visible;
  }

  /* The larger mobile image zone lets contain do the primary sizing. These
     values only compensate for the source PNGs' different visible bounds. */
  .category-card__image .category-card__product--mist {
    --category-product-scale: .96;
    --category-product-offset: -25%;
  }

  .category-card__image .category-card__product--bottle {
    --category-product-scale: .85;
    --category-product-offset: -25%;
  }

  .category-card__image .category-card__product--hoodie {
    --category-product-scale: 1.20;
    --category-product-offset: 0;
  }
}

/* Merchandise Order Tracking */
.order-tracking {
  width: 100%;
  padding: 24px 18px 42px;
}

.order-tracking__inner {
  width: min(680px, 100%);
  margin: 0 auto;
}

.tracking-back-btn {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tracking-back-btn:hover {
  color: var(--primary);
}

.tracking-card,
.tracking-empty {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(80, 42, 24, 0.08);
}

.tracking-empty {
  padding: 32px;
}

.tracking-empty h1 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1.15;
}

.tracking-empty p {
  margin: 0;
  color: var(--text-muted);
}

.tracking-card {
  overflow: hidden;
}

.tracking-product {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(200, 101, 45, 0.12);
}

.tracking-product img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  background: #f2ede8;
}

.tracking-product__meta {
  min-width: 0;
}

.tracking-product__meta h1 {
  margin: 0 0 4px;
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.tracking-product__meta p,
.tracking-product__meta small {
  display: block;
  margin: 0;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.35;
}

.tracking-product__meta small {
  color: var(--text-muted);
}

.tracking-status-badge {
  align-self: start;
  justify-self: end;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(200, 101, 45, 0.12);
  color: var(--primary-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.tracking-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding: 18px 20px 18px;
}

.tracking-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 15px;
  min-height: 64px;
}

.tracking-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: -2px;
  left: 11px;
  width: 2px;
  background: #d8d8d8;
}

.tracking-step.is-complete:not(:last-child)::before {
  background: var(--primary-dark);
}

.tracking-step__marker {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8d8d8;
  color: var(--white);
}

.tracking-step.is-complete .tracking-step__marker {
  background: var(--primary-dark);
}

.tracking-step.is-current .tracking-step__marker {
  box-shadow: 0 0 0 5px rgba(200, 101, 45, 0.13);
}

.tracking-step__marker svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tracking-step__body {
  min-width: 0;
  padding: 1px 0 16px;
}

.tracking-step.is-current .tracking-step__body {
  padding: 10px 14px 12px;
  border-radius: 8px;
  background: rgba(200, 101, 45, 0.08);
}

.tracking-step__body h3 {
  margin: 0 0 3px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.tracking-step__body p,
.tracking-step__body small {
  display: block;
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.tracking-step__body small {
  margin-top: 4px;
  color: var(--text-dark);
}

.tracking-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(200, 101, 45, 0.12);
}

.tracking-details div {
  min-width: 0;
}

.tracking-details span {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tracking-details strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .order-tracking {
    padding: 18px 14px 34px;
  }

  .tracking-product {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .tracking-product img {
    width: 62px;
    height: 62px;
  }

  .tracking-status-badge {
    grid-column: 2;
    justify-self: start;
    align-self: auto;
    margin-top: 4px;
  }

  .tracking-timeline {
    padding: 16px 14px;
  }

  .tracking-step {
    gap: 12px;
  }

  .tracking-details {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

.merch-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 48px 24px 24px;
}

.merch-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .account-drawer {
    width: min(100vw, 420px);
  }

  .account-drawer__content {
    display: block;
    padding: 16px 16px 112px;
  }

  .account-panel-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    height: 92px;
    padding: 12px 8px 10px;
    border-width: 1px 0 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 -8px 24px rgba(33, 24, 18, 0.08);
  }

  .account-panel-nav button,
  .account-panel-nav__logout {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 70px;
    padding: 0 4px;
    border-radius: 8px;
    text-align: center;
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .account-panel-nav__icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .account-panel-nav button[aria-current="page"] {
    background: #fbf3ef;
  }

  .account-logout-btn {
    display: none !important;
  }

  .account-section--orders {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .merch-auth-row {
    top: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
  }

  .merch-account-btn {
    width: 100%;
    min-width: 0;
  }

  .merch-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .account-drawer__content {
    padding: 16px 16px 112px;
  }

  .account-card {
    grid-template-columns: 1fr;
  }

  .account-card__title-row,
  .account-section__head {
    align-items: flex-start;
  }

  .account-section__actions {
    align-items: flex-end;
    flex-direction: column-reverse;
  }

  .account-form__grid {
    grid-template-columns: 1fr;
  }

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

  .account-order-filter__actions .account-action-btn {
    flex: 1 1 auto;
  }

  .account-order-card {
    padding: 16px 12px;
    gap: 10px;
  }

  .account-list__item--stacked .account-list__row {
    align-items: flex-start;
    gap: 10px;
  }

  .account-order-card > .account-list__row > strong {
    font-size: 16px;
    max-width: 55%;
  }

  .account-order-card > p {
    font-size: 13px;
  }

  .order-status-group {
    max-width: 45%;
  }

  .account-item-actions.account-order-actions {
    gap: 10px;
  }

  .account-item-actions.account-order-actions button {
    min-height: 44px;
    height: auto;
    padding: 9px 8px;
    gap: 5px;
    font-size: 9px;
    line-height: 1.15;
  }

  .account-order-action__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .account-form__actions .account-action-btn {
    flex: 1 1 auto;
  }

  .merch-flow-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .merch-flow-modal__panel {
    max-height: calc(100dvh - 24px);
  }

  .merch-flow-modal__header,
  .merch-flow-modal__footer,
  .merch-flow-modal__body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .merch-flow-modal__footer .account-action-btn {
    flex: 1 1 auto;
  }

  .checkout-address-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkout-address-card em {
    grid-column: 2;
  }

  .account-card__avatar.profile-avatar {
    width: 52px;
    height: 52px;
  }

  .influencer-kpi-grid,
  .influencer-coupon-hero,
  .influencer-grid--charts,
  .influencer-grid--two,
  .influencer-coupon-grid,
  .influencer-toolbar {
    grid-template-columns: 1fr;
  }

  .influencer-chart__row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .influencer-chart__value {
    grid-column: 2;
    justify-self: end;
  }

  .influencer-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .influencer-pagination > div {
    width: 100%;
  }

  .influencer-pagination .account-action-btn {
    flex: 1 1 0;
  }

  .influencer-coupon-hero__top {
    flex-direction: column;
  }

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

  .influencer-details > *:not(summary) {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 380px) {
  .account-order-card > .account-list__row > strong,
  .order-status-group {
    max-width: none;
  }

  .account-list__item--stacked .account-list__row {
    flex-direction: column;
  }

  .order-status-group {
    align-items: flex-start;
  }

  .account-item-actions--inline {
    grid-template-columns: 1fr;
  }
}

.merch-footer__brand img {
  margin-bottom: 12px;
  filter: brightness(10);
}

.merch-footer__brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.merch-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 480px) {
  .merch-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .influencer-kpi-grid {
    grid-template-columns: 1fr;
  }

  .influencer-coupon-card__head {
    flex-direction: column;
  }

  .influencer-coupon-card__meta {
    gap: 6px;
  }

  .influencer-coupon-hero {
    padding: 14px;
  }

  .influencer-coupon-hero__copy h4 {
    font-size: 18px;
  }

  .influencer-coupon-hero__actions {
    width: 100%;
    justify-content: stretch;
  }

  .influencer-coupon-hero__actions .account-action-btn {
    width: 100%;
  }

  .influencer-coupon-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.merch-footer__bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.merch-footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.order-details{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.order-detail-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #ece7e2;
}

.order-detail-row:last-child{
    border-bottom:none;
}

.order-detail-row span{
    color:#777;
    font-size:14px;
}

.order-detail-row strong{
    color:#222;
    font-weight:600;
    text-align:right;
}
.order-status-group{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.payment-status{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  padding:4px 10px;
  border-radius:999px;
}

.payment-status--paid{
  background:#e8f7ed;
  color:#1c8c4a;
}

.payment-status--pending{
  background:#fff4e5;
  color:#d97706;
}

.order-status{
  color:#b35b2d;
  font-weight:700;
  text-transform:uppercase;
  font-size:13px;
}

.account-section--orders .payment-status--paid{
  min-width: 58px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  background:#e6f5eb;
  color:#2b6f3b;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.account-section--orders .order-status{
  color:#df4b1b;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.account-order-card > p .account-order-meta-dot{
  color:#8a8a8a;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:500;
  letter-spacing:0;
  line-height:1;
  text-transform:none;
}
/* Combo product cards */
.combo-product-details { margin: 18px 0; padding: 14px; border: 1px solid rgba(164, 77, 41, .18); border-radius: 12px; background: rgba(164, 77, 41, .04); }
.combo-product-details__items { display: grid; gap: 8px; margin-top: 10px; }
.combo-product-details__item { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.combo-product-details__item img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; background: #fff; }
.combo-product-details__item small { display: block; color: var(--text-muted, #777); margin-top: 2px; }

@media (max-width: 1080px) {
  .merch-shop-layout {
    grid-template-columns: 1fr;
  }

  .smart-merch-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-merch-sidebar__section--recommended {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .product-filter-bar {
    margin-bottom: 18px;
  }

  .smart-merch-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
  }

  .smart-merch-sidebar__section {
    padding: 16px;
    border-radius: 18px;
  }

  .smart-merch-sidebar__section--offer,
  .smart-merch-sidebar__section--benefits,
  .smart-merch-sidebar__section--recommended {
    display: none;
  }

  .smart-merch-sidebar__section--trending,
  .smart-merch-sidebar__section--bundle {
    overflow: hidden;
  }

  .smart-merch-product-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .smart-merch-product {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .smart-merch-bundle {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .smart-merch-bundle-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .smart-merch-bundle-list .smart-merch-bundle {
    scroll-snap-align: start;
  }
}

@media (max-width: 1100px) {
  .shopify-checkout__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 28px;
  }

  .shopify-summary {
    padding: 26px;
  }

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

@media (max-width: 820px) {
  .shopify-checkout {
    padding: 24px 16px;
  }

  .shopify-checkout__inner {
    grid-template-columns: 1fr;
  }

  .shopify-summary {
    position: static;
    order: 2;
  }
}

@media (max-width: 640px) {
  .shopify-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .shopify-field,
  .shopify-field-grid .shopify-field:nth-last-of-type(3),
  .shopify-field-grid .shopify-field:nth-last-of-type(2),
  .shopify-field-grid .shopify-field:nth-last-of-type(1):not(.shopify-field--wide) {
    grid-column: 1 / -1;
  }

  .shopify-summary {
    padding: 22px;
  }

  .shopify-summary-product {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .shopify-summary-product__image,
  .shopify-summary-product__image img {
    width: 76px;
    height: 76px;
  }

  .shopify-summary-product__price {
    grid-column: 2;
    justify-self: start;
  }

  .shopify-coupon {
    grid-template-columns: 1fr;
  }

  .shopify-total {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .shopify-total strong {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .shopify-checkout {
    padding: 18px 12px 24px;
    overflow-x: hidden;
  }

  .shopify-checkout__inner,
  .shopify-checkout-form,
  .shopify-summary {
    width: 100%;
    max-width: 100%;
  }

  .shopify-section {
    margin-bottom: 18px;
  }

  .shopify-section h1,
  .shopify-section h2,
  .shopify-summary h2 {
    font-size: 18px;
  }

  .shopify-section__head p,
  .shopify-check,
  .shopify-shipping-box p,
  .shopify-payment-option span,
  .shopify-price-row,
  .shopify-total p {
    font-size: 13px;
  }

  .shopify-field-grid {
    gap: 9px;
  }

  .shopify-field input,
  .shopify-field select {
    height: 52px;
    padding: 20px 40px 8px 13px;
    font-size: 13px;
  }

  .shopify-field span:first-child {
    left: 13px;
    top: 7px;
    font-size: 11px;
  }

  .shopify-field__icon {
    right: 12px;
    top: 17px !important;
    width: 18px;
    height: 18px;
  }

  .checkout-phone-control {
    grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
    gap: 6px;
  }

  .checkout-phone-control select {
    padding-right: 28px;
  }

  .shopify-field select {
    background-position: calc(100% - 18px) 29px, calc(100% - 13px) 29px;
    background-size: 5px 5px, 5px 5px;
  }

  .shopify-shipping-box,
  .shopify-payment-option {
    gap: 10px;
    min-height: 52px;
    padding: 10px 12px;
  }

  .shopify-payment-option strong {
    font-size: 12px;
  }

  .shopify-pay-button {
    height: 52px;
    gap: 10px;
    font-size: 12px;
    white-space: normal;
  }

  .shopify-summary {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .shopify-summary h2 {
    margin-bottom: 18px;
  }

  .shopify-summary-products {
    gap: 14px;
    padding-bottom: 20px;
  }

  .shopify-summary-product {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .shopify-summary-product__image,
  .shopify-summary-product__image img {
    width: 62px;
    height: 62px;
  }

  .shopify-summary-product__copy strong {
    margin-bottom: 5px;
    font-size: 13px;
    white-space: normal;
  }

  .shopify-summary-product__copy small,
  .shopify-summary-product__price {
    font-size: 12px;
  }

  .shopify-summary-product__price {
    grid-column: 2;
  }

  .shopify-coupon {
    gap: 10px;
    padding: 18px 0;
  }

  .shopify-coupon__field,
  .shopify-coupon__apply {
    height: 46px;
  }

  .shopify-pricing {
    gap: 14px;
    padding: 18px 0;
  }

  .shopify-total {
    gap: 8px;
    padding: 18px 0 28px;
  }

  .shopify-total span {
    font-size: 18px;
  }

  .shopify-total strong {
    font-size: 22px;
  }

  .shopify-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 20px;
  }

  .shopify-trust span {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .shopify-checkout {
    padding-inline: 8px;
  }

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

  .shopify-payment-option {
    flex-wrap: wrap;
  }

  .shopify-payment-option strong {
    width: 100%;
    padding-left: 28px;
  }

  .shopify-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .shopify-price-row strong {
    text-align: left;
  }

  .shopify-total strong {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .account-drawer--influencer .account-drawer__header { padding: 18px 16px; }
  .account-drawer--influencer .account-drawer__header h2 { font-size: 25px; }
  .influencer-dashboard-actions { align-items: stretch; justify-content: stretch; width: 100%; }
  .influencer-dashboard-actions > * { flex: 1 1 140px; }
}

/* Category tiles use the same peach gradient as the product image panels. */
body.merch-page:not(.merch-admin-page) .category-card {
  background: linear-gradient(145deg, #fff7ed 0%, #ffd0a8 100%) !important;
}

/* Keep the artwork itself transparent so it blends into the card gradient. */
body.merch-page:not(.merch-admin-page) .category-card__image {
  background: transparent !important;
}

/* Match the mist spray and water bottle image panels to the hoodie peach. */
body.merch-page:not(.merch-admin-page) .product-card--mist .product-card__image,
body.merch-page:not(.merch-admin-page) .product-card--bottle .product-card__image {
  background: linear-gradient(145deg, #fff7ed 0%, #ffd0a8 100%) !important;
}

/* Mist and Hoodie use the transparent product artwork wherever the catalog
   variant does not provide its own transparent primary image. Keep the image
   surface transparent so the same warm card background shows through. */
body.merch-page:not(.merch-admin-page) .product-card--mist .product-card__image,
body.merch-page:not(.merch-admin-page) .product-card--hoodie .product-card__image,
body.merch-page:not(.merch-admin-page) .merch-offer-card--mist .merch-offer-card__image,
body.merch-page:not(.merch-admin-page) .merch-offer-card--hoodie .merch-offer-card__image {
  background: transparent !important;
}

body.merch-page:not(.merch-admin-page) .product-card--mist .product-card__image img,
body.merch-page:not(.merch-admin-page) .product-card--hoodie .product-card__image img,
body.merch-page:not(.merch-admin-page) .merch-offer-card--mist .merch-offer-card__image img,
body.merch-page:not(.merch-admin-page) .merch-offer-card--hoodie .merch-offer-card__image img {
  mix-blend-mode: normal;
}
@media (min-width: 769px) {
  .product-card--bottle .product-card__image img {
    width: 82%;
    margin-left: 18%;
  }
}

/* ─── Shop Offers Section ─── */
.merch-offers {
  padding: 0 var(--page-padding, 24px) 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.merch-offers .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.merch-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.merch-offer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(153, 102, 72, .12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.72), transparent 31%),
    radial-gradient(circle at 82% 74%, rgba(172,118,83,.13), transparent 34%),
    linear-gradient(145deg, #fbf4ec 0%, #efe3d6 100%);
  box-shadow: 0 22px 54px rgba(89, 61, 42, .12);
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.merch-offer-card::before {
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(118deg, rgba(255,255,255,.24), rgba(141,93,61,.04));
  content: '';
  pointer-events: none;
}

.merch-offer-card:hover,
.merch-offer-card:focus-within {
  border-color: rgba(174,84,49,.24);
  box-shadow: 0 30px 68px rgba(89, 61, 42, .17);
  transform: translateY(-6px);
}

.merch-offer-card__image {
  position: relative;
  display: grid;
  min-height: 220px;
  margin: 18px 18px 0;
  place-items: center;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, #fbf5ef, #f1e5da);
}

.merch-offer-card__image img {
  display: block;
  width: 100%;
  height: 220px;
  padding: 16px;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(92,55,33,.14));
  mix-blend-mode: multiply;
  transition: transform .4s ease;
}

.merch-offer-card:hover .merch-offer-card__image img,
.merch-offer-card:focus-within .merch-offer-card__image img {
  transform: scale(1.04);
}

.merch-offer-card__availability {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(52, 36, 29, .88);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.merch-offer-card__body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px 22px 24px;
}

.merch-offer-card__body p { margin: 0; }

.merch-offer-card__discount {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(174,84,49,.12);
  color: var(--primary-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.merch-offer-card__name {
  color: #33231c;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
}

.merch-offer-card__product {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.merch-offer-card__variant,
.merch-offer-card__savings,
.merch-offer-card__expiry,
.merch-offer-card__desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.merch-offer-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 3px;
}

.merch-offer-card__original {
  color: var(--text-light);
  font-size: 14px;
  text-decoration: line-through;
}

.merch-offer-card__discounted {
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 700;
}

.merch-offer-card__savings { color: var(--primary-dark); font-weight: 700; }

.merch-offer-card__details {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.merch-offer-card__details summary { cursor: pointer; font-weight: 600; }

.merch-offer-card__shop-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  border: 1px solid var(--primary);
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.merch-offer-card__shop-btn:hover:not(:disabled),
.merch-offer-card__shop-btn:focus-visible:not(:disabled) {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  outline: none;
  transform: translateY(-1px);
}

.merch-offer-card__shop-btn.is-disabled,
.merch-offer-card__shop-btn:disabled {
  border-color: rgba(52,36,29,.18);
  background: rgba(52,36,29,.12);
  color: var(--text-muted);
  cursor: not-allowed;
}

.merch-offers__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 38px 24px;
  border: 1px dashed rgba(153,102,72,.22);
  border-radius: 20px;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .merch-offers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .merch-offers { padding-left: 16px; padding-right: 16px; }
  .merch-offers__grid { grid-template-columns: 1fr; gap: 18px; }
  .merch-offer-card { border-radius: 24px; }
  .merch-offer-card__image { min-height: 205px; border-radius: 20px; }
  .merch-offer-card__image img { height: 205px; }
}
