:root {
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --ink: #20261F;
  --ink-70: rgba(32, 38, 31, 0.68);
  --ink-45: rgba(32, 38, 31, 0.45);
  --ink-8: rgba(32, 38, 31, 0.08);
  --accent: #1F6E5C;
  --accent-ink: #FFFFFF;
  --accent-soft: #E4EFEA;
  --font-display: 'Cabinet Grotesk Fallback', 'Segoe UI', Roboto, system-ui, sans-serif;
  --font-body: 'General Sans Fallback', 'Segoe UI', Roboto, system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 64px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 var(--space-sm);
  color: var(--ink);
}
p { margin: 0 0 var(--space-md); max-width: 62ch; }
.spt-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Header */
.spt-header { position: sticky; top: 0; z-index: 50; background: rgba(250,250,247,0.92); backdrop-filter: blur(6px); border-bottom: 1px solid var(--ink-8); }
.spt-topbar { background: var(--ink); color: var(--bg); font-size: 13px; font-weight: 500; text-align: center; padding: 8px 16px; }
.spt-topbar strong { color: var(--accent-soft); font-weight: 600; }
.spt-nav-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.spt-logo { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.spt-logo-mark { width: 28px; height: 28px; border-radius: var(--radius-sm); background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.spt-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.spt-menu a { font-weight: 500; font-size: 14.5px; color: var(--ink-70); }
.spt-menu a:hover { color: var(--accent); }
.spt-nav-actions { display: flex; align-items: center; gap: 18px; }
.spt-icon-link { position: relative; display: inline-flex; color: var(--ink-70); }
.spt-cart-count { position: absolute; top: -6px; right: -8px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; line-height: 1; border-radius: var(--radius-pill); padding: 3px 5px; }
.spt-menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* Buttons */
.spt-btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 26px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14.5px; border: 1px solid transparent; cursor: pointer; transition: opacity .15s ease; white-space: nowrap; }
.spt-btn:hover { opacity: .88; }
.spt-btn-primary { background: var(--accent); color: var(--accent-ink); }
.spt-btn-secondary { background: transparent; color: var(--accent); border-color: var(--ink-8); }
.spt-btn-sm { padding: 9px 18px; font-size: 13px; }

/* Hero — calm, centered-column, low variance */
.spt-hero { padding: 96px 0 var(--space-lg); text-align: center; }
.spt-hero-inner { max-width: 720px; margin: 0 auto; }
.spt-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: var(--accent); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 24px; }
.spt-hero h1 { font-size: clamp(32px, 4.5vw, 50px); margin: 0 auto 18px; max-width: 15ch; }
.spt-hero .spt-lede { font-size: 18px; color: var(--ink-70); max-width: 50ch; margin: 0 auto 32px; }
.spt-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.spt-hero-note { font-size: 13.5px; color: var(--ink-45); }

/* Section headings */
.spt-section { padding: var(--space-lg) 0; }
.spt-section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.spt-section-head h2 { font-size: clamp(24px, 2.6vw, 30px); }
.spt-section-head p { color: var(--ink-70); margin: 0 auto; }

/* Products */
.spt-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spt-product-card { background: var(--surface); border: 1px solid var(--ink-8); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.spt-product-card img { border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit: cover; background: var(--bg); }
.spt-product-tag { align-self: flex-start; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; background: var(--accent-soft); color: var(--accent); padding: 4px 10px; border-radius: var(--radius-pill); }
.spt-product-card h3 { font-size: 14.5px; margin: 0; line-height: 1.3; font-family: var(--font-body); font-weight: 600; }
.spt-product-price { font-weight: 700; color: var(--accent); font-size: 15px; margin-top: auto; }

/* How it works — plain, no numbering */
.spt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.spt-step { text-align: center; }
.spt-step h3 { font-size: 18px; margin-bottom: 8px; }
.spt-step p { color: var(--ink-70); font-size: 14.5px; margin: 0 auto; }

/* Trust band — flat, no gradient */
.spt-trust-band { background: var(--accent-soft); border-radius: var(--radius-md); padding: 56px 40px; }
.spt-trust-band h4 { color: var(--ink); font-size: 17px; }
.spt-trust-band p { color: var(--ink-70); font-size: 14.5px; }
.spt-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }

/* Footer */
.spt-footer { background: var(--ink); color: var(--bg); padding: var(--space-lg) 0 24px; margin-top: 40px; }
.spt-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.spt-footer h5 { color: var(--bg); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; opacity: .6; }
.spt-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.spt-footer a { color: rgba(250,250,247,0.75); font-size: 14.5px; }
.spt-footer a:hover { color: #fff; }
.spt-footer-bottom { border-top: 1px solid rgba(250,250,247,0.12); padding-top: 20px; font-size: 13px; color: rgba(250,250,247,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* WooCommerce alignment */
.spt-shop-main { padding: var(--space-lg) 0; min-height: 50vh; }
ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; padding: 0; }
ul.products li.product { background: var(--surface); border: 1px solid var(--ink-8); border-radius: var(--radius-md); padding: 16px; }
ul.products li.product img { border-radius: var(--radius-sm); }
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit { background: var(--accent); color: #fff; border-radius: var(--radius-pill); font-weight: 600; border: none; padding: 11px 20px; }
.woocommerce span.onsale { background: var(--accent); color: #fff; border-radius: var(--radius-pill); font-weight: 700; }
.woocommerce ul.products li.product .price { color: var(--accent); font-weight: 700; }

/* Mobile */
@media (max-width: 900px) {
  .spt-steps, .spt-trust-grid { grid-template-columns: 1fr; gap: 28px; }
  .spt-products-grid, ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .spt-footer-grid { grid-template-columns: 1fr 1fr; }
  .spt-menu { display: none; }
  .spt-menu-toggle { display: block; }
}

/* Carousel row (Customer Favorites / New Arrivals) */
.spt-carousel-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 20px; flex-wrap: wrap; }
.spt-carousel-head .spt-section-head { text-align: left; margin: 0; max-width: 60ch; }
.spt-carousel-controls { display: flex; gap: 8px; flex-shrink: 0; }
.spt-carousel-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--ink-8); background: var(--surface); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); font-size: 16px; }
.spt-carousel-arrow:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.spt-carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.spt-carousel-track::-webkit-scrollbar { display: none; }
.spt-carousel-card { scroll-snap-align: start; flex: 0 0 232px; background: var(--surface); border: 1px solid var(--ink-8); border-radius: var(--radius-md); padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.spt-carousel-card .spt-cc-image { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; background: var(--accent-soft); }
.spt-carousel-card .spt-cc-image img { width: 100%; height: 100%; object-fit: cover; }
.spt-carousel-card .spt-cc-tag { position: absolute; top: 8px; left: 8px; background: var(--surface); color: var(--accent); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: 3px 8px; border-radius: var(--radius-pill); }
.spt-carousel-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 14px; margin: 0; line-height: 1.35; min-height: 38px; }
.spt-carousel-card .spt-cc-price { font-weight: 700; color: var(--accent); font-size: 15px; }
.spt-carousel-card .spt-btn { width: 100%; }

/* Category tile grid */
.spt-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spt-category-tile { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 28px 16px; background: var(--surface); border: 1px solid var(--ink-8); border-radius: var(--radius-md); }
.spt-category-tile:hover { border-color: var(--accent); }
.spt-category-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.spt-category-tile h4 { margin: 0; font-size: 14px; font-family: var(--font-body); font-weight: 600; color: var(--ink); }
.spt-category-tile span { font-size: 12.5px; color: var(--ink-45); }

/* Promo split banner */
.spt-promo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--accent-soft); border-radius: var(--radius-md); padding: 48px; }
.spt-promo-visual { aspect-ratio: 4/3; border-radius: var(--radius-md); background: linear-gradient(155deg, var(--accent) 0%, #14493c 100%); }
.spt-promo-split h2 { margin-bottom: 12px; }
.spt-promo-split p { color: var(--ink-70); margin-bottom: 24px; }

@media (max-width: 900px) {
  .spt-category-grid { grid-template-columns: repeat(2, 1fr); }
  .spt-promo-split { grid-template-columns: 1fr; padding: 28px; }
  .spt-carousel-card { flex-basis: 180px; }
}