
:root {
  --black: #FFFFFF;
  --cream: #1F2933;
  --gold: #a47d2f;
  --muted: #667085;
  --card: #FFFFFF;
  --background: #FFFFFF;
  --accent-rgb: 164, 125, 47;
  --body-text: #344054;
  --heading-text: #101828;
  --brand-name: #1F2933;
  --tagline: #667085;
  --heading-font: Georgia, Georgia, serif;
  --body-font: Arial, Arial, sans-serif;
  --brand-font: Georgia, Georgia, serif;
  --input-bg: #FFFFFF;
  --input-border: #D0D5DD;
  --input-focus: #a47d2f;
  --shadow-soft: 0 12px 32px rgba(16,24,40,.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--body-text);
  background:
    
    #FFFFFF
    ;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--background);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EAECF0;
  padding: 14px 7vw 12px;
}

.site-header.layout-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header.layout-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.layout-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.layout-left .brand {
  flex-direction: row;
  text-align: left;
  gap: 14px;
}

.brand img {
  max-height: 95px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.layout-left .brand img {
  margin-bottom: 0;
}

.brand strong {
  display: block;
  color: var(--brand-name);
  letter-spacing: .05em;
  font-family: var(--brand-font);
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.02;
  text-transform: none;
}

.brand span {
  display: block;
  font-size: 1.0rem;
  color: var(--tagline);
  margin-top: 8px;
  font-family: var(--body-font);
  letter-spacing: .04em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 14px;
  font-family: var(--body-font);
  font-size: .95rem;
  color: var(--muted);
}

.layout-left .nav {
  margin-top: 0;
  justify-content: flex-end;
}

.layout-split .brand {
  grid-column: 2;
}

.layout-split .nav {
  grid-column: 1 / -1;
}

.nav a {
  padding: 6px 2px;
}

.nav a:hover {
  color: var(--gold);
}
.hero {
  min-height: 52vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 42px 7vw 58px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .22em;
  font-size: .78rem;
  font-family: var(--body-font);
  font-weight: 700;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.0rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 820px;
  color: var(--heading-text);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--heading-text);
}

.hero-copy p:not(.eyebrow) {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
}

.button {
  display: inline-block;
  background: #101828;
  color: #FFFFFF;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: 999px;
  margin-top: 18px;
  font-family: var(--body-font);
  box-shadow: 0 18px 38px rgba(var(--accent-rgb), .22);
}

.hero-card {
  min-height: 360px;
  max-width: 480px;
  max-height: 620px;
  justify-self: center;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  
  background: transparent;
  
}
.hero-card img {
  
  width: 100%;
  max-width: 480px;
  height: 620px;
  object-fit: contain;
  
  border-radius: 0;
  filter: none;
  position: relative;
  z-index: 1;
}
.placeholder-bottle {
  width: 190px;
  height: 330px;
  border-radius: 36px 36px 80px 80px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2.2rem;
}




/* Hero Image Edge Fade Effects */
.hero-card {
  --hero-edge-fade-size: 14%;
  --hero-edge-fade-inner: 84%;
}

.hero-edge-strength-subtle {
  --hero-edge-fade-size: 8%;
  --hero-edge-fade-inner: 92%;
}

.hero-edge-strength-medium {
  --hero-edge-fade-size: 14%;
  --hero-edge-fade-inner: 84%;
}

.hero-edge-strength-strong {
  --hero-edge-fade-size: 22%;
  --hero-edge-fade-inner: 72%;
}

.hero-edge-fade-fade-left-to-right img {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 var(--hero-edge-fade-size),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 var(--hero-edge-fade-size),
    #000 100%
  );
}

.hero-edge-fade-fade-right-to-left img {
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0%,
    #000 var(--hero-edge-fade-size),
    #000 100%
  );
  mask-image: linear-gradient(
    to left,
    transparent 0%,
    #000 var(--hero-edge-fade-size),
    #000 100%
  );
}

.hero-edge-fade-fade-left-edge img {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 calc(var(--hero-edge-fade-size) * .72),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 calc(var(--hero-edge-fade-size) * .72),
    #000 100%
  );
}

.hero-edge-fade-fade-bottom-edge img {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--hero-edge-fade-inner),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--hero-edge-fade-inner),
    transparent 100%
  );
}

.hero-edge-fade-fade-all-edges img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 var(--hero-edge-fade-size),
      #000 calc(100% - var(--hero-edge-fade-size)),
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 var(--hero-edge-fade-size),
      #000 calc(100% - var(--hero-edge-fade-size)),
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 var(--hero-edge-fade-size),
      #000 calc(100% - var(--hero-edge-fade-size)),
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 var(--hero-edge-fade-size),
      #000 calc(100% - var(--hero-edge-fade-size)),
      transparent 100%
    );
  mask-composite: intersect;
}

/* Image Effects */
@keyframes sbhImageSoftFade{from{opacity:0}to{opacity:1}}
@keyframes sbhImageScaleIn{from{opacity:0;transform:scale(.96)}to{opacity:1;transform:scale(1)}}
@keyframes sbhImageSlideRight{from{opacity:0;transform:translateX(24px)}to{opacity:1;transform:translateX(0)}}
.hero-image-effect-soft-fade img,.product-image-effect-soft-fade img{opacity:0;animation:sbhImageSoftFade var(--anim-duration,.8s) ease forwards}
.hero-image-effect-scale-in img,.product-image-effect-scale-in img{opacity:0;animation:sbhImageScaleIn var(--anim-duration,.8s) cubic-bezier(.2,.8,.2,1) forwards}
.hero-image-effect-slide-in-right img{opacity:0;animation:sbhImageSlideRight var(--anim-duration,.8s) cubic-bezier(.2,.8,.2,1) forwards}
.product-image-effect-hover-lift img{transition:transform .28s ease,box-shadow .28s ease}
.product:hover .product-image-effect-hover-lift img{transform:translateY(-6px);box-shadow:0 18px 34px rgba(0,0,0,.18)}
.hero-image-effect-gentle-zoom img,.product-image-effect-gentle-zoom img{transition:transform 5s ease}
.hero-image-effect-gentle-zoom:hover img,.product:hover .product-image-effect-gentle-zoom img{transform:scale(1.035)}

/* Landing Page Effects */
.anim-speed-slow { --anim-duration: 1.15s; --anim-delay-step: .18s; }
.anim-speed-normal { --anim-duration: .82s; --anim-delay-step: .12s; }
.anim-speed-quick { --anim-duration: .55s; --anim-delay-step: .08s; }

@keyframes sbhFadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes sbhSlideDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:translateY(0); } }
@keyframes sbhScaleIn { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
@keyframes sbhRiseIn { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes sbhSoftGlow { 0%,100% { box-shadow:0 18px 38px rgba(var(--accent-rgb),.20); } 50% { box-shadow:0 20px 48px rgba(var(--accent-rgb),.38); } }
@keyframes sbhGentlePulse { 0%,100% { transform:translateY(0) scale(1); } 50% { transform:translateY(-1px) scale(1.015); } }

.header-anim-logo-fade-in .brand img { opacity:0; animation:sbhFadeIn var(--anim-duration) ease forwards; }
.header-anim-logo-slide-down .brand img { opacity:0; animation:sbhSlideDown var(--anim-duration) cubic-bezier(.2,.8,.2,1) forwards; }
.header-anim-logo-scale-in .brand img { opacity:0; animation:sbhScaleIn var(--anim-duration) cubic-bezier(.2,.8,.2,1) forwards; }
.header-anim-full-header-reveal .site-header { opacity:0; animation:sbhSlideDown var(--anim-duration) cubic-bezier(.2,.8,.2,1) forwards; }

.hero-anim-text-rise-in .hero-copy .eyebrow,
.hero-anim-text-rise-in .hero-copy h1,
.hero-anim-text-rise-in .hero-copy p:not(.eyebrow),
.hero-anim-text-rise-in .hero-copy .button,
.hero-anim-premium-stagger .hero-copy .eyebrow,
.hero-anim-premium-stagger .hero-copy h1,
.hero-anim-premium-stagger .hero-copy p:not(.eyebrow),
.hero-anim-premium-stagger .hero-copy .button,
.hero-anim-premium-stagger .hero-card {
  opacity:0;
  animation:sbhRiseIn var(--anim-duration) cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-anim-soft-fade-in .hero-copy,
.hero-anim-soft-fade-in .hero-card { opacity:0; animation:sbhFadeIn var(--anim-duration) ease forwards; }

.hero-anim-premium-stagger .hero-copy .eyebrow,
.hero-anim-text-rise-in .hero-copy .eyebrow { animation-delay:calc(var(--anim-delay-step) * 1); }
.hero-anim-premium-stagger .hero-copy h1,
.hero-anim-text-rise-in .hero-copy h1 { animation-delay:calc(var(--anim-delay-step) * 2); }
.hero-anim-premium-stagger .hero-copy p:not(.eyebrow),
.hero-anim-text-rise-in .hero-copy p:not(.eyebrow) { animation-delay:calc(var(--anim-delay-step) * 3); }
.hero-anim-premium-stagger .hero-copy .button,
.hero-anim-text-rise-in .hero-copy .button { animation-delay:calc(var(--anim-delay-step) * 4); }
.hero-anim-premium-stagger .hero-card { animation-delay:calc(var(--anim-delay-step) * 5); }

.cta-effect-soft-glow .button { animation:sbhSoftGlow 3.2s ease-in-out infinite; }
.cta-effect-gentle-pulse .button { animation:sbhGentlePulse 2.8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .respect-reduced-motion *,
  .respect-reduced-motion *::before,
  .respect-reduced-motion *::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
}

.route-strip {
  margin: 0 7vw;
  transform: translateY(-34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card);
  border: 1px solid #EAECF0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.route {
  padding: 28px;
  border-right: 1px solid rgba(var(--accent-rgb), .18);
}

.route:last-child { border-right: 0; }

.route span {
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
}

.route p {
  color: var(--muted);
}

.route strong {
  color: var(--heading-text);
}

.section {
  padding: 80px 7vw;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.product {
  background: var(--card);
  border: 1px solid #EAECF0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16,24,40,.12);
}

.product-layout-compact.product { padding: 14px; border-radius: 17px; }
.product-layout-large.product { padding: 22px; border-radius: 22px; }

.product-image {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  overflow: hidden;
  padding: 22px;
  box-sizing: border-box;
  border: 1px solid rgba(var(--accent-rgb), .13);
}
.product-image.product-layout-compact { height: 235px; padding: 18px; }
.product-image.product-layout-large { height: 330px; padding: 26px; }

.product-canvas-white { background: #fff; }
.product-canvas-cream { background: #fffaf0; }
.product-canvas-honey { background: linear-gradient(145deg, #fff7dc, #f5dfad); }
.product-canvas-transparent { background: transparent; border-color: transparent; }

.product-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  margin: auto;
  flex-shrink: 1;
  transition: transform .28s ease;
}
.product:hover .product-image img { transform: scale(1.015); }
.product-fit-smart-fit img {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 84%;
  object-fit: contain !important;
}
.product-fit-contain img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
}
.product-fit-cover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.product-title-row { min-height: 58px; }
.product > p:not(.product-tax):not(.availability-message) { flex-grow: 1; }
.product strong { margin-top: auto; }

@media (max-width: 980px) {
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
}
@media (max-width: 640px) {
  .products { grid-template-columns: 1fr; max-width: 360px; }
  .product-image { height: 275px; }
}

.product-image span {
  font-size: 5rem;
}


.about-copy p { margin: 0 0 1.15em; }
.about-copy p:last-child { margin-bottom: 0; }

.product p, .split p, li {
  color: var(--muted);
  line-height: 1.7;
}

.product strong {
  color: var(--gold);
  font-size: 1.3rem;
}

.product-tax {
  margin-top: 6px;
  font-size: .86rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}

.fee-note {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #FFFCF5;
  border: 1px solid rgba(var(--accent-rgb), .22);
  color: var(--heading-text);
  font-weight: 700;
}

.about-image-wrap {
  width: 100%;
  height: 430px;
  min-height: 280px;
  overflow: hidden;
  background: #F7F7F5;
  border: 1px solid rgba(var(--accent-rgb), .18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .10);
}
.about-image-wrap.rounded { border-radius: 24px; }
.about-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  text-align: center;
}
.about-image-placeholder span {
  color: var(--heading-text);
  font-weight: 800;
  font-size: 1.1rem;
}
.about-image-placeholder small { opacity: .8; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .about-image-wrap {
    height: min(430px, 72vw);
    min-height: 300px;
  }
}


/* Product availability and store status */
.product-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.product-title-row h3{margin-right:auto}
.availability-badge{display:inline-flex;align-items:center;white-space:nowrap;border-radius:999px;padding:6px 10px;font-size:.75rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
.availability-badge.coming-soon{background:rgba(var(--accent-rgb),.16);color:var(--accent)}
.availability-badge.sold-out{background:rgba(127,29,29,.18);color:#ef4444}
.availability-message{font-weight:700;color:var(--muted)}
.product-status-coming-soon,.product-status-sold-out{opacity:.9}
.store-closed-notice{margin:0 auto 22px;max-width:980px;border:1px solid rgba(var(--accent-rgb),.38);background:rgba(var(--accent-rgb),.10);border-radius:18px;padding:20px 22px;text-align:center}
.store-closed-notice strong{display:block;font-size:1.25rem;color:var(--heading-text);margin-bottom:8px}
.store-closed-notice p{margin:5px 0}
.store-closed-notice .resume-date{font-weight:800;color:var(--accent)}
.order-box.store-closed{opacity:.65;pointer-events:none;user-select:none}
.order-box.store-closed .checkout-panel{display:none}

.order-box {
  background: var(--card);
  border: 1px solid #EAECF0;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
}

.order {
  background: #F9FAFB;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--input-border);
  border-radius: 12px;
  background: var(--input-bg);
  color: var(--body-text);
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: #98A2B3;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .16);
}

textarea { min-height: 100px; }

/* Extra iPhone Safari zoom prevention */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea,
button,
.qty,
.order-grid input,
.order-grid select,
.order-grid textarea{
font-size:16px !important;
-webkit-text-size-adjust:100%;
text-size-adjust:100%;
}

@supports (-webkit-touch-callout:none){
input,select,textarea{
font-size:16px !important;
}
}


.schedule-line {
  font-size: .92rem;
  color: var(--body-text);
  margin: 8px 0;
}

.fulfillment-summary {
  border: 1px solid var(--input-border);
  border-radius: 14px;
  background: #F9FAFB;
  padding: 14px 16px;
  color: var(--body-text);
  line-height: 1.55;
  font-family: var(--body-font);
}

.fulfillment-summary strong {
  color: var(--heading-text);
}

.delivery-eligibility-message {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #F5B7B1;
  background: #FFF1F0;
  color: #9B1C1C;
  font-weight: 700;
  line-height: 1.5;
}
.delivery-eligibility-message.success {
  border-color: #ABEFC6;
  background: #ECFDF3;
  color: #067647;
}
.pickup-location-preview { padding:16px; border-radius:14px; border:1px solid rgba(var(--accent-rgb),.22); background:rgba(var(--accent-rgb),.08); line-height:1.55; }
.pickup-location-preview strong { display:block; color:var(--heading-text); margin-bottom:4px; }
.pickup-location-preview a { display:inline-block; margin-top:8px; font-weight:800; }


.wide { grid-column: 1 / -1; }

.cart {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.cart label {
  grid-template-columns: 1fr 90px;
  align-items: center;
  background: #F9FAFB;
  padding: 12px;
  border-radius: 12px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(var(--accent-rgb), .25);
  padding-top: 18px;
  font-size: 1.4rem;
}

.checkout-panel {
  margin-top: 28px;
  border: 1px solid #EAECF0;
  border-radius: 22px;
  padding: 24px;
  background: #FFFFFF;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #F9FAFB;
  color: var(--body-text);
  line-height: 1.6;
  margin: 14px 0;
}

.checkout-summary .line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(var(--accent-rgb), .15);
  padding-bottom: 6px;
}

.checkout-summary .line:last-child {
  border-bottom: 0;
}

.order-reference {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed var(--gold);
}

.order-reference span {
  color: var(--muted);
  font-weight: 700;
}

.order-reference strong {
  color: var(--heading-text);
  font-size: 1.35rem;
  letter-spacing: .04em;
}

.order-reference button,
.secondary-button {
  border: 1px solid var(--input-border);
  background: #FFFFFF;
  color: var(--heading-text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-panel {
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: #F9FAFB;
  border: 1px solid #EAECF0;
}

.submit-status {
  margin-top: 12px;
  font-weight: 700;
  color: var(--heading-text);
}

.submit-status.error {
  color: #B42318;
}

.confirmation-panel {
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--gold);
  background: #FFFCF5;
}

.confirmation-details {
  line-height: 1.65;
  color: var(--body-text);
}

.disabled-pay {
  opacity: .45;
  pointer-events: none;
}

.stripe-checkout-button {
  min-height: 52px;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}


.fineprint {
  color: var(--muted);
  font-family: var(--body-font);
  font-size: .9rem;
}


.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  flex-wrap: wrap;
}

.social-hero {
  grid-column: 1 / -1;
  padding-top: 0;
}

.social-about {
  padding-top: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #EAECF0;
  color: var(--heading-text);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16,24,40,.05);
  transition: transform .18s ease, border-color .18s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: var(--gold);
  flex: 0 0 auto;
}

footer {
  padding: 46px 7vw;
  border-top: 1px solid rgba(var(--accent-rgb), .22);
  background: var(--background);
  color: var(--muted);
}

footer strong {
  color: var(--gold);
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
  }

  .site-header.layout-left,
  .site-header.layout-split {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .brand strong {
    font-size: min(2.0rem, 2.4rem);
  }

  .brand span {
    font-size: min(1.0rem, 1.05rem);
  }

  .brand img {
    max-height: min(95px, 95px);
    width: auto;
    height: auto;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero, .split {
    grid-template-columns: 1fr;
  }

  .route-strip, .products {
    grid-template-columns: 1fr;
  }

  .route {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--accent-rgb), .18);
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
}


.legal-page{max-width:850px;margin:0 auto;padding:70px 24px;min-height:70vh}.legal-page a{color:var(--gold)}
/* v2.0.3: section typography controls, compact footer, and mobile header */
.hero .eyebrow { font-size:var(--hero-eyebrow-size,1.25rem); }
.hero h1 { font-size:clamp(2.4rem,7vw,var(--hero-heading-size,5rem)); }
.section[style] > .section-heading .eyebrow, .section.split[style] .eyebrow { font-size:var(--section-eyebrow-size,1.25rem); }
.section[style] > .section-heading h2, .section.split[style] h2 { font-size:clamp(2rem,6vw,var(--section-heading-size,3.5rem)); }
.order .checkout-summary .eyebrow { font-size:var(--checkout-eyebrow-size,1rem); }
.footer-column h3 { font-size:var(--footer-heading-size,1rem); }
/* v1.5.1: stable mobile viewport, contact footer, and custom image carousel */
html { width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body { width: 100%; max-width: 100%; overflow-x: clip; }
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
img, svg, video, iframe { max-width: 100%; }
input, select, textarea, button { max-width: 100%; }
.site-footer { padding: 46px clamp(20px,7vw,96px) 24px; }
.footer-grid { display:grid; grid-template-columns:repeat(3,minmax(160px,1fr)); gap:24px; max-width:980px; margin:0 auto; }
.footer-brand strong { display:block; font-family:var(--heading-font); color:var(--gold); font-size:1.35rem; margin-bottom:10px; }
.footer-column { display:flex; flex-direction:column; align-items:flex-start; gap:9px; }
.footer-column h3 { color:var(--heading); margin:0 0 6px; font-size:1rem; }
.footer-column a { color:var(--muted); text-decoration:none; overflow-wrap:anywhere; }
.footer-column a:hover { color:var(--gold); }
.veteran-owned { font-weight:700; color:var(--heading); }
.footer-bottom { max-width:1200px; margin:32px auto 0; padding-top:20px; border-top:1px solid rgba(var(--accent-rgb),.18); display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:.9rem; }
.footer-bottom p { margin:0; }
.footer-bottom a { color:inherit; }
.image-carousel-section { padding:clamp(54px,7vw,92px) clamp(18px,6vw,80px); overflow:hidden; }
.image-carousel-heading { max-width:820px; margin:0 auto 30px; text-align:center; }
.image-carousel-heading .eyebrow { font-size:var(--carousel-eyebrow-size,1.25rem); }
.image-carousel-heading h2 { font-size:clamp(2rem,7vw,var(--carousel-heading-size,3.5rem)); }
.image-carousel-intro { font-size:var(--carousel-intro-size,1rem); }
.image-carousel-shell { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:44px minmax(0,1fr) 44px; align-items:center; gap:12px; }
.image-carousel-track { display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - 48px)/4); gap:16px; overflow-x:auto; overscroll-behavior-inline:contain; scroll-snap-type:inline mandatory; scrollbar-width:none; padding:8px 2px 22px; touch-action:pan-x pan-y; }
.image-carousel-track::-webkit-scrollbar { display:none; }
.image-carousel-card { scroll-snap-align:start; margin:0; background:var(--card); border:1px solid rgba(var(--accent-rgb),.16); overflow:hidden; }
.image-carousel-card a { display:block; color:inherit; text-decoration:none; }
.image-carousel-card img { display:block; width:100%; aspect-ratio:4/3; }
.image-carousel-card figcaption { margin:0; padding:14px; line-height:1.5; font-size:var(--carousel-caption-size,1rem); }
.carousel-corners-square { border-radius:0; }
.carousel-corners-slightly-rounded { border-radius:8px; }
.carousel-corners-rounded-16-px { border-radius:16px; }
.carousel-shadow-none { box-shadow:none; }
.carousel-shadow-soft-shadow { box-shadow:0 6px 18px rgba(0,0,0,.08); }
.carousel-shadow-floating-shadow { box-shadow:0 14px 34px rgba(0,0,0,.14); }
.image-carousel-button { width:42px; height:42px; border-radius:50%; border:1px solid rgba(var(--accent-rgb),.3); background:var(--card); color:var(--heading); font-size:28px; cursor:pointer; }
.image-carousel-button:hover { border-color:var(--gold); color:var(--gold); }

@media (max-width:900px) {
  .sticky-mobile-header .site-header { position:sticky; top:0; z-index:1000; backdrop-filter:blur(14px); box-shadow:0 5px 20px rgba(0,0,0,.08); }
  .site-header, .hero, section, footer { max-width:100vw; }
  .hero, .split, .order-grid { width:100%; }
  .hero-card, .about-photo, .product, .order-card { max-width:100%; }
  .footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .image-carousel-track { grid-auto-columns:calc((100% - 16px)/2); }
}
@media (max-width:600px) {
  body { position:relative; }
  .site-header { padding-left:16px; padding-right:16px; }
  .nav { width:100%; justify-content:center; overflow-wrap:anywhere; }
  .hero, section { padding-left:18px; padding-right:18px; }
  .hero h1 { font-size:clamp(2.25rem,11vw,3.6rem); overflow-wrap:anywhere; }
  .button, .checkout-actions button { width:100%; justify-content:center; }
  .route-strip, .products, .footer-grid { grid-template-columns:1fr; }
  .image-carousel-shell { grid-template-columns:1fr; }
  .image-carousel-track { grid-auto-columns:84%; }
  .image-carousel-button { display:none; }
  .footer-bottom { flex-direction:column; }
  input, select, textarea { font-size:16px !important; }
  .site-header { padding-top:8px; padding-bottom:8px; gap:8px; }
  .site-header .brand { gap:8px; }
  .site-header .brand img { max-height:48px; margin:0; }
  .site-header .brand strong { font-size:clamp(1rem,5vw,1.3rem); line-height:1.1; letter-spacing:.01em; text-transform:none; }
  .site-header .brand span { font-size:.78rem; margin-top:2px; line-height:1.2; }
  .site-header .nav { gap:12px; margin-top:4px; font-size:.82rem; line-height:1.1; flex-wrap:wrap; }
  .footer-grid { gap:18px; }
  .site-footer { padding-top:30px; padding-bottom:18px; }
}


/* v2.0 storefront */
html{scroll-behavior:smooth}
.announcement-bar{background:var(--announcement-bg,#111827);color:var(--announcement-color,#fff);text-align:center;padding:8px 16px;font-size:var(--announcement-size,.78rem);font-family:var(--announcement-font,Arial),sans-serif;font-weight:800;letter-spacing:.12em}
.site-header{position:sticky;top:0;z-index:40;min-height:72px;background:rgba(255,255,255,.96);backdrop-filter:blur(14px);border-bottom:1px solid rgba(17,24,39,.09);box-shadow:0 8px 24px rgba(17,24,39,.05)}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit;min-width:0}
.brand-copy{display:grid;line-height:1.15}
.brand-copy strong{text-transform:none;letter-spacing:0;font-size:clamp(1rem,1.8vw,1.28rem)}
.brand-copy span{font-size:.78rem;color:var(--muted);margin-top:3px}
.header-cart-button{display:inline-flex;align-items:center;gap:7px;border:1px solid #d1d5db;background:#fff;color:#111827;border-radius:999px;padding:10px 14px;font:inherit;font-weight:800;cursor:pointer;white-space:nowrap}
.header-cart-button strong{display:grid;place-items:center;min-width:23px;height:23px;padding:0 5px;border-radius:999px;background:#111827;color:#fff;font-size:.75rem}
.products{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px}
.product{display:flex;flex-direction:column;padding:16px;border:1px solid #e5e7eb;border-radius:18px;background:#fff;box-shadow:0 12px 32px rgba(17,24,39,.07);transition:transform .2s ease,box-shadow .2s ease}
.product:hover{transform:translateY(-4px);box-shadow:0 18px 42px rgba(17,24,39,.12)}
.product-image{aspect-ratio:1/1;min-height:0;border-radius:14px;overflow:hidden;background:#f8fafc}
.product-image img{width:100%;height:100%;object-fit:cover}
.product-title-row{margin-top:15px}
.product-title-row h3{font-size:1.2rem}
.product>p{color:var(--muted);line-height:1.55;flex:1}
.product-price-row{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-top:12px}
.product-price-row strong{font-size:1.25rem}
.product-price-row span{font-size:.72rem;color:var(--muted)}
.product-cart-controls{display:grid;grid-template-columns:auto 1fr;gap:10px;margin-top:14px}
.card-quantity,.checkout-quantity{display:inline-grid;grid-template-columns:36px 38px 36px;align-items:center;border:1px solid #d1d5db;border-radius:999px;overflow:hidden;background:#fff}
.card-quantity button,.checkout-quantity button{height:38px;border:0;background:#fff;font-size:1.2rem;cursor:pointer}
.card-qty-value{text-align:center;font-weight:800}
.add-to-cart-button{border:0;border-radius:999px;background:#111827;color:#fff;font-weight:800;cursor:pointer;padding:11px 16px}
.add-to-cart-button.added{background:#166534}
.cart-backdrop{position:fixed;inset:0;z-index:70;background:rgba(15,23,42,.42);backdrop-filter:blur(2px)}
.cart-drawer{position:fixed;z-index:80;top:0;right:0;width:min(430px,94vw);height:100dvh;background:#fff;box-shadow:-18px 0 55px rgba(15,23,42,.22);display:grid;grid-template-rows:auto 1fr auto;transform:translateX(105%);transition:transform .25s ease}
.cart-drawer.open{transform:translateX(0)}
.cart-drawer-head{display:flex;justify-content:space-between;gap:20px;padding:22px;border-bottom:1px solid #e5e7eb}
.cart-drawer-head h2{margin:2px 0 0;font-size:1.5rem}
.cart-close{border:0;background:#f3f4f6;border-radius:999px;width:40px;height:40px;font-size:1.7rem;cursor:pointer}
.drawer-cart-items{padding:18px 22px;overflow:auto}
.drawer-empty{color:var(--muted);text-align:center;padding:40px 10px}
.drawer-cart-line{display:grid;grid-template-columns:1fr auto;gap:10px;padding:14px 0;border-bottom:1px solid #e5e7eb}
.drawer-cart-line strong{display:block}
.drawer-line-price{font-weight:800}
.drawer-line-controls{display:flex;align-items:center;gap:8px;margin-top:8px}
.drawer-line-controls button{width:30px;height:30px;border:1px solid #d1d5db;background:#fff;border-radius:999px;cursor:pointer}
.drawer-remove{color:#b91c1c!important;width:auto!important;border:0!important;margin-left:6px}
.drawer-cart-footer{padding:18px 22px 24px;border-top:1px solid #e5e7eb;background:#fff}
.drawer-cart-footer>div{display:flex;justify-content:space-between;font-size:1.05rem}
.drawer-checkout-button{display:block;text-align:center;margin-top:16px}
.text-button{display:block;margin:12px auto 0;border:0;background:none;text-decoration:underline;cursor:pointer;color:#374151}
.checkout-progress{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:0;margin:0 auto 24px;max-width:820px}
.checkout-progress li{display:flex;align-items:center;justify-content:center;gap:8px;padding:11px;border-radius:999px;background:#f3f4f6;font-weight:800;font-size:.86rem}
.checkout-progress li span,.checkout-block-heading>span{display:grid;place-items:center;width:28px;height:28px;border-radius:999px;background:#111827;color:#fff;font-size:.78rem;flex:0 0 auto}
.checkout-progress li.active{background:#111827;color:#fff}
.checkout-progress li.active span{background:#fff;color:#111827}
.order-box{display:grid;gap:18px;background:transparent;box-shadow:none;border:0;padding:0}
.checkout-block,.checkout-panel,.total-row{background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:22px;box-shadow:0 10px 30px rgba(17,24,39,.06)}
.checkout-block-heading{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.checkout-block-heading .eyebrow{margin:0 0 3px}
.checkout-block-heading h3{margin:0}
.checkout-cart-review{order:-1}
.checkout-cart-line{display:flex!important;align-items:center;justify-content:space-between;gap:16px}
.checkout-cart-line>span{display:grid;font-weight:800}
.checkout-cart-line small{font-weight:400;color:var(--muted);margin-top:3px}
.checkout-quantity input{width:38px;height:38px;border:0!important;border-radius:0!important;text-align:center;padding:0!important;font-weight:800;-moz-appearance:textfield}
.checkout-quantity input::-webkit-outer-spin-button,.checkout-quantity input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.total-row{font-size:1.15rem}
@media(max-width:760px){
  .announcement-bar{font-size:.66rem;padding:7px 10px}
  .site-header{min-height:58px;padding:8px 12px}
  .brand img{max-height:38px}
  .brand-copy strong{font-size:.93rem}
  .brand-copy span{display:none}
  .nav{display:none}
  .header-cart-button{padding:8px 10px}
  .header-cart-button>span:nth-child(2){display:none}
  .products{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .product{padding:10px;border-radius:14px}
  .product-title-row h3{font-size:1rem}
  .product>p{font-size:.84rem}
  .product-cart-controls{grid-template-columns:1fr}
  .card-quantity{width:100%;grid-template-columns:1fr 34px 1fr}
  .add-to-cart-button{font-size:.84rem;padding:10px}
  .product-price-row{display:grid;gap:1px}
  .checkout-progress{grid-template-columns:repeat(4,1fr);gap:4px}
  .checkout-progress li{font-size:0;padding:8px}
  .checkout-progress li span{font-size:.75rem}
  .checkout-block,.checkout-panel,.total-row{padding:16px;border-radius:14px}
  .checkout-cart-line{align-items:flex-start}
}
@media(max-width:420px){
  .products{grid-template-columns:1fr}
}

/* v2.0.3 restored v1.5.4 product cards */
.products{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:22px!important;max-width:1040px!important;margin-left:auto!important;margin-right:auto!important;align-items:stretch!important}
.product{background:var(--card)!important;border:1px solid #EAECF0!important;border-radius:20px!important;padding:18px!important;box-shadow:0 8px 24px rgba(16,24,40,.06)!important;min-width:0!important;height:100%!important;display:flex!important;flex-direction:column!important}
.product-image{width:100%!important;height:280px!important;aspect-ratio:auto!important;border-radius:18px!important;display:grid!important;place-items:center!important;margin:0 auto 17px!important;overflow:hidden!important;padding:22px!important;box-sizing:border-box!important;border:1px solid rgba(var(--accent-rgb),.13)!important}
.product-image.product-layout-compact{height:235px!important;padding:18px!important}.product-image.product-layout-large{height:330px!important;padding:26px!important}
.product-image img{display:block!important;width:auto!important;height:auto!important;max-width:100%!important;max-height:100%!important;object-fit:contain!important;object-position:center!important;margin:auto!important}
.product-title-row{min-height:58px!important;margin-top:0!important}.product>p:not(.product-tax):not(.availability-message){flex-grow:1}.product>strong{margin-top:auto;color:var(--gold);font-size:1.3rem}.product-tax{margin-top:6px;font-size:.86rem;color:var(--muted)}
.classic-card-cart{display:grid;grid-template-columns:auto 1fr;gap:10px;margin-top:12px}
@media(max-width:980px){.products{grid-template-columns:repeat(2,minmax(0,1fr))!important;max-width:720px!important}}
@media(max-width:640px){.products{grid-template-columns:1fr!important;max-width:360px!important}.product-image{height:275px!important}}

.checkout-cart-empty{
  margin:0;
  padding:18px;
  border:1px dashed rgba(var(--accent-rgb),.28);
  border-radius:14px;
  color:var(--muted);
  text-align:center;
}
.checkout-cart-line[hidden]{display:none!important}