:root {
  --bg: #f7f3ed;
  --bg-alt: #fffdf9;
  --panel: rgba(255,255,255,0.74);
  --panel-strong: rgba(255,255,255,0.92);
  --text: #171513;
  --muted: #6f655d;
  --line: rgba(25, 20, 14, 0.12);
  --line-strong: rgba(25, 20, 14, 0.18);
  --gold: #b48a46;
  --gold-strong: #8f6a31;
  --champagne: #efe0c9;
  --black-soft: #13110f;
  --shadow: 0 30px 60px rgba(20, 18, 16, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1220px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(180,138,70,0.18), transparent 28%),
    radial-gradient(circle at left center, rgba(239,224,201,0.7), transparent 26%),
    linear-gradient(180deg, #fffefd 0%, #f6f1ea 58%, #f4ede4 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 70px 0; }
.section-title { font-size: clamp(2rem, 3vw, 3.7rem); line-height: 1; margin: 0 0 14px; letter-spacing: -0.04em; }
.section-copy { max-width: 660px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-strong);
  background: rgba(180,138,70,0.10);
  border: 1px solid rgba(180,138,70,0.14);
  margin-bottom: 16px;
}
.glass-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.68));
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 253, 250, 0.72);
  border-bottom: 1px solid rgba(22,18,15,0.06);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text small { display:block; font-size:0.75rem; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.brand-text strong { font-size: 1.1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border: 1px solid rgba(22,18,15,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
}
.nav-links a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(180,138,70,0.13);
  color: var(--black-soft);
}
.header-actions { display:flex; align-items:center; gap: 10px; }
.icon-btn, .menu-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  color: var(--black-soft);
  display:grid;
  place-items:center;
  position: relative;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d5b37a, #aa7c38);
  color: white;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
}
.menu-btn { display:none; }

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 700;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: white;
  background: linear-gradient(135deg, #cba25b 0%, #a87a36 50%, #7c5a2d 100%);
  box-shadow: 0 18px 30px rgba(160, 116, 49, 0.22);
}
.btn-dark {
  background: var(--black-soft);
  color: white;
  box-shadow: 0 18px 30px rgba(14,12,10,0.24);
}
.btn-outline {
  background: rgba(255,255,255,0.5);
  color: var(--black-soft);
  border: 1px solid var(--line-strong);
}
.btn-large { min-height: 58px; padding-inline: 28px; }

.hero {
  position: relative;
  overflow: clip;
  padding: 88px 0 32px;
}
.hero-grid {
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items:center;
}
.hero-copy h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0 0 16px;
}
.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 640px;
}
.hero-actions { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 28px; }
.hero-metrics {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
}
.metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(25, 20, 14, 0.08);
}
.metric strong { display:block; font-size: 1.4rem; margin-bottom: 4px; }
.metric span { color: var(--muted); font-size: 0.95rem; }
.hero-visual {
  min-height: 620px;
  position: relative;
  display:grid;
  place-items:center;
}
.orb, .ring {
  position:absolute;
  border-radius:50%;
  filter: blur(0.2px);
}
.orb-1 {
  width: 330px; height: 330px; right: 2%; top: 6%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(217,188,139,0.7), rgba(161,120,58,0.18));
  animation: float 7s ease-in-out infinite;
}
.orb-2 {
  width: 220px; height: 220px; left: 8%; bottom: 8%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.88), rgba(239,224,201,0.55), rgba(141,102,49,0.12));
  animation: float 9s ease-in-out infinite reverse;
}
.ring-1 {
  width: 520px; height: 520px; border: 1px solid rgba(180,138,70,0.18);
  top: 4%; right: -4%;
}
.ring-2 {
  width: 420px; height: 420px; border: 1px solid rgba(19,17,15,0.07);
  bottom: 6%; left: -2%;
}
.hero-card {
  position: relative;
  width: min(540px, 100%);
  padding: 26px;
  z-index: 1;
}
.bottle-frame {
  min-height: 520px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(239,224,201,0.28));
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.bottle-frame::before {
  content:'';
  position:absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 45%, transparent 75%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
}
.bottle-silhouette {
  position:absolute;
  left:50%; top:52%;
  width: 220px; height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 40px 40px 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(235,220,196,0.9) 44%, rgba(165, 122, 56, 0.82));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.85), inset 0 -20px 50px rgba(83, 58, 25, 0.22), 0 28px 48px rgba(20,18,16,0.2);
}
.bottle-silhouette::before {
  content:'';
  position:absolute;
  width: 110px; height: 70px;
  left:50%; transform:translateX(-50%); top:-56px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, #f4ecdf, #d6b98a 54%, #8d6631);
}
.bottle-silhouette::after {
  content:'KL';
  position:absolute;
  left:50%; top:46%; transform:translate(-50%, -50%);
  font-size: 3rem; font-weight: 800; letter-spacing: 0.12em;
  color: rgba(18, 15, 13, 0.65);
}
.hero-floating-card {
  position:absolute;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(25,20,14,0.08);
  backdrop-filter: blur(10px);
}
.hero-floating-card.small-a { left: -6px; top: 34px; }
.hero-floating-card.small-b { right: -4px; bottom: 28px; }
.hero-floating-card strong { display:block; font-size:1rem; margin-bottom:4px; }
.hero-floating-card span { color: var(--muted); font-size:0.92rem; }

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

.feature-card, .value-card, .info-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(25,20,14,0.08);
  box-shadow: var(--shadow);
}
.feature-card h3, .value-card h3, .info-card h3 { margin-top: 18px; margin-bottom: 8px; font-size: 1.28rem; }
.feature-card p, .value-card p, .info-card p { color: var(--muted); line-height: 1.8; }
.icon-chip {
  width: 54px; height: 54px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(203,162,91,0.22), rgba(255,255,255,0.88));
  border: 1px solid rgba(180,138,70,0.24);
  display:grid; place-items:center; font-size: 1.35rem;
}

.product-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(25,20,14,0.08);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 38px 70px rgba(17,15,13,0.12); }
.product-media {
  display:block;
  position: relative;
  background: linear-gradient(180deg, rgba(250,247,242,0.92), rgba(238,225,202,0.5));
  min-height: 360px;
  overflow:hidden;
}
.product-media img { width:100%; height:100%; object-fit: cover; }
.product-badge {
  position:absolute; top:18px; left:18px;
  z-index:1;
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(19,17,15,0.84);
  color:white;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-badge.large { top:24px; left:24px; }
.product-body { padding: 24px; }
.product-meta { color: var(--gold-strong); font-size: 0.88rem; letter-spacing: 0.16em; text-transform: uppercase; }
.product-name { display:block; font-size: 1.3rem; font-weight: 700; margin: 10px 0 8px; letter-spacing: -0.03em; }
.product-text { color: var(--muted); line-height: 1.8; min-height: 86px; }
.product-bottom, .price-wrap { display:flex; align-items:center; justify-content:space-between; gap: 12px; }
.price-wrap { justify-content:flex-start; }
.price { font-size: 1.2rem; font-weight: 800; }
.compare-price { color: var(--muted); text-decoration: line-through; }

.split-panel {
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
.image-tile {
  min-height: 520px;
  border-radius: 32px;
  overflow:hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(223,196,155,0.42));
  position: relative;
}
.image-tile::before {
  content:'';
  position:absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 24px;
}
.image-tile img { width:100%; height:100%; object-fit: cover; }

.trust-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.trust-grid.compact { grid-template-columns: repeat(3, minmax(0,1fr)); }
.trust-grid > div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(25,20,14,0.08);
}
.trust-grid strong { display:block; margin-bottom: 8px; font-size: 1.05rem; }
.trust-grid span { color: var(--muted); line-height: 1.65; }

.cta-panel {
  padding: 38px;
  position: relative;
  overflow:hidden;
}
.cta-panel::after {
  content:'';
  position:absolute;
  right:-80px; top:-80px;
  width:240px; height:240px; border-radius:50%;
  background: radial-gradient(circle, rgba(180,138,70,0.3), transparent 70%);
}

.footer {
  padding: 44px 0 60px;
  border-top: 1px solid rgba(22,18,15,0.08);
  background: rgba(255,255,255,0.34);
}
.footer-grid {
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}
.footer p, .footer a, .footer li { color: var(--muted); line-height: 1.8; }
.footer h4 { margin: 0 0 10px; }
.footer ul { list-style:none; padding:0; margin:0; }
.footer-bottom {
  display:flex; justify-content:space-between; gap: 20px; flex-wrap:wrap;
  padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(22,18,15,0.08);
  color: var(--muted);
}

.page-hero {
  padding: 78px 0 18px;
}
.page-hero-card { padding: 34px; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: .95; margin: 8px 0 12px; letter-spacing: -0.05em; }
.page-hero p { max-width: 720px; color: var(--muted); line-height: 1.85; }

.filter-wrap {
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}
.filters {
  padding: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.filters h3 { margin-top: 0; }
.filters label { display:block; font-size:0.88rem; text-transform:uppercase; letter-spacing: .12em; color: var(--muted); margin: 16px 0 8px; }
.input, .select, textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(25,20,14,0.12);
  background: rgba(255,255,255,0.74);
  padding: 14px 16px;
  color: var(--text);
}
textarea { min-height: 140px; resize: vertical; }

.product-layout {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items:start;
}
.product-main-image {
  position: relative;
  min-height: 620px;
  padding: 22px;
  overflow:hidden;
}
.product-main-image img { width:100%; height:100%; object-fit: cover; border-radius: 26px; }
.thumb-row { display:flex; gap: 12px; margin-top: 14px; }
.thumb {
  width: 92px; height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(25,20,14,0.10);
  background: rgba(255,255,255,0.68);
  overflow:hidden;
  padding: 0;
}
.thumb.active { outline: 2px solid rgba(180,138,70,0.5); }
.thumb img { width:100%; height:100%; object-fit:cover; }
.product-info { padding: 34px; }
.product-info h1 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: .95; letter-spacing: -0.05em; margin: 0 0 10px; }
.product-rating { color: var(--muted); display:flex; gap: 10px; align-items:center; margin-bottom: 18px; }
.price-row-lg { display:flex; gap: 14px; align-items:center; margin-bottom: 16px; }
.price-lg { font-size: 2rem; font-weight: 800; }
.product-description { color: var(--muted); line-height: 1.85; }
.pill-group { display:flex; flex-wrap:wrap; gap: 10px; margin: 22px 0; }
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(25,20,14,0.09);
}
.buy-row { display:flex; gap: 14px; align-items:center; margin: 26px 0; }
.qty-picker {
  display:flex; align-items:center; overflow:hidden;
  border-radius: 999px; border: 1px solid rgba(25,20,14,0.12);
  background: rgba(255,255,255,0.75);
}
.qty-picker button {
  width: 48px; height: 54px; border:0; background: transparent; font-size: 1.35rem;
}
.qty-picker input { width: 60px; border:0; background:transparent; text-align:center; }
.notes-section { display:grid; gap: 16px; margin-top: 20px; }
.notes-section > div { padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,0.62); border: 1px solid rgba(25,20,14,0.08); }
.notes-section h3 { margin: 0 0 8px; }
.notes-section p { color: var(--muted); margin:0; }

.faq-list { display:grid; gap: 16px; }
.faq-item {
  border-radius: 22px; border: 1px solid rgba(25,20,14,0.08);
  background: rgba(255,255,255,0.74); overflow:hidden;
}
.faq-item button {
  width:100%; text-align:left; background:transparent; border:0; padding: 22px 24px; font-weight: 700;
  display:flex; align-items:center; justify-content:space-between;
}
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-answer p { margin:0; padding: 0 24px 24px; color: var(--muted); line-height: 1.85; }
.faq-item.open .faq-answer { max-height: 240px; }

.contact-layout, .checkout-layout { display:grid; grid-template-columns: 1fr 0.9fr; gap: 24px; align-items:start; }
.form-card { padding: 28px; }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.helper-text { color: var(--muted); line-height:1.75; font-size: 0.95rem; }
.contact-card-list { display:grid; gap: 16px; }

.checkout-summary, .payment-panel { padding: 28px; }
.summary-line, .summary-total-row {
  display:flex; align-items:flex-start; justify-content:space-between; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25,20,14,0.08);
}
.summary-line span, .summary-total-row span:last-child { color: var(--muted); }
.summary-total-row.grand { font-weight:800; color: var(--text); font-size: 1.14rem; }
#card-container {
  min-height: 90px;
  border-radius: 18px;
  border: 1px solid rgba(25,20,14,0.12);
  background: rgba(255,255,255,0.84);
  padding: 14px;
}
.payment-status {
  margin-top: 16px;
  min-height: 28px;
  color: var(--muted);
}
.payment-status[data-state="error"] { color: #9b2c2c; }
.payment-status[data-state="success"] { color: #2f855a; }
.payment-status[data-state="loading"] { color: var(--gold-strong); }
.success-banner {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(72, 187, 120, 0.10);
  border: 1px solid rgba(72, 187, 120, 0.18);
}

.cart-overlay {
  position: fixed; inset: 0; background: rgba(16,13,11,0.38);
  opacity:0; pointer-events:none; transition:.35s ease; z-index: 59;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; width: min(460px, 100vw); height:100vh;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,241,234,0.96));
  backdrop-filter: blur(18px);
  transform: translateX(100%); transition: .42s cubic-bezier(.2,.8,.2,1);
  z-index: 60; display:flex; flex-direction:column;
  border-left: 1px solid rgba(25,20,14,0.08);
  box-shadow: -30px 0 80px rgba(17,15,13,0.18);
}
.cart-open .cart-overlay { opacity:1; pointer-events:auto; }
.cart-open .cart-drawer { transform: translateX(0); }
.cart-header, .cart-footer { padding: 20px 22px; border-bottom: 1px solid rgba(25,20,14,0.08); }
.cart-header { display:flex; justify-content:space-between; align-items:center; }
.cart-body { flex:1; overflow:auto; padding: 10px 22px 22px; }
.cart-item { display:grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(25,20,14,0.08); }
.cart-item img { width:84px; height:84px; border-radius: 18px; object-fit:cover; }
.cart-item-info { display:grid; gap: 4px; }
.qty-inline { display:flex; gap: 10px; align-items:center; flex-wrap:wrap; margin-top: 4px; }
.qty-inline button, .link-button { border:0; background:transparent; padding:0; color: var(--gold-strong); font-weight: 700; }
.empty-state { padding: 26px 0; }

.newsletter {
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 20px;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 18px);
  background: rgba(19,17,15,0.9); color:white; padding: 14px 18px;
  border-radius: 999px; opacity:0; transition:.3s ease; z-index:80;
}
.toast.show { opacity:1; transform: translate(-50%, 0); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes shine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  45%, 100% { transform: translateX(130%) skewX(-18deg); }
}

@media (max-width: 1100px) {
  .hero-grid, .split-panel, .product-layout, .contact-layout, .checkout-layout, .filter-wrap { grid-template-columns: 1fr; }
  .product-grid, .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .filters { position: static; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    border-radius: 24px;
    padding: 16px;
    display: grid;
    gap: 6px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: .28s ease;
    z-index: 45;
  }
  .menu-open .nav-links { transform: translateY(0); opacity:1; pointer-events:auto; }
  .menu-btn { display:grid; }
  .hero-metrics, .trust-grid, .trust-grid.compact, .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 42px; height: 42px; }
  .hero { padding-top: 48px; }
  .hero-copy h1 { font-size: 3.1rem; }
  .hero-visual { min-height: 460px; }
  .hero-card { padding: 16px; }
  .bottle-frame { min-height: 380px; }
  .bottle-silhouette { width: 150px; height: 250px; }
  .bottle-silhouette::before { width: 74px; height: 48px; top: -38px; }
  .product-grid, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .product-media { min-height: 280px; }
  .product-main-image { min-height: 380px; }
  .buy-row, .newsletter, .hero-actions { flex-direction: column; align-items: stretch; }
  .btn, .btn-large { width: 100%; }
  .thumb-row { overflow:auto; padding-bottom: 6px; }
  .page-hero-card, .form-card, .payment-panel, .checkout-summary, .product-info, .cta-panel { padding: 22px; }
}
