:root {
  --pcb-primary: #4A2C24;
  --pcb-secondary: #6B4436;
  --pcb-accent: #D4AF37;
  --pcb-cream: #F5F0E8;
  --pcb-card: #FFFFFF;
  --pcb-text: #2E2E2E;
  --pcb-muted: #7A6A62;
  --pcb-success: #2E7D32;
  --pcb-warning: #ED6C02;
  --pcb-danger: #D32F2F;
  --pcb-info: #1565C0;
  --pcb-border: #E7D9CC;
  --pcb-shadow: 0 18px 38px rgba(43, 27, 22, 0.09);
  --pcb-radius: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
  background: linear-gradient(180deg, #fcf8f3 0%, var(--pcb-cream) 100%);
  color: var(--pcb-text);
}
a { color: var(--pcb-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
h1, h2, h3, h4 { margin: 0 0 12px; color: var(--pcb-primary); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.02; }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
p { margin: 0 0 14px; }
code, pre { font-family: Consolas, "Courier New", monospace; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container, .wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 240, 232, 0.96);
  border-bottom: 1px solid rgba(74, 44, 36, 0.10);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 8px 0;
}

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

.logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-height: 48px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--pcb-border);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(43, 27, 22, 0.08);
}

.logo-frame img,
.brand-logo,
.logo-main,
.logo {
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

.brand-logo {
  padding: 10px 12px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--pcb-border);
  box-shadow: var(--pcb-shadow);
}

.brand-logo-login { max-height: 90px; max-width: 320px; margin: 0 auto 20px; }
.hero-logo { max-height: 84px; max-width: 280px; margin-bottom: 22px; }
.admin-brand-logo { max-height: 60px; }

.site-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-brand-copy strong {
  color: var(--pcb-primary);
  font-size: 0.98rem;
  line-height: 1.1;
}
.site-brand-copy span {
  color: var(--pcb-muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

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

.site-nav-links,
.site-nav-actions,
.admin-shell-links {
  display: flex;
  align-items: center;
}

.site-nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: nowrap;
}

.site-nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav-links a,
.admin-shell-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--pcb-secondary);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-caret {
  font-size: 0.72rem;
  color: var(--pcb-accent);
  transition: transform 0.18s ease;
}

.nav-item.active > .nav-link,
.site-nav-links a.active,
.site-nav-links a:hover,
.admin-shell-links a.active,
.admin-shell-links a:hover {
  background: rgba(212, 175, 55, 0.16);
  color: var(--pcb-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--pcb-border);
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(43, 27, 22, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--pcb-secondary);
  font-weight: 600;
}

.nav-dropdown a:hover {
  background: rgba(212, 175, 55, 0.14);
  color: var(--pcb-primary);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav-item.has-dropdown:hover > .nav-dropdown,
  .nav-item.has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-item.has-dropdown:hover > .nav-link .nav-caret,
  .nav-item.has-dropdown:focus-within > .nav-link .nav-caret {
    transform: rotate(180deg);
  }
}

.nav-item.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.is-open > .nav-link .nav-caret {
  transform: rotate(180deg);
}

.site-nav-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pcb-border);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--pcb-primary);
}

.hero,
.hero-card,
.hero-panel,
.summary-card,
.card,
.feature-card,
.info-card,
.help-card,
.record-card,
.notice-box,
.checkout-summary,
.auth-card,
.dispatch-card {
  background: var(--pcb-card);
  border: 1px solid var(--pcb-border);
  border-radius: var(--pcb-radius);
  box-shadow: var(--pcb-shadow);
}

.hero {
  margin: 24px auto 0;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 32%),
    linear-gradient(135deg, #4A2C24 0%, #6B4436 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.10);
}

.hero h1 { color: #FFFFFF; }
.hero h2,
.hero h3 { color: #FFFFFF; }
.hero .lead,
.hero p { color: #E8DCCB; }
.hero .eyebrow { color: #D4AF37; }
.hero a { color: #FFFFFF; }

.hero-grid,
.split-hero,
.grid,
.card-grid,
.feature-grid,
.feature-list,
.shop-grid {
  display: grid;
  gap: 18px;
}

.hero-grid,
.split-hero { grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr); align-items: start; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid,
.feature-grid,
.feature-list { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.shop-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.section-stack { padding: 28px 0 44px; }
.page-head { padding: 22px 0 8px; }
.page-title { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.lead, .lead-text { font-size: 1.04rem; }
.public-layout .lead,
.public-layout .lead-text,
.auth-card .lead { color: var(--pcb-muted); }

.landing-hero .hero-copy { padding-right: 8px; }
.home-hero {
  padding-bottom: 28px;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.hero-stat-card {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.hero-stat-card strong,
.hero-stat-card span {
  display: block;
}
.hero-stat-card strong {
  margin-bottom: 6px;
  color: #FFFFFF;
}
.hero-stat-card span {
  color: #E8DCCB;
  font-size: 0.95rem;
}
.dispatch-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--pcb-text);
  border-color: rgba(255,255,255,0.24);
}
.dispatch-card h2 { color: var(--pcb-primary); margin-bottom: 16px; }
.dispatch-card .eyebrow { color: var(--pcb-accent); }
.dispatch-card p { color: var(--pcb-text); margin-bottom: 8px; }
.dispatch-sections { display: grid; gap: 14px; }
.dispatch-item {
  padding-bottom: 12px;
  border-bottom: 1px solid #efe3d7;
}
.dispatch-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.dispatch-item h3 {
  margin-bottom: 6px;
  color: var(--pcb-primary);
  font-size: 1rem;
}
.dispatch-price {
  color: var(--pcb-secondary);
  font-weight: 700;
}
.home-side-card p {
  color: var(--pcb-muted);
}

.card,
.feature-card,
.info-card,
.record-card,
.help-card,
.summary-card,
.checkout-summary,
.auth-card { padding: 22px; }
.feature-card:hover,
.card:hover { transform: translateY(-2px); transition: transform 0.18s ease; }

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--pcb-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row,
.link-list { display: flex; flex-wrap: wrap; gap: 12px; }

.btn,
button,
.button,
.btn-submit,
.btn-shop,
.btn-light,
.btn-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: 0.18s ease;
}

.btn-primary,
.btn,
button,
.btn-submit {
  background: var(--pcb-primary);
  color: #fff;
  border-color: var(--pcb-primary);
}
.btn-secondary,
.btn.gold {
  background: var(--pcb-accent);
  color: var(--pcb-text);
  border-color: var(--pcb-accent);
}
.btn-outline,
.btn-light,
.btn.ghost,
.btn-shop {
  background: transparent;
  color: var(--pcb-primary);
  border-color: rgba(74, 44, 36, 0.22);
}
.hero-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}
.hero-outline:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-delete { background: var(--pcb-danger); color: #fff; border-color: var(--pcb-danger); }
.btn:hover,
button:hover,
.button:hover,
.btn-submit:hover,
.btn-shop:hover,
.btn-light:hover,
.btn-delete:hover { transform: translateY(-1px); text-decoration: none; }

.badge,
.pill,
.status-pill,
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  background: #efe6dc;
  color: var(--pcb-secondary);
}
.badge-success,
.status-delivered,
.status-completed,
.status-ready-to-pack,
.status-packed,
.status-dispatched,
.status-active { background: rgba(46,125,50,0.14); color: var(--pcb-success); }
.badge-warning,
.status-pending,
.status-pending-payment,
.status-awaiting-roast,
.status-awaiting-processing,
.status-preparing,
.status-order-processing,
.status-in-production,
.status-in-transit { background: rgba(237,108,2,0.14); color: var(--pcb-warning); }
.badge-danger,
.status-cancelled,
.status-delayed,
.status-failed { background: rgba(211,47,47,0.12); color: var(--pcb-danger); }
.badge-info,
.status-roasted,
.status-checked,
.status-sent-to-supplier,
.status-received,
.status-out-for-delivery,
.status-ready-for-pickup { background: rgba(21,101,192,0.12); color: var(--pcb-info); }

.form-control,
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #d9c9bb;
  border-radius: 14px;
  background: #fff;
  color: var(--pcb-text);
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
label { display: block; margin: 0 0 6px; color: var(--pcb-primary); font-weight: 700; }
.field-help,
.helper-text,
.muted,
.subtle,
small { color: var(--pcb-muted); }

.form-grid,
.review-grid,
.two-col { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stack-form { display: grid; gap: 10px; }
.shop-form-section { display: grid; gap: 14px; }

.table-wrap { overflow-x: auto; }
.table,
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
  border-bottom: 1px solid #efe3d7;
  text-align: left;
  vertical-align: top;
}
th {
  background: #f4ece4;
  color: var(--pcb-primary);
  font-size: 0.9rem;
}

.notice,
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e4d5c7;
  margin: 14px 0;
  background: #fff7ec;
}
.notice.success,
.alert.success { border-color: rgba(46,125,50,0.28); background: rgba(46,125,50,0.09); }
.notice.error,
.alert.error { border-color: rgba(211,47,47,0.22); background: rgba(211,47,47,0.08); }

.site-footer {
  margin-top: 36px;
  padding: 34px 0;
  background: var(--pcb-primary);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.site-footer h3,
.site-footer p,
.site-footer a { color: #fff; }
.site-footer a { display: block; margin-bottom: 8px; opacity: 0.9; }
.footer-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer { padding: 22px 0; text-align: center; color: var(--pcb-muted); }

.auth-shell { min-height: calc(100vh - 180px); display: flex; align-items: center; justify-content: center; padding: 28px 0 40px; }
.auth-card { max-width: 660px; width: 100%; text-align: center; }

.admin-shell-nav {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(43, 27, 22, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.admin-shell-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
}
.admin-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.admin-brand-text strong,
.admin-brand-text span { display: block; color: #fff; }
.admin-brand-text span { color: rgba(255,255,255,0.76); font-size: 0.9rem; }
.admin-shell-links { gap: 10px; flex-wrap: wrap; }
.admin-shell-links a { color: rgba(255,255,255,0.88); }
.admin-shell-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-shell-search input {
  min-height: 40px;
  width: 240px;
}
.admin-shell-search button {
  min-height: 40px;
  padding: 10px 14px;
}

.summary-strip,
.info-grid,
.detail-grid,
.compact-meta-grid,
.help-grid,
.status-guide,
.shipment-cards,
.batch-card-grid,
.grid-layout {
  display: grid;
  gap: 16px;
}
.summary-strip,
.help-grid,
.status-guide,
.shipment-cards,
.batch-card-grid,
.grid-layout { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.compact-meta-grid,
.info-grid,
.detail-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.search-container,
.result-container,
.public-card,
.admin-container {
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto;
}

.copy-link {
  width: 100%;
  border: 1px dashed #cbb7a6;
  background: #fbf6f0;
}

.nav-spacer { height: 18px; }

.home-section {
  margin-top: 12px;
}

.marketing-grid,
.featured-grid,
.review-grid-home,
.info-section-grid {
  display: grid;
  gap: 18px;
}

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

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-grid-home {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.marketing-card,
.product-card,
.review-card-public,
.cta-band {
  background: #FFFFFF;
  border: 1px solid var(--pcb-border);
  border-radius: var(--pcb-radius);
  box-shadow: var(--pcb-shadow);
}

.marketing-card,
.product-card,
.review-card-public {
  padding: 24px;
}

.highlight-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--pcb-text);
}

.dispatch-summary-list {
  display: grid;
  gap: 14px;
}

.dispatch-summary-item {
  padding: 16px 18px;
  background: #FCF8F3;
  border: 1px solid #EFE2D4;
  border-radius: 16px;
}

.dispatch-summary-item strong,
.dispatch-summary-item span {
  display: block;
}

.dispatch-summary-item strong {
  margin-bottom: 6px;
  color: var(--pcb-primary);
}

.dispatch-summary-item span {
  color: var(--pcb-muted);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card h3,
.review-card-public h3,
.marketing-card h2,
.cta-band h2 {
  margin-bottom: 4px;
}

.product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 18px;
  background: linear-gradient(180deg, #FFFDF9 0%, #F4ECE3 100%);
  border: 1px solid #EFE2D4;
  border-radius: 18px;
}

.product-card-image img {
  max-height: 144px;
  width: auto;
  object-fit: contain;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-dispatch {
  color: var(--pcb-muted);
  margin-bottom: 0;
}

.subscription-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.subscription-copy {
  display: grid;
  gap: 12px;
}

.subscription-benefits {
  display: grid;
  gap: 14px;
}

.info-tile {
  padding: 18px;
  background: #FCF8F3;
  border: 1px solid #EFE2D4;
  border-radius: 18px;
}

.info-tile strong,
.info-tile span {
  display: block;
}

.info-tile strong {
  margin-bottom: 6px;
  color: var(--pcb-primary);
}

.info-tile span {
  color: var(--pcb-muted);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  color: var(--pcb-secondary);
}

.review-meta span::before {
  content: "•";
  margin-right: 10px;
  color: var(--pcb-accent);
}

.stacked-link-list {
  display: grid;
  gap: 12px;
}

.stacked-link-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid #EADCCD;
  border-radius: 14px;
  background: #FCF8F3;
  color: var(--pcb-primary);
  font-weight: 700;
}

.stacked-link-list a:hover {
  background: #F4ECDD;
  text-decoration: none;
}

.cta-band {
  margin-top: 12px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF5ED 100%);
}

.cta-band p {
  color: var(--pcb-muted);
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .site-nav-links { gap: 4px; }
  .site-nav-links a { padding: 8px 10px; font-size: 0.94rem; }
  .site-brand-copy span { max-width: 180px; }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-hero,
  .grid.two { grid-template-columns: 1fr; }
  .hero-stat-grid,
  .marketing-grid,
  .info-section-grid,
  .subscription-panel { grid-template-columns: 1fr; }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; flex: 0 0 auto; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--pcb-border);
    border-radius: 18px;
    box-shadow: var(--pcb-shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav-links,
  .site-nav-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }
  .site-nav-links a,
  .site-nav-actions .btn {
    width: 100%;
    text-align: center;
  }
  .nav-item {
    display: block;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 6px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: none;
    background: #faf6f0;
    border: 1px solid #eadfce;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item.is-open > .nav-dropdown {
    display: grid;
  }
}

@media (max-width: 720px) {
  .button-row,
  .footer-bar { flex-direction: column; }
  .btn,
  button,
  .button,
  .btn-submit,
  .btn-shop,
  .btn-light,
  .btn-delete { width: 100%; }
  .logo-frame { width: 92px; min-height: 44px; }
  .logo-frame img,
  .brand-logo,
  .logo-main,
  .logo { max-height: 40px; }
  .site-brand-copy span { display: none; }
  .site-brand-copy strong { font-size: 0.9rem; }
  .nav-shell { min-height: 56px; padding: 6px 0; }
  .hero { padding: 24px; }
  .hero-stat-grid,
  .featured-grid,
  .review-grid-home { grid-template-columns: 1fr; }
  .marketing-card,
  .product-card,
  .review-card-public,
  .cta-band { padding: 20px; }
}
