: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-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;
}

.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.2fr 0.8fr 0.8fr 0.9fr;
  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;
}

.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-gallery-shell {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
}

.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;
}

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(92vw, 1100px);
  height: min(86vh, 820px);
  margin: min(7vh, 48px) auto;
  padding: 32px 72px 72px;
  display: grid;
  align-items: center;
}

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

.product-lightbox-figure img {
  max-width: 100%;
  max-height: 100%;
  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: 18px;
  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;
}

@media (max-width: 720px) {
  .product-lightbox-dialog {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 72px 16px 84px;
  }

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

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

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

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

.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;
  }

  .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;
  }

  .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;
  }

  .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;
  }
}
