@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ─── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --navy:       #1c3456;
  --navy-dark:  #162a44;
  --cream:      #f5f0ea;
  --white:      #ffffff;
  --banner-bg:  #1a1a1a;
  --gold:       #c8a96e;
  --shopify-purple: #5c6ac4;
  --body-text:  #1a1a1a;
  --gray-light: #e5e5e5;
  --gray-mid:   #737373;
  --gray-bg:    #e8e5e0;
  --green:      #007a5a;
  --font-logo:  'Cormorant Garamond', Georgia, serif;
  --font-body:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --banner-h:   52px;
  --nav-h:      58px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, select { font-family: var(--font-body); }

/* ─── Promo banner ───────────────────────────────────────────────────────────
   Replaces "Free Shipping" announcement bar — same visual position             */
#promo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--banner-bg);
  color: var(--white);
  height: var(--banner-h);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 12px;
}
.banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.banner-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.banner-copy {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.banner-copy strong { color: var(--gold); }
.banner-next {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--gold);
  color: var(--banner-bg);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 34px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.banner-next:hover { opacity: 0.85; }
/* Step indicator inside banner */
.banner-steps {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.banner-step {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.banner-step.active { background: var(--gold); }

/* ─── Shared site nav ────────────────────────────────────────────────────────
   Position below the promo banner                                               */
.site-nav {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--cream);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--gray-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
  border: 1.5px solid var(--navy);
  padding: 3px 9px 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -2px; right: -4px;
  width: 16px; height: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hamburger — mobile only */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--navy);
}
.nav-hamburger svg { width: 22px; height: 22px; }
/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: calc(var(--banner-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--cream);
  z-index: 98;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
}
.nav-drawer a:last-child { border-bottom: none; }

/* ─── Page body offset (fixed banner + nav) ───────────────────────────────── */
.page-body {
  padding-top: calc(var(--banner-h) + var(--nav-h));
  min-height: 100vh;
}
/* Checkout / thankyou have a different header, still need banner offset */
.page-body-checkout {
  padding-top: var(--banner-h);
  min-height: 100vh;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────  */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
  min-height: 44px;
  border: none;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-purple {
  background: var(--shopify-purple);
  color: var(--white);
}
.btn-purple:hover { opacity: 0.9; }
.btn-shop {
  background: #5c6ac4;
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  padding: 10px 20px;
}
.btn-full { width: 100%; }
.btn-sm {
  padding: 8px 16px;
  font-size: 11px;
  min-height: 36px;
}

/* ─── Home hero ──────────────────────────────────────────────────────────────  */
.hero {
  position: relative;
  min-height: calc(100vh - var(--banner-h) - var(--nav-h));
  background: linear-gradient(160deg, #2e4158 0%, #3d5568 40%, #4a6075 70%, #3d5568 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 520px;
}
.hero-icon {
  width: 32px;
  margin: 0 auto 18px;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: clamp(13px, 1.5vw, 15px);
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 2px;
  min-height: 44px;
  transition: background 0.15s, color 0.15s;
}
.btn-hero:hover, .btn-hero.primary {
  background: var(--white);
  color: var(--navy);
}

/* ─── Category page ──────────────────────────────────────────────────────────  */
.category-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 40px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.category-title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
  min-width: 160px;
}
.category-desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.65;
  padding-top: 6px;
  max-width: 420px;
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.filter-left { display: flex; gap: 10px; }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--gray-light);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  min-height: 34px;
}
.view-toggles { display: flex; gap: 6px; }
.view-btn {
  padding: 5px;
  border: 1.5px solid transparent;
  background: none;
  cursor: pointer;
  color: var(--navy);
  border-radius: 2px;
  min-height: 34px;
  min-width: 34px;
  display: flex; align-items: center; justify-content: center;
}
.view-btn.active { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-light);
}
.product-card {
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.product-card:last-child { border-right: none; }
.product-card:hover { box-shadow: inset 0 0 0 1px var(--navy); }
.product-card.featured { grid-row: span 1; }
.product-img-wrap {
  background: #f0ede8;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.product-card.featured .product-img-wrap {
  aspect-ratio: 2/3;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.03); }
.product-info {
  padding: 12px 14px 14px;
}
.product-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-price {
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-swatches {
  display: flex;
  gap: 4px;
}
.swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.swatch.selected { border-color: var(--navy); }
.swatch-silver  { background: #b8b8b8; }
.swatch-tortoise{ background: #7a4a1e; }
.swatch-dark    { background: #2d2d2d; }
.swatch-beige   { background: #d4c4a0; }
.swatch-green   { background: #6a8a5a; }

/* ─── Product detail ─────────────────────────────────────────────────────────  */
.product-detail {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - var(--banner-h) - var(--nav-h));
}
.product-media {
  background: #e8e5e0;
  position: relative;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.product-info-col {
  padding: 48px 48px 48px 40px;
  overflow-y: auto;
}
.breadcrumb {
  font-size: 11px;
  color: var(--gray-mid);
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--gray-mid); }
.breadcrumb span { margin: 0 5px; }
.product-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.product-detail-name {
  font-family: var(--font-logo);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}
.product-detail-price {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.stars {
  color: #c8a040;
  font-size: 15px;
  letter-spacing: 1px;
}
.review-count {
  font-size: 12px;
  color: var(--navy);
  text-decoration: underline;
}
.color-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.color-label span { font-weight: 400; color: var(--gray-mid); margin-left: 4px; }
.swatch-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.swatch-lg {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.swatch-lg.selected {
  box-shadow: 0 0 0 1px var(--navy), 0 0 0 3px #fff, 0 0 0 4.5px var(--navy);
}
.product-actions { margin-bottom: 20px; }
.product-shipping-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 10px;
}
.product-store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.store-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--navy);
  text-decoration: underline;
}
.chat-link {
  font-size: 12px;
  color: var(--navy);
  text-decoration: underline;
}
.description-section { border-top: 1px solid var(--gray-light); }
.description-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.description-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-mid);
  padding-bottom: 16px;
}

/* ─── Cart drawer ────────────────────────────────────────────────────────────  */
.cart-drawer {
  position: fixed;
  top: calc(var(--banner-h) + var(--nav-h));
  right: 0;
  bottom: 0;
  width: 360px;
  background: var(--white);
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  overflow: hidden;
}
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 89;
  top: calc(var(--banner-h) + var(--nav-h));
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  flex-shrink: 0;
}
.cart-title { font-size: 15px; font-weight: 600; color: var(--navy); }
.cart-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--navy); font-size: 20px; line-height: 1;
}
.cart-success {
  background: #e8f5f0;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 20px;
  text-align: center;
  flex-shrink: 0;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.cart-item-thumb {
  width: 60px; height: 60px;
  background: var(--gray-bg);
  border-radius: 4px;
  overflow: hidden;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 13px; font-weight: 500; color: var(--navy); }
.cart-item-price { font-size: 13px; color: var(--navy); margin-top: 2px; }
.cart-item-meta { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cart-qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--gray-light);
  background: none;
  cursor: pointer;
  border-radius: 2px;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.cart-qty-num { font-size: 13px; }
.cart-remove { font-size: 11px; color: var(--gray-mid); text-decoration: underline; cursor: pointer; }
.cart-upsell { margin-top: 12px; border-top: 1px solid var(--gray-light); padding-top: 14px; }
.cart-upsell-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-upsell-thumb {
  width: 50px; height: 50px;
  background: var(--gray-bg);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-upsell-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-upsell-info { flex: 1; }
.cart-upsell-name { font-size: 12px; font-weight: 500; color: var(--navy); }
.cart-upsell-price { font-size: 12px; color: var(--gray-mid); }
.btn-add-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 6px 10px;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 30px;
}
.cart-extras { margin-top: 14px; border-top: 1px solid var(--gray-light); padding-top: 14px; }
.cart-extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--navy);
  padding: 5px 0;
  cursor: pointer;
}
.cart-footer {
  border-top: 1px solid var(--gray-light);
  padding: 16px 20px;
  flex-shrink: 0;
  background: var(--white);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

/* ─── Reminder card ──────────────────────────────────────────────────────────  */
#promo-reminder {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 88;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  pointer-events: none;
}
.reminder-accent {
  position: absolute;
  left: 16px; top: 12px; bottom: 12px;
  width: 2.5px;
  background: var(--gold);
  border-radius: 2px;
}
.reminder-body { padding-left: 20px; }
.reminder-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.reminder-text { font-size: 11px; color: var(--gray-mid); line-height: 1.5; }
.reminder-tag {
  margin-top: 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 600;
}
.reminder-tag::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

/* ─── Checkout layout ────────────────────────────────────────────────────────  */
.checkout-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: var(--banner-h);
  z-index: 50;
}
.checkout-header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
}
.checkout-body {
  display: grid;
  grid-template-columns: 60% 40%;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.checkout-left {
  padding: 40px 40px 80px 60px;
  border-right: 1px solid var(--gray-light);
}
.checkout-right {
  background: var(--cream);
}
.checkout-right-sticky {
  padding: 40px 48px 60px 40px;
  position: sticky;
  top: calc(var(--banner-h) + 60px);
  max-height: calc(100vh - var(--banner-h) - 60px);
  overflow-y: auto;
}
.checkout-section {
  margin-bottom: 28px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 2px;
}
.section-summary-row a { color: #4c82c4; text-decoration: none; }
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.alert-info { background: #f0f5fc; color: #1a3a6c; border: 1px solid #c5d8f0; }
.alert-note { background: #fffbf0; color: #6b4b00; border: 1px solid #e8d88a; }
.alert-dismiss {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #999;
  flex-shrink: 0;
}
.shipping-options { display: flex; flex-direction: column; gap: 1px; }
.shipping-option {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  gap: 12px;
  cursor: pointer;
  background: var(--white);
}
.shipping-option.selected {
  background: #f0f5fc;
  border-color: #4c82c4;
}
.shipping-option input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }
.shipping-option-label { flex: 1; }
.shipping-option-name { font-size: 13px; color: var(--navy); font-weight: 500; }
.shipping-option-desc { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }
.shipping-option-price { font-size: 13px; font-weight: 600; color: var(--navy); }
.payment-section { margin-top: 24px; }
.payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: #f9f9f9;
  margin-bottom: 2px;
}
.payment-row input[type="radio"] { accent-color: var(--navy); }
.payment-label { font-size: 13px; color: var(--navy); flex: 1; }
.payment-sub { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }
.payment-method-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: #f9f9f9;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 2px;
  justify-content: space-between;
}
.card-icons { display: flex; gap: 4px; }
.cc-icon {
  width: 28px; height: 18px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px;
  font-weight: 800;
}
.cc-visa { background: #1a1f71; color: #f7b200; }
.cc-mc { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); border-radius: 50%; width: 18px; height: 18px; }
.checkout-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--navy);
}
.checkout-checkbox-row input { accent-color: var(--navy); width: 16px; height: 16px; }
.checkout-footer-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.checkout-footer-links a { font-size: 11px; color: var(--gray-mid); text-decoration: underline; }

/* Order summary (right col) */
.order-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}
.order-thumb-wrap {
  position: relative;
  width: 64px; height: 64px;
  flex-shrink: 0;
}
.order-thumb-wrap img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
}
.order-qty-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  background: #888;
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.order-item-info { flex: 1; }
.order-item-name { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.3; }
.order-item-meta { font-size: 11px; color: var(--gray-mid); margin-top: 3px; }
.order-item-prices { text-align: right; }
.order-price-orig { font-size: 11px; color: var(--gray-mid); text-decoration: line-through; }
.order-price-sale { font-size: 13px; color: var(--navy); font-weight: 500; }
.upsell-section { margin-bottom: 16px; }
.upsell-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.upsell-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  background: var(--white);
}
.upsell-thumb {
  width: 52px; height: 52px;
  background: #e8e5e0;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.upsell-thumb img { width: 100%; height: 100%; object-fit: cover; }
.upsell-name { font-size: 12px; font-weight: 500; color: var(--navy); }
.upsell-price { font-size: 12px; color: var(--gray-mid); }
.upsell-select {
  margin-top: 4px;
  font-size: 11px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  padding: 3px 6px;
  color: var(--navy);
  background: var(--white);
  width: 100%;
}
.btn-add {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 36px;
}
.discount-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.discount-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
}
.btn-apply {
  padding: 10px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-mid);
  cursor: pointer;
  min-height: 44px;
}
.discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fc;
  color: #1a3a8c;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.discount-tag button { background: none; border: none; cursor: pointer; color: #1a3a8c; font-size: 14px; line-height: 1; padding: 0 0 0 2px; }
.price-breakdown { font-size: 13px; }
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--navy);
}
.price-row .label { color: var(--gray-mid); }
.price-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 6px;
  border-top: 1px solid var(--gray-light);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.total-currency { font-size: 11px; font-weight: 400; color: var(--gray-mid); align-self: center; margin-right: 4px; }
.savings-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}

/* ─── Thank you page ─────────────────────────────────────────────────────────  */
.thankyou-logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}
.confirmation-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.check-circle {
  width: 26px; height: 26px;
  border: 2px solid #888;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #555;
  font-size: 13px;
}
.confirmation-num { font-size: 12px; color: var(--gray-mid); }
.thankyou-title {
  font-family: var(--font-logo);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}
.map-block {
  background: #e8edf2;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-tooltip {
  background: var(--white);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  text-align: center;
}
.map-tooltip strong { display: block; margin-bottom: 2px; font-size: 12px; }
.map-pin {
  position: absolute;
  bottom: 32px;
  color: #e44;
  font-size: 22px;
}
.order-confirmed-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 4px;
}
.order-confirmed-sub {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.order-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}
.order-detail-section h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.order-detail-section p {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.6;
}
.thankyou-body {
  display: grid;
  grid-template-columns: 54% 46%;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.thankyou-left {
  padding: 48px 40px 80px 60px;
  border-right: 1px solid var(--gray-light);
}
.thankyou-right {
  background: var(--cream);
}
.thankyou-right-sticky {
  padding: 40px 48px 60px 40px;
  position: sticky;
  top: calc(var(--banner-h) + 60px);
  max-height: calc(100vh - var(--banner-h) - 60px);
  overflow-y: auto;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────  */
@media (max-width: 1023px) {
  :root { --banner-h: 48px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { font-size: 22px; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card:nth-child(3) { grid-column: span 1; }
  .product-card:nth-child(3) .product-img-wrap { aspect-ratio: 3/4; }

  .product-detail { grid-template-columns: 50% 50%; }
  .product-info-col { padding: 32px 28px; }

  .checkout-header-inner { padding: 14px 32px; }
  .checkout-body { grid-template-columns: 55% 45%; }
  .checkout-left { padding: 32px 28px 48px 36px; }
  .checkout-right-sticky { padding: 32px 36px 48px 28px; top: calc(var(--banner-h) + 60px); }

  .thankyou-body { grid-template-columns: 52% 48%; }
  .thankyou-left { padding: 36px 28px 48px 36px; }
  .thankyou-right-sticky { padding: 32px 36px 48px 28px; top: calc(var(--banner-h) + 60px); }

  .category-header { padding: 28px 24px 16px; flex-direction: column; gap: 16px; }
  .filter-bar { padding: 12px 24px; }

  .cart-drawer { width: 340px; }
}

@media (max-width: 767px) {
  .banner-copy { font-size: 11px; white-space: normal; }
  .banner-next { font-size: 11px; padding: 6px 10px; }
  .banner-steps { display: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(3) .product-img-wrap { aspect-ratio: 3/4; }

  .product-detail {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .product-media { max-height: 360px; }
  .product-media img { max-height: 360px; object-position: center 20%; }
  .product-info-col { padding: 24px 20px 40px; }

  .cart-drawer {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 85vh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.15);
  }

  .checkout-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .checkout-left { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 24px 20px 32px 20px; }
  .checkout-right-sticky {
    padding: 24px 20px 40px 20px;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .checkout-header-inner { padding: 14px 20px; }

  .thankyou-body {
    grid-template-columns: 1fr;
  }
  .thankyou-left { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 28px 20px 32px 20px; }
  .thankyou-right-sticky {
    padding: 24px 20px 40px 20px;
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .category-header { padding: 20px 16px 12px; }
  .filter-bar { padding: 10px 16px; }

  #promo-reminder {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: 100%;
  }

  .cart-backdrop { top: 0; }

  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero { width: 180px; justify-content: center; }

  .order-details-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 52px; }
  .nav-logo { font-size: 20px; padding: 2px 7px 1px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-left { padding: 18px 16px 28px; }
  .checkout-right-sticky { padding: 18px 16px 28px; position: static; max-height: none; overflow-y: visible; }
  .thankyou-left { padding: 18px 16px 28px; }
  .thankyou-right-sticky { padding: 18px 16px 28px; position: static; max-height: none; overflow-y: visible; }
  .category-header { padding: 16px 14px 10px; }
  .filter-bar { padding: 8px 14px; }
}

/* ─── Embedded offer block (inside order summary right col) ──────────────────  */
.offer-embedded {
  margin-top: 20px;
  padding: 14px 16px;
  background: #f5f0e8;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--navy);
}
.offer-embedded strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.offer-embedded p { color: #555; }

/* COVR attribution — logo + text, subordinate to offer */
.covr-attribution {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}
.covr-attribution .covr-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.covr-attribution-text { color: #888; font-weight: 600; }

/* Minimal text-only attribution (cart, thank-you) */
.covr-powered-by {
  font-size: 10px;
  color: #999;
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* In cart drawer — same block, lighter bg to contrast drawer white */
.cart-offer-embedded {
  margin: 12px 0 4px;
  padding: 12px 14px;
  background: #faf8f4;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--navy);
}
.cart-offer-embedded strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.cart-offer-embedded p { color: #666; }

/* ─── Utilities ──────────────────────────────────────────────────────────────  */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
