:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf7f2;
  --paper: rgba(255, 250, 244, 0.84);
  --ink: #201713;
  --muted: #62554d;
  --line: rgba(76, 51, 39, 0.14);
  --gold: #b88239;
  --gold-deep: #8d5b18;
  --wine: #5f241a;
  --forest: #0f3b35;
  --shadow: 0 30px 80px rgba(52, 30, 19, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 130, 57, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(95, 36, 26, 0.11), transparent 22%),
    linear-gradient(180deg, #f3ebdf 0%, #f9f6f1 45%, #f4eee6 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.announcement-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: #241713;
  color: #f5e6d1;
  font-size: 0.92rem;
}

.announcement-bar a {
  color: #f7c987;
}

.section,
.hero {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 242, 0.92);
  border-bottom: 1px solid rgba(109, 85, 68, 0.08);
  box-shadow: 0 18px 40px rgba(54, 34, 23, 0.08);
}

.site-header::before {
  content: none;
}

.site-header-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  color: #fffaf2;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold), var(--wine));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 1rem;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.72);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.header-actions .btn {
  padding: 12px 18px;
}

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

.btn-primary {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--wine), #8d3c23 55%, var(--gold));
  box-shadow: 0 16px 30px rgba(95, 36, 26, 0.2);
}

.btn-accent {
  color: #201713;
  background: linear-gradient(135deg, #f2cb74, #dca347 58%, #b88239);
  border-color: rgba(141, 91, 24, 0.22);
  box-shadow: 0 16px 28px rgba(184, 130, 57, 0.24);
}

.btn-dark {
  background: #1e1714;
  color: #f8efe5;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.55);
}

.btn-cart {
  border-color: rgba(95, 36, 26, 0.16);
  color: var(--wine);
  background: linear-gradient(180deg, rgba(184, 130, 57, 0.14), rgba(255,255,255,0.62));
}

.hero {
  padding: 56px 0 28px;
}

.home-banner-slider {
  position: relative;
  width: 100%;
  margin-top: 10px;
  min-height: clamp(320px, 55vw, 620px);
  overflow: hidden;
  background: #1b120f;
}

.home-banner-slider-track {
  display: flex;
  height: 100%;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-banner-slide {
  position: relative;
  min-width: 100%;
  margin: 0;
  height: clamp(320px, 55vw, 620px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(180deg, #f3eadf, #e9ddd0);
}

.home-banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 11, 8, 0.04) 0%, rgba(18, 11, 8, 0.18) 100%);
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.home-banner-slider-controls-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: min(calc(var(--container) + 80px), 100%);
  margin: 0 auto;
  padding: 20px 40px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.home-banner-slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(29, 18, 13, 0.28);
  border: 1px solid rgba(255, 240, 225, 0.18);
  box-shadow: 0 12px 28px rgba(13, 8, 6, 0.18);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.home-banner-arrow,
.home-banner-dot {
  border: 0;
  cursor: pointer;
}

.home-banner-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff5e9;
  background: rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, transform 180ms ease;
}

.home-banner-arrow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.home-banner-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 243, 230, 0.42);
  transition: width 220ms ease, background 220ms ease;
}

.home-banner-dot.is-active {
  width: 28px;
  background: #fff5e9;
}

.hero-grid,
.split-grid,
.pricing-grid,
.products-grid,
.value-grid,
.testimonial-grid,
.footer-grid,
.contact-grid,
.stats-grid,
.campaign-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(184, 130, 57, 0.1);
  color: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 18px 0 20px;
  letter-spacing: -0.03em;
}

.hero-copy p,
.section-copy,
.card-copy,
.footer-copy,
.list-copy,
.contact-copy,
.pricing-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-actions,
.pill-row,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-actions > .btn,
.mini-actions > form {
  flex: 1 1 180px;
}

.mini-actions > form .btn,
.mini-actions > .btn {
  width: 100%;
}

.pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(91, 66, 49, 0.11);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-visual,
.premium-panel,
.feature-card,
.product-card,
.pricing-card,
.testimonial-card,
.contact-card,
.meta-card,
.faq-card,
.story-card {
  background: var(--paper);
  border: 1px solid rgba(91, 66, 49, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-visual {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.hero-visual::before {
  width: 210px;
  height: 210px;
  background: rgba(184, 130, 57, 0.18);
  top: -60px;
  right: -40px;
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  background: rgba(15, 59, 53, 0.12);
  bottom: -40px;
  left: -40px;
}

.device-stack {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.device-card {
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(145deg, #241713, #44261d);
  color: #f5e7d8;
}

.device-card.secondary {
  background: linear-gradient(145deg, #f7efe4, #fffaf2);
  color: var(--ink);
}

.device-chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: inherit;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.device-card.secondary .device-chip {
  background: rgba(95, 36, 26, 0.08);
}

.device-card h3,
.section h2,
.pricing-card h3,
.product-card h3,
.feature-card h3,
.contact-card h3,
.meta-card h3,
.story-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
}

.device-card.secondary .metric {
  background: rgba(95, 36, 26, 0.06);
}

.metric strong {
  display: block;
  font-size: 1.25rem;
}

.section {
  padding: 40px 0;
}

.section-header {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  margin: 14px 0;
}

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

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

.stat-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
}

.stat-card strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}

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

.product-card,
.feature-card,
.pricing-card,
.testimonial-card,
.contact-card,
.meta-card,
.faq-card,
.story-card {
  padding: 28px;
}

.product-card-media,
.product-gallery-feature,
.product-gallery-thumb,
.product-gallery-placeholder {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(184, 130, 57, 0.14), rgba(95, 36, 26, 0.1));
  border: 1px solid rgba(91, 66, 49, 0.08);
}

.product-card-media,
.product-gallery-feature,
.product-gallery-placeholder {
  margin-bottom: 20px;
}

.product-gallery-trigger {
  padding: 0;
  width: 100%;
  cursor: zoom-in;
  appearance: none;
}

.product-card-media img,
.product-gallery-feature img,
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-media {
  aspect-ratio: 4 / 3;
}

.product-card-link {
  display: block;
}

.product-card-placeholder {
  min-height: 100%;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 10px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 24%),
    linear-gradient(145deg, rgba(95, 36, 26, 0.94), rgba(32, 23, 19, 0.98));
  color: #f8eee2;
}

.product-card-placeholder span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 238, 226, 0.72);
}

.product-card-placeholder strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.product-title-link {
  transition: color 0.2s ease;
}

.product-title-link:hover {
  color: var(--wine);
}

.product-card .product-eyebrow,
.price-tag,
.label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(95, 36, 26, 0.08);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.list-clean,
.footer-list,
.feature-list,
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li,
.feature-list li,
.footer-list li {
  position: relative;
  padding-left: 22px;
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.7;
}

.list-clean li::before,
.feature-list li::before,
.footer-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--wine));
  position: absolute;
  left: 0;
  top: 0.7em;
}

.value-grid,
.testimonial-grid,
.campaign-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(95, 36, 26, 0.98), rgba(39, 21, 15, 0.98));
  color: #f4e9dd;
}

.pricing-card.featured .pricing-copy,
.pricing-card.featured .feature-list li,
.pricing-card.featured .price-note {
  color: rgba(244, 233, 221, 0.78);
}

.pricing-card .price {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 18px 0 8px;
}

.price-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-card .btn {
  margin-top: 16px;
}

.feature-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.95fr 1.05fr;
}

.premium-panel {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(184,130,57,0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,250,244,0.94), rgba(246,240,232,0.84));
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--wine));
  color: #fff7ee;
  font-weight: 800;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1.05;
  margin: 0 0 18px;
}

.testimonial-card small,
.muted {
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(98, 85, 77, 0.18);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255,255,255,0.72);
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  width: 100%;
  padding: 40px 0 56px;
  background: #6b291b;
  color: #f8eee4;
}

.site-footer a,
.site-footer h4,
.site-footer .brand-mark strong,
.site-footer .brand-mark small {
  color: inherit;
}

.site-footer .footer-copy,
.site-footer .footer-bottom,
.site-footer .footer-list li,
.site-footer .footer-list a {
  color: rgba(248, 238, 228, 0.82);
}

.site-footer .footer-list li::before {
  background: linear-gradient(135deg, #f3cf9d, #f8eee4);
}

.site-footer .brand-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.85fr 0.95fr;
  padding: 32px;
  border-top: 1px solid rgba(255, 238, 222, 0.16);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: 0.92rem;
}

.page-hero {
  width: 100%;
  padding: 0 0 24px;
}

.page-hero-panel {
  width: 100%;
  padding: 32px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(32, 23, 19, 0.98), rgba(95, 36, 26, 0.94));
  color: #f6ecdf;
  box-shadow: var(--shadow);
}

.page-hero-panel p {
  color: rgba(246, 236, 223, 0.8);
}

.meta-card {
  background: linear-gradient(180deg, rgba(255,248,241,0.92), rgba(248, 241, 233, 0.8));
}

.campaign-grid .meta-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.faq-grid {
  display: grid;
  gap: 18px;
}

.store-grid,
.cart-layout,
.checkout-layout,
.thankyou-layout,
.account-layout,
.account-orders,
.product-detail-layout {
  display: grid;
  gap: 24px;
}

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

.store-card,
.cart-card,
.summary-card,
.checkout-card,
.thankyou-card,
.coupon-card,
.account-card,
.account-order-card,
.product-detail-card {
  background: var(--paper);
  border: 1px solid rgba(91, 66, 49, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.store-card .price-hero {
  font-size: 2rem;
  font-weight: 800;
  margin: 14px 0 6px;
}

.products-grid .price-hero {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
  color: var(--wine);
}

.store-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(95, 36, 26, 0.08);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.cart-layout,
.checkout-layout,
.thankyou-layout,
.account-layout,
.product-detail-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.product-detail-layout {
  grid-template-areas:
    "media purchase"
    "content purchase";
}

.product-detail-media-card {
  grid-area: media;
}

.product-purchase-card {
  grid-area: purchase;
  position: sticky;
  top: 104px;
}

.product-detail-content-card {
  grid-area: content;
}

.product-detail-name {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 10px 0 10px;
}

.product-detail-headline {
  margin-bottom: 18px;
}

.product-gallery-shell {
  display: grid;
  gap: 14px;
}

.product-gallery-feature,
.product-gallery-placeholder {
  aspect-ratio: 16 / 10;
}

.product-gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.product-gallery-thumb {
  aspect-ratio: 1 / 1;
}

.product-purchase-meta {
  display: grid;
  gap: 8px;
}

.product-purchase-price {
  margin: 4px 0 2px;
  font-weight: 900;
}

.product-purchase-card .cart-actions .btn {
  flex: 1 1 180px;
}

body.lightbox-open {
  overflow: hidden;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.82);
  backdrop-filter: blur(8px);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(88vw, 1040px);
  height: min(82vh, 780px);
  margin: min(6vh, 44px) auto;
  padding: 28px 76px 110px;
  border-radius: 28px;
  background: rgba(28, 22, 18, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  display: grid;
  align-items: center;
}

.product-lightbox-figure {
  margin: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  min-height: 0;
}

.product-lightbox-figure img {
  max-width: 100%;
  max-height: calc(82vh - 210px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.product-lightbox-close,
.product-lightbox-nav {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.product-lightbox-prev {
  left: 0;
}

.product-lightbox-next {
  right: 0;
}

.product-lightbox-meta {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-lightbox-thumbs {
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  width: min(100%, 720px);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 6px;
  justify-content: center;
}

.product-lightbox-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 0.7;
}

.product-lightbox-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.product-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .product-lightbox-dialog {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
    margin: 12px auto;
    padding: 64px 16px 122px;
    border-radius: 22px;
  }

  .product-lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 50px;
    height: 50px;
  }

  .product-lightbox-prev {
    left: 16px;
  }

  .product-lightbox-next {
    right: 16px;
  }

  .product-lightbox-figure img {
    max-height: calc(100vh - 240px);
  }

  .product-lightbox-thumbs {
    bottom: 72px;
    width: calc(100% - 24px);
    justify-content: flex-start;
  }

  .product-lightbox-thumb {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .product-lightbox-meta {
    bottom: 18px;
  }
}

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

.account-order-head,
.account-order-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-order-statuses {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.status-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 59, 53, 0.08);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.cart-item,
.summary-line,
.offer-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qty-input {
  width: 78px;
  text-align: center;
}

.btn-remove {
  border-color: rgba(95, 36, 26, 0.18);
  color: var(--wine);
}

.summary-stack {
  display: grid;
  gap: 12px;
}

.summary-line.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.offer-badge {
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 59, 53, 0.08);
  color: var(--forest);
  font-weight: 700;
}

.checkout-card .field-row,
.coupon-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.address-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.address-section-head {
  margin-bottom: 14px;
}

.address-section-head h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.address-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

#shippingAddressFields.is-muted {
  opacity: 0.78;
}

.coupon-inline {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.cart-empty {
  text-align: center;
  padding: 48px 20px;
}

.thankyou-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--wine));
  color: #fff9f2;
  font-size: 2rem;
  margin-bottom: 18px;
}

.support-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  color: var(--muted);
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

.whatsapp-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f9d55, #0f7d42);
  color: #f6fff8;
  box-shadow: 0 20px 45px rgba(15, 125, 66, 0.28);
}

body.has-sticky-cart {
  padding-bottom: 108px;
}

.sticky-cart-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 24px));
  z-index: 35;
}

.sticky-cart-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.94);
  border: 1px solid rgba(109, 85, 68, 0.14);
  box-shadow: 0 18px 45px rgba(57, 32, 24, 0.16);
  backdrop-filter: blur(16px);
}

.sticky-cart-link {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.sticky-cart-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(90, 16, 40, 0.09);
  color: var(--wine);
  flex: 0 0 auto;
}

.sticky-cart-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-cart-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-cart-copy strong,
.sticky-cart-copy small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cart-copy strong {
  font-size: 0.98rem;
}

.sticky-cart-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.sticky-cart-checkout {
  flex: 0 0 auto;
  min-width: 132px;
  justify-content: center;
}

.whatsapp-sticky-icon {
  width: 31px;
  height: 31px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .store-grid,
  .products-grid,
  .pricing-grid,
  .value-grid,
  .testimonial-grid,
  .campaign-grid,
  .split-grid,
  .contact-grid,
  .feature-panel,
  .footer-grid,
  .stats-grid,
  .cart-layout,
  .checkout-layout,
  .thankyou-layout,
  .account-layout,
  .account-orders,
  .product-detail-layout {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail-layout {
    grid-template-areas:
      "media purchase"
      "content purchase";
  }

  .footer-grid > :first-child,
  .hero-grid > :first-child,
  .feature-panel > :first-child,
  .contact-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .announcement-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    padding: 0;
  }

  .site-header-inner {
    display: flex;
    flex-wrap: wrap;
    width: min(var(--container), calc(100% - 24px));
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    padding: 12px;
    border-radius: 24px;
    overflow: visible;
    justify-content: flex-start;
    gap: 4px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(109, 85, 68, 0.08);
  }

  .header-actions {
    order: 4;
    flex: 1 0 100%;
  }

  .hero,
  .section {
    width: min(var(--container), calc(100% - 24px));
  }

  .footer-inner {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-grid,
  .store-grid,
  .products-grid,
  .pricing-grid,
  .value-grid,
  .testimonial-grid,
  .campaign-grid,
  .split-grid,
  .contact-grid,
  .feature-panel,
  .footer-grid,
  .field-row,
  .coupon-inline,
  .stats-grid,
  .metric-row,
  .cart-layout,
  .checkout-layout,
  .thankyou-layout,
  .account-layout,
  .account-orders,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-layout {
    grid-template-areas:
      "media"
      "purchase"
      "content";
  }

  .product-purchase-card {
    position: static;
    top: auto;
  }

  .account-order-head,
  .account-order-meta {
    flex-direction: column;
  }

  .account-order-statuses {
    justify-items: start;
  }

  .display {
    font-size: clamp(2.6rem, 10vw, 4.5rem);
  }

  .home-banner-slider,
  .home-banner-slide {
    min-height: 340px;
    height: 340px;
  }

  .home-banner-slider {
    width: calc(100% - 24px);
    margin: 10px auto 0;
    border-radius: 22px;
  }

  .product-detail-name {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .home-banner-slider-controls-wrap {
    width: 100%;
    padding: 14px;
    justify-content: flex-end;
  }

  .home-banner-slider-controls {
    width: auto;
    max-width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .home-banner-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .home-banner-dots {
    flex: 1 1 auto;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-banner-dots::-webkit-scrollbar {
    display: none;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-sticky {
    right: 14px;
    bottom: 14px;
  }

  body.has-sticky-cart {
    padding-bottom: 92px;
  }

  .sticky-cart-dock {
    width: calc(100% - 20px);
    bottom: 10px;
  }

  .sticky-cart-pill {
    border-radius: 999px;
    padding: 8px 8px 8px 12px;
    gap: 10px;
    align-items: center;
    flex-direction: row;
  }

  .sticky-cart-link {
    gap: 10px;
  }

  .sticky-cart-icon {
    width: 36px;
    height: 36px;
  }

  .sticky-cart-copy strong {
    font-size: 0.9rem;
  }

  .sticky-cart-copy small {
    font-size: 0.76rem;
  }

  .sticky-cart-checkout {
    min-width: 96px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .whatsapp-sticky {
    bottom: 88px;
  }
}

/* Storefront theme refresh */
:root {
  --storefront-navy: #23395d;
  --storefront-orange: #f27a2b;
  --storefront-orange-deep: #df5d14;
  --storefront-cream: #fbf7f1;
  --storefront-paper: #ffffff;
  --storefront-line: #ddd6cb;
  --storefront-copy: #4f5f78;
  --storefront-shadow: 0 10px 28px rgba(35, 57, 93, 0.12);
}

body {
  background:
    radial-gradient(circle at top left, rgba(242, 122, 43, 0.09), transparent 18%),
    linear-gradient(180deg, #f7f5f1 0%, #f4f1ec 100%);
  color: var(--storefront-navy);
}

.site-shell {
  background: transparent;
}

.announcement-bar {
  padding: 8px 16px;
  background: #252c36;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.announcement-bar a {
  color: #ffd8ba;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 14px rgba(31, 44, 63, 0.08);
  border-bottom: 1px solid rgba(35, 57, 93, 0.08);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 0;
}

.brand-mark {
  gap: 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.brand-script {
  font-family: "Satisfy", cursive;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  line-height: 1;
  color: var(--storefront-navy);
}

.brand-accent {
  font-size: clamp(1.3rem, 1.5vw, 1.55rem);
  font-weight: 700;
  color: var(--storefront-orange);
}

.site-nav {
  gap: 12px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--storefront-navy);
  font-size: 0.92rem;
}

.site-nav a.active,
.site-nav a:hover {
  background: transparent;
  color: var(--storefront-orange-deep);
}

.header-actions {
  gap: 8px;
}

.icon-action {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(35, 57, 93, 0.12);
  background: #fff;
  color: var(--storefront-navy);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icon-action:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 122, 43, 0.4);
  box-shadow: 0 10px 18px rgba(35, 57, 93, 0.1);
}

.icon-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-action {
  border-color: rgba(242, 122, 43, 0.24);
}

.cart-count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff4d5e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.nav-toggle span {
  width: 21px;
  margin: 4px auto;
  background: var(--storefront-navy);
}

.storefront-home {
  padding: 18px 0 48px;
}

.store-page {
  padding: 28px 0 64px;
}

.product-page,
.cart-page,
.product-related-section {
  padding: 18px 0 48px;
}

.storefront-container {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
}

.storefront-frame {
  border: 1px solid rgba(220, 209, 196, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(249, 245, 239, 0.96));
  box-shadow: 0 18px 40px rgba(35, 57, 93, 0.12);
  overflow: hidden;
}

.store-page-frame {
  display: grid;
  gap: 0;
}

.product-page-frame,
.cart-page-frame,
.product-related-frame {
  display: grid;
  gap: 0;
}

.store-page-hero {
  padding: 0;
}

.product-page-hero,
.cart-page-hero {
  padding: 0;
}

.store-page-hero-panel {
  width: 100%;
  padding: 46px 36px 42px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(243, 199, 141, 0.24), transparent 34%),
    linear-gradient(180deg, #fff7ec 0%, #f8e6cb 100%);
  color: var(--storefront-navy);
  box-shadow: none;
  border-bottom: 1px solid rgba(220, 209, 196, 0.95);
  text-align: center;
}

.product-page-hero-panel,
.cart-page-hero-panel {
  width: 100%;
  padding: 34px 24px 30px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(243, 199, 141, 0.24), transparent 34%),
    linear-gradient(180deg, #fff7ec 0%, #f8e6cb 100%);
  color: var(--storefront-navy);
  box-shadow: none;
  border-bottom: 1px solid rgba(220, 209, 196, 0.95);
  text-align: center;
}

.store-page-hero-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: #3f5676;
}

.product-page-hero-panel p,
.cart-page-hero-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: #3f5676;
}

.store-page-title {
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  margin-bottom: 14px;
}

.product-page-title,
.cart-page-title {
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  margin-bottom: 14px;
}

.store-page-eyebrow {
  background: rgba(49, 87, 166, 0.08);
  color: #3157a6;
}

.product-page-eyebrow,
.cart-page-eyebrow {
  background: rgba(49, 87, 166, 0.08);
  color: #3157a6;
}

.store-page-hero-panel .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.store-page-body {
  padding: 28px;
}

.product-page-body,
.cart-page-body {
  padding: 14px;
}

.store-page-flash {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 57, 93, 0.08);
  box-shadow: 0 8px 20px rgba(35, 57, 93, 0.08);
}

.product-page-flash,
.cart-page-flash {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 57, 93, 0.08);
  box-shadow: 0 8px 20px rgba(35, 57, 93, 0.08);
}

.store-page-header {
  max-width: none;
  margin-bottom: 32px;
  padding: 8px 8px 0;
}

.store-page-section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--storefront-navy);
}

.store-page-grid {
  gap: 24px;
}

.store-page-card {
  padding: 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 209, 196, 0.72);
  box-shadow: none;
}

.store-page-card-media {
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(220, 209, 196, 0.72);
  background: #f7f2eb;
}

.store-page-tag {
  background: rgba(49, 87, 166, 0.08);
  color: #3157a6;
}

.store-page-card-title {
  margin: 16px 0 10px;
  color: var(--storefront-navy);
  font-size: 1.2rem;
}

.store-page-price {
  margin: 0 0 14px;
  font-size: 1.7rem;
  color: var(--storefront-orange-deep);
}

.store-page-copy {
  min-height: 72px;
  color: var(--storefront-copy);
  line-height: 1.7;
}

.store-page-note {
  margin-top: 14px;
  color: #5a6a80;
}

.store-page-form {
  margin-top: 22px;
}

.store-page-form .btn,
.store-page-secondary-cta {
  width: 100%;
}

.store-page-secondary-cta {
  margin-top: 14px;
}

.store-page-benefits {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(220, 209, 196, 0.95);
}

.store-page-story-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(35, 57, 93, 0.08);
  box-shadow: 0 8px 18px rgba(35, 57, 93, 0.08);
}

.product-page-layout,
.cart-page-layout {
  gap: 14px;
}

.product-page-card,
.cart-page-main-card,
.cart-page-summary-card,
.product-related-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dedad1;
  box-shadow: 0 8px 18px rgba(35, 57, 93, 0.08);
}

.product-page-card .premium-panel {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247, 244, 239, 0.92));
  border: 1px solid rgba(35, 57, 93, 0.08);
  box-shadow: none;
}

.product-page-card .product-eyebrow,
.product-related-card .store-tag {
  background: rgba(49, 87, 166, 0.08);
  color: #3157a6;
}

.product-detail-name,
.product-page-card h3,
.cart-page-summary-card h3 {
  color: var(--storefront-navy);
}

.product-purchase-price,
.product-related-card .price-hero {
  color: var(--storefront-orange-deep);
}

.product-page-card .card-copy,
.product-page-card .mini-note,
.cart-page-main-card .mini-note,
.cart-page-summary-card .summary-line span {
  color: var(--storefront-copy);
}

.cart-page-item {
  border-bottom-color: rgba(220, 209, 196, 0.95);
}

.cart-page-coupon-card {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(35, 57, 93, 0.08);
  box-shadow: none;
}

.cart-page-actions .btn {
  flex: 1 1 180px;
}

.product-related-frame {
  padding: 14px;
}

.product-related-header {
  max-width: none;
  margin-bottom: 18px;
  padding: 12px 6px 0;
}

.product-related-grid {
  gap: 14px;
}

.product-related-card {
  padding: 16px;
}

.product-related-card .product-card-media {
  margin-bottom: 14px;
  border-radius: 12px;
}

.product-related-card h3 {
  margin: 14px 0 8px;
  color: var(--storefront-navy);
}

.promo-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 28px 38px;
  border-bottom: 1px solid rgba(220, 209, 196, 0.95);
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 199, 141, 0.28), transparent 45%),
    linear-gradient(180deg, #fff7ec 0%, #f8e6cb 100%);
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.4), transparent 35%);
  pointer-events: none;
}

.promo-banner-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.promo-banner-copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--storefront-navy);
}

.promo-banner-copy p {
  margin: 14px 0 28px;
  font-size: clamp(1rem, 1.6vw, 1.65rem);
  font-weight: 700;
  color: #3f5676;
}

.cta-button,
.card-link,
.mini-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--storefront-orange), var(--storefront-orange-deep));
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(242, 122, 43, 0.25);
}

.card-link.is-ghost,
.mini-cart-button {
  background: #fff;
  color: var(--storefront-navy);
  border: 1px solid rgba(35, 57, 93, 0.14);
  box-shadow: none;
}

.mini-cart-button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
  cursor: pointer;
}

.storefront-flash {
  margin: 24px 24px 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #eef7ef;
  color: #23603b;
  font-weight: 700;
}

.storefront-flash.danger {
  background: #fff0f2;
  color: #a33c48;
}

.storefront-section {
  margin-top: 28px;
  padding: 0;
  border-top: 1px solid rgba(220, 209, 196, 0.95);
  background: rgba(255, 255, 255, 0.94);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 22px 24px 18px;
}

.section-heading span {
  height: 1px;
  background: #d9d4ca;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  color: var(--storefront-navy);
  line-height: 1;
}

.storefront-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 24px 28px;
}

.storefront-card {
  border: 1px solid rgba(220, 209, 196, 0.72);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.storefront-card-image {
  display: block;
  aspect-ratio: 1.2 / 1;
  background: #f7f2eb;
}

.storefront-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-card-image-placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 26%),
    linear-gradient(145deg, rgba(49, 87, 166, 0.14), rgba(242, 122, 43, 0.16));
  color: var(--storefront-navy);
}

.storefront-card-image-placeholder span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3157a6;
}

.storefront-card-image-placeholder strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.storefront-card-body {
  padding: 18px 18px 20px;
  text-align: center;
}

.storefront-card-badge {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(49, 87, 166, 0.08);
  color: #3157a6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.storefront-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  color: var(--storefront-navy);
}

.storefront-card-body p {
  margin: 0;
  color: var(--storefront-copy);
  font-size: 0.92rem;
  line-height: 1.65;
}

.storefront-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.storefront-card-actions form {
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 24px 28px;
}

.category-pill {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(220, 209, 196, 0.78);
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
  box-shadow: none;
}

.category-pill-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  font-weight: 900;
}

.category-pill-label {
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.15;
}

.category-pill-google .category-pill-icon,
.category-pill-google .category-pill-label {
  color: #3157a6;
}

.category-pill-instagram {
  background: linear-gradient(135deg, #ff7d39, #f3438a 55%, #6f35d6);
}

.category-pill-instagram .category-pill-icon {
  background: rgba(255, 255, 255, 0.16);
}

.category-pill-instagram .category-pill-icon,
.category-pill-instagram .category-pill-label {
  color: #fff;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding: 26px 24px 28px;
  border-top: 1px solid rgba(220, 209, 196, 0.95);
  background:
    radial-gradient(circle at left bottom, rgba(126, 175, 88, 0.18), transparent 18%),
    radial-gradient(circle at right bottom, rgba(244, 164, 96, 0.18), transparent 20%),
    linear-gradient(180deg, #fefefe, #f3f0eb);
}

.service-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--storefront-navy);
  font-weight: 800;
}

.service-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--storefront-navy);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.promo-banner-art {
  position: absolute;
  bottom: -8px;
  width: 180px;
  height: 110px;
  pointer-events: none;
  opacity: 0.95;
}

.promo-banner-art::before,
.promo-banner-art::after {
  content: "";
  position: absolute;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-28deg);
  background: linear-gradient(180deg, #7eaf58, #4e7e35);
}

.promo-banner-art::before {
  width: 90px;
  height: 34px;
  bottom: 20px;
  left: 18px;
}

.promo-banner-art::after {
  width: 70px;
  height: 28px;
  bottom: 44px;
  left: 76px;
}

.promo-banner-art-left {
  left: -8px;
}

.promo-banner-art-left::before {
  transform: rotate(25deg);
}

.promo-banner-art-left::after {
  transform: rotate(-2deg);
}

.promo-banner-art-right {
  right: -8px;
  transform: scaleX(-1);
}

.site-footer {
  padding: 34px 0 46px;
  background: #231713;
  color: #f7eee4;
  border-top: 1px solid rgba(255, 238, 222, 0.12);
}

.site-footer .footer-copy,
.site-footer .footer-bottom,
.site-footer .footer-list li,
.site-footer .footer-list a {
  color: rgba(247, 238, 228, 0.82);
}

.site-footer .footer-list li::before {
  background: linear-gradient(180deg, #f6c37a, #ea8d43);
}

.footer-grid {
  padding: 0 0 26px;
  border-top: 0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 238, 222, 0.14);
}

@media (max-width: 960px) {
  .announcement-bar {
    display: none;
  }

  .site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "toggle brand actions"
      "nav nav nav";
    width: calc(100% - 20px);
    gap: 10px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-block;
    grid-area: toggle;
    margin: 0;
  }

  .brand-mark {
    grid-area: brand;
    justify-self: center;
  }

  .brand-script {
    font-size: 1.62rem;
  }

  .brand-accent {
    font-size: 1.18rem;
  }

  .header-actions {
    grid-area: actions;
    width: auto;
    display: flex;
    justify-self: end;
  }

  .desktop-action {
    display: none;
  }

  .cart-action {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    padding: 8px 0 0;
    background: transparent;
    border: 0;
  }

  .site-header.is-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 10px;
    background: #f7f6f2;
  }

  .storefront-home {
    padding: 12px 0 40px;
  }

  .store-page {
    padding: 12px 0 40px;
  }

  .product-page,
  .cart-page,
  .product-related-section {
    padding-top: 8px;
  }

  .storefront-container {
    width: calc(100% - 12px);
  }

  .storefront-frame {
    border-radius: 14px;
  }

  .store-page-body {
    padding: 16px 12px;
  }

  .product-page-body,
  .cart-page-body,
  .product-related-frame {
    padding: 10px 8px;
  }

  .store-page-hero-panel {
    padding: 28px 18px 24px;
  }

  .product-page-hero-panel,
  .cart-page-hero-panel {
    padding: 22px 14px 20px;
  }

  .store-page-title {
    font-size: 1.8rem;
  }

  .product-page-title,
  .cart-page-title {
    font-size: 1.8rem;
  }

  .store-page-header {
    padding: 6px 2px 0;
    margin-bottom: 18px;
  }

  .product-related-header {
    padding: 8px 2px 0;
    margin-bottom: 12px;
  }

  .store-page-section-title {
    font-size: 1.45rem;
  }

  .promo-banner {
    min-height: 138px;
    padding: 24px 16px 22px;
  }

  .promo-banner-copy h1 {
    font-size: 1.35rem;
  }

  .promo-banner-copy p {
    margin: 8px 0 16px;
    font-size: 0.86rem;
  }

  .cta-button {
    min-height: 38px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .promo-banner-art {
    width: 92px;
    height: 70px;
  }

  .promo-banner-art::before {
    width: 44px;
    height: 20px;
    left: 8px;
    bottom: 14px;
  }

  .promo-banner-art::after {
    width: 34px;
    height: 16px;
    left: 34px;
    bottom: 30px;
  }

  .section-heading {
    padding: 16px 12px 12px;
    gap: 8px;
  }

  .section-heading h2 {
    font-size: 1rem;
  }

  .storefront-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px 16px;
  }

  .store-page-grid {
    gap: 14px;
  }

  .store-page-card {
    padding: 14px;
    border-radius: 10px;
  }

  .product-page-card,
  .cart-page-main-card,
  .cart-page-summary-card,
  .product-related-card {
    padding: 12px;
    border-radius: 10px;
  }

  .store-page-card-title {
    margin-top: 12px;
    font-size: 1.02rem;
  }

  .store-page-price {
    font-size: 1.35rem;
  }

  .store-page-copy {
    min-height: 0;
  }

  .storefront-card {
    border-radius: 7px;
  }

  .storefront-card-body {
    padding: 12px 12px 14px;
  }

  .storefront-card-body h3 {
    font-size: 0.88rem;
  }

  .storefront-card-body p {
    display: none;
  }

  .storefront-card-actions {
    margin-top: 12px;
    gap: 6px;
  }

  .card-link,
  .mini-cart-button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
    border-radius: 6px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px 16px;
  }

  .category-pill {
    min-height: 56px;
    border-radius: 8px;
    gap: 10px;
    padding: 10px 12px;
  }

  .category-pill-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .category-pill-label {
    font-size: 0.82rem;
  }

  .service-strip {
    gap: 10px;
    margin-top: 14px;
    padding: 16px 12px 18px;
  }

  .store-page-benefits {
    margin-top: 10px;
    padding-top: 10px;
  }

  .product-related-grid {
    gap: 10px;
  }

  .service-item {
    gap: 5px;
    font-size: 0.74rem;
  }

  .service-icon {
    width: 16px;
    height: 16px;
  }

  .service-icon svg {
    width: 16px;
    height: 16px;
  }

  .site-footer {
    padding-bottom: 98px;
  }
}
