/* DropBot store theme v3 — "sticker shop" design language, deepened.
   One stylesheet, all stores. Brand identity comes from CSS custom properties
   injected per store: --color-primary, --color-secondary, --font-family.
   Everything colorful is derived from those two colors via color-mix();
   neutrals are ink (#1a1a1a) on white. No images, no JS required. */

* { box-sizing: border-box; }
/* The hidden attribute must always win — several components set their own
   display (flex/inline-block), which would otherwise override it. */
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-family);
  color: #1a1a1a;
  line-height: 1.55;
  background: #fff;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Shared section gutter */
.hero, .category-tiles, .product-grid, .category-head, .catalog-cat-head,
.pagination, .fbt, .faq-section, .reviews, .recently-viewed, .email-capture,
.static-page, .cart-page, .site-footer, .value-props, .section-head { 
  padding-left: clamp(1rem, 4vw, 3rem); padding-right: clamp(1rem, 4vw, 3rem);
}

/* Eyebrow label */
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-primary); margin: 0 0 0.6rem;
}

/* Promo banner */
.promo-banner {
  background: #1a1a1a; color: #fff; text-align: center; padding: 0.55rem 1rem;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}
.promo-banner strong { color: var(--color-secondary); }

/* Header */
.site-header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 2px solid #1a1a1a;
  position: sticky; top: 0; background: #fff; z-index: 10;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
  color: inherit; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
}
.site-nav { display: flex; gap: 0.35rem; margin-left: auto; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; color: #1a1a1a; font-size: 0.92rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: 999px;
}
.site-nav a:hover { background: color-mix(in srgb, var(--color-secondary) 35%, white); }
.cart-link {
  text-decoration: none; color: #fff; font-weight: 700; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--color-primary); padding: 0.45rem 1rem; border-radius: 999px;
  border: 2px solid #1a1a1a; box-shadow: 3px 3px 0 var(--color-secondary);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cart-link:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--color-secondary); }
.cart-count {
  background: #fff; color: var(--color-primary); border-radius: 999px;
  font-size: 0.75rem; min-width: 1.25rem; height: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 0.3rem;
}

main { min-height: 60vh; }

/* Hero */
.hero {
  padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: color-mix(in srgb, var(--color-secondary) 26%, white);
  border-bottom: 2px solid #1a1a1a;
}
.hero-inner { max-width: 54rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin: 0 0 1rem; }
.hero h1 mark {
  background: linear-gradient(transparent 62%, var(--color-secondary) 62%);
  color: inherit; padding: 0 0.1em;
}
.hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #333; margin: 0 0 1.75rem; max-width: 38rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.hero-cta {
  display: inline-block; background: var(--color-primary); color: #fff;
  padding: 0.95rem 2rem; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 1.05rem;
  border: 2px solid #1a1a1a; box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.hero-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #1a1a1a; }
.hero-cta-secondary {
  display: inline-block; background: #fff; color: #1a1a1a;
  padding: 0.95rem 2rem; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 1.05rem; border: 2px solid #1a1a1a;
}
.hero-cta-secondary:hover { background: color-mix(in srgb, var(--color-secondary) 35%, white); }
.hero-proof { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.95rem; font-weight: 600; color: #333; }

/* Section heads */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: 1.25rem; flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head a { font-weight: 700; text-decoration: none; }
.section-head a:hover { text-decoration: underline; }

/* Category tiles */
.category-tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; padding-bottom: 1rem;
}
.category-tile {
  border: 2px solid #1a1a1a; border-radius: 18px; overflow: hidden;
  text-decoration: none; color: #1a1a1a; font-weight: 800; font-size: 1.25rem;
  background: color-mix(in srgb, var(--color-secondary) 30%, white);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.category-tile:nth-child(3n+2) { background: color-mix(in srgb, var(--color-primary) 12%, white); }
.category-tile:nth-child(3n) { background: color-mix(in srgb, var(--color-primary) 30%, var(--color-secondary) ); }
.category-tile:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #1a1a1a; }
.category-tile span { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 1.6rem 1.3rem; }
.category-tile span::after { content: "→"; font-size: 1.3rem; }

/* Product grid + cards */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem; padding-bottom: 2.5rem;
}
.product-card {
  text-decoration: none; color: inherit; border: 2px solid #1a1a1a;
  border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
  background: #fff;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.product-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--color-secondary); }
.product-card img, .card-media {
  aspect-ratio: 1; object-fit: cover; width: 100%;
  background: color-mix(in srgb, var(--color-secondary) 22%, white);
  border-bottom: 2px solid #1a1a1a;
}
.card-media { display: flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--color-primary) 50%, white); font-weight: 700; }
.card-title { padding: 0.85rem 1rem 0.15rem; font-weight: 700; font-size: 1rem; line-height: 1.3; }
.card-rating { padding: 0.25rem 1rem 0; font-size: 0.82rem; color: #555; }
.card-price { padding: 0.3rem 1rem 1rem; font-weight: 700; }
.card-price s { color: #999; margin-right: 0.4rem; font-weight: 400; }

/* Category page */
.category-head { padding-top: 2.5rem; padding-bottom: 1rem; }
.category-head h1 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); }
.page-indicator { color: #777; font-size: 0.9rem; }
.catalog-cat-head { padding-top: 1rem; }
.catalog-cat-head a { text-decoration: none; color: inherit; }
.pagination { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; padding-bottom: 3rem; }
.pagination a, .pagination .current {
  padding: 0.45rem 0.9rem; border: 2px solid #1a1a1a; border-radius: 999px;
  text-decoration: none; font-weight: 600; color: #1a1a1a;
}
.pagination a:hover { background: color-mix(in srgb, var(--color-secondary) 35%, white); }
.pagination .current { background: var(--color-primary); color: #fff; }

/* Product page */
.product-layout {
  display: grid; grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 4vw, 3rem) 1rem;
  align-items: start;
}
@media (max-width: 860px) { .product-layout { grid-template-columns: 1fr; } }
.product-gallery { display: flex; flex-direction: column; gap: 0.9rem; position: sticky; top: 5rem; }
@media (max-width: 860px) { .product-gallery { position: static; } }
.product-gallery img, .product-gallery video, .gallery-ph {
  border-radius: 18px; border: 2px solid #1a1a1a;
  background: color-mix(in srgb, var(--color-secondary) 24%, white);
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }

.buy-column h1 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin: 0 0 0.75rem; }

.rating-line {
  display: inline-flex; align-items: center; gap: 0.45rem; text-decoration: none;
  color: #1a1a1a; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem;
  padding: 0.3rem 0.8rem; border: 2px solid #1a1a1a; border-radius: 999px;
  background: color-mix(in srgb, var(--color-secondary) 25%, white);
}
.rating-line:hover { background: color-mix(in srgb, var(--color-secondary) 45%, white); }

/* Star rating: fill percentage from --rating (0-5) */
.stars { --percent: calc(var(--rating) / 5 * 100%); display: inline-block; font-size: 1rem; line-height: 1; }
.stars::before {
  content: "★★★★★";
  background: linear-gradient(90deg, #f5a623 var(--percent), #d8d8d8 var(--percent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.price-block { display: flex; align-items: center; gap: 0.7rem; margin: 0.9rem 0 0.4rem; flex-wrap: wrap; }
.sale-price { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; }
.compare-price { color: #888; font-size: 1.15rem; }
.savings-badge {
  background: var(--color-secondary); color: #1a1a1a;
  font-weight: 800; font-size: 0.9rem; padding: 0.3rem 0.8rem;
  border-radius: 999px; border: 2px solid #1a1a1a;
  transform: rotate(-2deg); display: inline-block;
}

/* Honest urgency signals — grouped, quiet, factual */
.signal-stack {
  display: flex; flex-direction: column; gap: 0.35rem;
  border: 2px dashed color-mix(in srgb, var(--color-primary) 40%, white);
  border-radius: 14px; padding: 0.8rem 1rem; margin: 0.9rem 0;
  background: color-mix(in srgb, var(--color-primary) 5%, white);
}
.urgency-badge { color: #b45309; font-weight: 700; margin: 0; font-size: 0.95rem; }
.social-proof-line, .viewing-counter, .dispatch-countdown { color: #444; font-size: 0.9rem; margin: 0; }

.variant-selector { display: flex; gap: 1rem; margin: 1.1rem 0; flex-wrap: wrap; }
.variant-group { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.variant-group select {
  padding: 0.6rem 0.9rem; border: 2px solid #1a1a1a; border-radius: 12px;
  font-size: 1rem; min-width: 9rem; font-family: inherit; font-weight: 600; background: #fff;
}

.add-to-cart {
  width: 100%; padding: 1.05rem; font-size: 1.15rem; font-weight: 800;
  font-family: inherit; background: var(--color-primary); color: #fff;
  border: 2px solid #1a1a1a; border-radius: 999px; cursor: pointer;
  margin: 0.75rem 0 0.4rem; box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.add-to-cart:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #1a1a1a; }
.add-to-cart:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #1a1a1a; }
.add-to-cart:disabled { background: #999; cursor: not-allowed; box-shadow: none; transform: none; }
.add-to-cart.added { background: #15803d; }

.waitlist-form { display: flex; gap: 0.5rem; margin: 0.5rem 0; }
.waitlist-form input { flex: 1; padding: 0.7rem; border: 2px solid #1a1a1a; border-radius: 12px; font-family: inherit; }
.waitlist-form button { padding: 0.7rem 1.1rem; border: 2px solid #1a1a1a; border-radius: 999px; background: var(--color-primary); color: #fff; font-weight: 700; font-family: inherit; cursor: pointer; }

.trust-stack { list-style: none; padding: 1rem 0 0; margin: 1rem 0 0; border-top: 2px solid #f0f0f0; }
.trust-stack li { padding: 0.3rem 0 0.3rem 1.7rem; position: relative; font-size: 0.92rem; color: #333; }
.trust-stack li::before {
  content: "✓"; position: absolute; left: 0; top: 0.35rem;
  width: 1.15rem; height: 1.15rem; border-radius: 999px;
  background: var(--color-secondary); border: 1.5px solid #1a1a1a;
  color: #1a1a1a; font-weight: 800; font-size: 0.7rem;
  display: inline-flex; align-items: center; justify-content: center;
}

.product-body { margin-top: 1.25rem; color: #333; font-size: 1rem; }
.product-body p { margin: 0 0 0.9rem; }

/* FBT, FAQ, reviews */
.fbt, .faq-section, .reviews, .recently-viewed { padding-top: 2rem; padding-bottom: 2rem; }
.fbt-row, .rv-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.25rem 0; }
.add-all {
  padding: 0.75rem 1.6rem; border: 2px solid #1a1a1a; background: #fff;
  color: #1a1a1a; font-weight: 700; font-family: inherit; border-radius: 999px;
  cursor: pointer; box-shadow: 3px 3px 0 var(--color-secondary);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.add-all:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--color-secondary); }

.faq-section { max-width: 52rem; }
.faq-section details {
  border: 2px solid #1a1a1a; border-radius: 14px;
  padding: 0; margin: 0.6rem 0; overflow: hidden; background: #fff;
}
.faq-section summary {
  font-weight: 700; cursor: pointer; padding: 0.9rem 1.1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after { content: "+"; font-size: 1.4rem; font-weight: 800; color: var(--color-primary); flex-shrink: 0; }
.faq-section details[open] summary::after { content: "–"; }
.faq-section details[open] summary { background: color-mix(in srgb, var(--color-secondary) 20%, white); }
.faq-section p { color: #444; margin: 0; padding: 0.9rem 1.1rem; border-top: 2px solid #f0f0f0; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin: 1.25rem 0; }
.review {
  border: 2px solid #1a1a1a; border-radius: 16px; padding: 1.1rem 1.2rem;
  background: #fff; margin: 0;
}
.review-head { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.review p { margin: 0.4rem 0 0; color: #333; }
.verified-badge {
  background: var(--color-secondary); color: #1a1a1a; font-size: 0.72rem;
  font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 999px;
  border: 1.5px solid #1a1a1a;
}
.reviews-empty { color: #666; }

/* Value props strip */
.value-props {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; padding-top: 1.5rem; padding-bottom: 2.5rem;
}
.value-prop { border-top: 3px solid var(--color-primary); padding-top: 0.75rem; }
.value-prop strong { display: block; font-size: 1.02rem; margin-bottom: 0.2rem; }
.value-prop span { color: #555; font-size: 0.92rem; }

/* Cart page */
.cart-page { padding-top: 2rem; padding-bottom: 2rem; max-width: 44rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem; align-items: center; padding: 0.9rem 0; border-bottom: 2px solid #f0f0f0; }
.cart-item img { border-radius: 10px; aspect-ratio: 1; object-fit: cover; border: 2px solid #1a1a1a; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-item-qty button { width: 1.8rem; height: 1.8rem; border: 2px solid #1a1a1a; background: #fff; border-radius: 8px; cursor: pointer; font-weight: 700; }
.cart-item-remove { background: none; border: 0; color: #999; cursor: pointer; font-size: 0.85rem; text-decoration: underline; font-family: inherit; }
.cart-total-line { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-top: 1rem; }
.cart-note { color: #777; font-size: 0.85rem; }
.checkout-btn {
  width: 100%; padding: 1.05rem; font-size: 1.1rem; font-weight: 800; font-family: inherit;
  background: var(--color-primary); color: #fff; border: 2px solid #1a1a1a;
  border-radius: 999px; cursor: pointer; box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.checkout-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #1a1a1a; }
.price-notice { color: #b45309; font-size: 0.9rem; }

/* Email capture */
.email-capture {
  padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-primary); color: #fff; margin-top: 2.5rem;
  border-top: 2px solid #1a1a1a;
}
.email-capture h2 { color: #fff; margin: 0 0 0.4rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.email-capture p { color: color-mix(in srgb, #fff 82%, var(--color-primary)); margin: 0 0 1.25rem; max-width: 34rem; }
.email-capture form { display: flex; gap: 0.6rem; max-width: 28rem; flex-wrap: wrap; }
.email-capture input {
  flex: 1; min-width: 12rem; padding: 0.85rem 1rem;
  border: 2px solid #1a1a1a; border-radius: 999px; font-family: inherit; font-size: 0.95rem;
}
.email-capture button {
  padding: 0.85rem 1.5rem; border: 2px solid #1a1a1a; border-radius: 999px;
  background: var(--color-secondary); color: #1a1a1a; font-weight: 800;
  font-family: inherit; font-size: 0.95rem; cursor: pointer;
  box-shadow: 3px 3px 0 #1a1a1a; transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.email-capture button:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #1a1a1a; }

/* Static pages */
.static-page { padding-top: 2rem; padding-bottom: 2rem; max-width: 44rem; }

/* Footer */
.site-footer { background: #1a1a1a; color: #bbb; padding-top: 2.5rem; padding-bottom: 2.5rem; margin-top: 0; }
.site-footer strong { color: #fff; font-size: 1.05rem; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.footer-cols a { display: block; color: #bbb; text-decoration: none; padding: 0.18rem 0; }
.footer-cols a:hover { color: var(--color-secondary); }
.footer-fineprint { font-size: 0.82rem; color: #888; margin-top: 1.75rem; }


/* ============ v3 additions ============ */

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-primary); color: #fff; font-weight: 700;
  padding: 0.6rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* Promo ticker — marquee strip */
.promo-banner { overflow: hidden; white-space: nowrap; display: block; padding: 0.55rem 0; }
.ticker-track { display: inline-flex; gap: 2.5rem; padding-left: 1rem; animation: ticker 28s linear infinite; will-change: transform; }
.ticker-track > span { display: inline-flex; align-items: center; gap: 2.5rem; }
.ticker-track em { font-style: normal; color: var(--color-secondary); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* Dotted + blob depth for tinted sections */
.hero {
  background:
    radial-gradient(38rem 22rem at 88% -10%, color-mix(in srgb, var(--color-primary) 16%, transparent), transparent 70%),
    radial-gradient(color-mix(in srgb, var(--color-primary) 14%, transparent) 1.5px, transparent 1.5px),
    color-mix(in srgb, var(--color-secondary) 26%, white);
  background-size: auto, 24px 24px, auto;
  position: relative;
}

/* Sticker chips */
.sticker-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.6rem; }
.sticker-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 2px solid #1a1a1a; border-radius: 999px;
  font-weight: 700; font-size: 0.88rem; padding: 0.35rem 0.9rem;
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--color-primary) 30%, white);
}
.sticker-chip:nth-child(odd) { transform: rotate(-2deg); }
.sticker-chip:nth-child(even) { transform: rotate(1.5deg); box-shadow: 3px 3px 0 var(--color-secondary); }

/* Product card sale badge + media depth */
.product-card { position: relative; }
.card-badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 1;
  background: var(--color-secondary); color: #1a1a1a;
  border: 2px solid #1a1a1a; border-radius: 999px;
  font-weight: 800; font-size: 0.78rem; padding: 0.2rem 0.65rem;
  transform: rotate(-3deg);
}
.card-media {
  background:
    radial-gradient(color-mix(in srgb, var(--color-primary) 10%, transparent) 1.5px, transparent 1.5px),
    color-mix(in srgb, var(--color-secondary) 22%, white);
  background-size: 20px 20px, auto;
}

/* Featured quotes strip (real store reviews, surfaced) */
.quote-section {
  background:
    radial-gradient(color-mix(in srgb, var(--color-primary) 8%, transparent) 1.5px, transparent 1.5px),
    color-mix(in srgb, var(--color-primary) 6%, white);
  background-size: 24px 24px, auto;
  border-top: 2px solid #1a1a1a; border-bottom: 2px solid #1a1a1a;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 3rem);
}
.quote-section h2 { margin: 0 0 1.25rem; }
.quote-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.quote-card {
  background: #fff; border: 2px solid #1a1a1a; border-radius: 16px;
  padding: 1.2rem 1.3rem; box-shadow: 4px 4px 0 color-mix(in srgb, var(--color-primary) 22%, white);
}
.quote-card:nth-child(2) { transform: rotate(0.6deg); box-shadow: 4px 4px 0 var(--color-secondary); }
.quote-card:nth-child(3) { transform: rotate(-0.6deg); }
.quote-card blockquote { margin: 0.4rem 0 0.6rem; font-size: 1.02rem; font-weight: 600; line-height: 1.4; }
.quote-card figcaption { font-size: 0.85rem; color: #555; display: flex; align-items: center; gap: 0.5rem; }

/* Breadcrumbs */
.breadcrumbs { padding: 1.1rem clamp(1rem, 4vw, 3rem) 0; font-size: 0.85rem; color: #777; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; color: #bbb; }
.breadcrumbs a { color: #555; text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--color-primary); }

/* Gallery sale sticker + dots */
.gallery-main { position: relative; }
.gallery-sticker {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--color-secondary); border: 2px solid #1a1a1a; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem; padding: 0.35rem 0.9rem;
  transform: rotate(-4deg); box-shadow: 3px 3px 0 #1a1a1a;
}
.gallery-ph {
  background:
    radial-gradient(color-mix(in srgb, var(--color-primary) 10%, transparent) 1.5px, transparent 1.5px),
    color-mix(in srgb, var(--color-secondary) 24%, white);
  background-size: 22px 22px, auto;
}

/* At-a-glance specs */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.6rem; margin: 1.1rem 0 0; padding: 0; }
.specs div { border: 2px solid #eee; border-radius: 12px; padding: 0.55rem 0.8rem; }
.specs dt { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #777; margin: 0; }
.specs dd { margin: 0.1rem 0 0; font-weight: 700; font-size: 0.92rem; }

/* Guarantee card */
.guarantee-card {
  display: flex; gap: 0.9rem; align-items: flex-start;
  border: 2px solid #1a1a1a; border-radius: 16px;
  background: color-mix(in srgb, var(--color-secondary) 22%, white);
  padding: 1rem 1.1rem; margin: 1.1rem 0 0;
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--color-primary) 25%, white);
}
.guarantee-card .g-mark {
  flex-shrink: 0; width: 2.4rem; height: 2.4rem; border-radius: 999px;
  background: var(--color-primary); color: #fff; border: 2px solid #1a1a1a;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; transform: rotate(-4deg);
}
.guarantee-card strong { display: block; margin-bottom: 0.15rem; }
.guarantee-card span { font-size: 0.9rem; color: #333; }

/* Payment methods line */
.payment-line { display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; margin: 0.6rem 0 0; font-size: 0.8rem; color: #666; }
.payment-line b {
  border: 1.5px solid #ccc; border-radius: 6px; padding: 0.12rem 0.5rem;
  font-size: 0.72rem; font-weight: 700; color: #444; background: #fff;
  letter-spacing: 0.02em;
}

/* Rating summary + bars */
.reviews { position: relative; }
.reviews-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; margin: 1.25rem 0; align-items: start; }
@media (max-width: 860px) { .reviews-layout { grid-template-columns: 1fr; } }
.rating-summary {
  border: 2px solid #1a1a1a; border-radius: 16px; padding: 1.2rem 1.3rem;
  background: color-mix(in srgb, var(--color-secondary) 20%, white);
  position: sticky; top: 5rem;
}
.rating-summary .big { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.rating-summary .sub { color: #555; font-size: 0.88rem; margin: 0.3rem 0 0.9rem; }
.rating-bar { display: grid; grid-template-columns: 2.2rem 1fr 2rem; gap: 0.5rem; align-items: center; font-size: 0.8rem; font-weight: 600; color: #555; margin: 0.25rem 0; }
.rating-bar .bar { height: 0.55rem; border-radius: 999px; background: #fff; border: 1.5px solid #1a1a1a; overflow: hidden; }
.rating-bar .bar i { display: block; height: 100%; background: var(--color-primary); border-radius: 999px; }

/* Value props as sticker cards */
.value-props { gap: 1rem; }
.value-prop {
  border: 2px solid #1a1a1a; border-top: 2px solid #1a1a1a; border-radius: 16px;
  padding: 1.1rem 1.2rem; background: #fff;
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--color-secondary) 70%, white);
}
.value-prop strong { font-size: 1.05rem; }

/* Email capture depth */
.email-capture {
  background:
    radial-gradient(30rem 18rem at 90% 120%, color-mix(in srgb, var(--color-secondary) 28%, transparent), transparent 70%),
    radial-gradient(color-mix(in srgb, #fff 10%, transparent) 1.5px, transparent 1.5px),
    var(--color-primary);
  background-size: auto, 26px 26px, auto;
  position: relative;
}
.email-note { font-size: 0.8rem; margin-top: 0.7rem; color: color-mix(in srgb, #fff 70%, var(--color-primary)); }

/* Footer polish */
.site-footer { border-top: 2px solid #1a1a1a; }
.footer-payments { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; font-size: 0.8rem; color: #999; }
.footer-payments b { border: 1.5px solid #444; border-radius: 6px; padding: 0.12rem 0.5rem; font-size: 0.72rem; font-weight: 700; color: #ccc; letter-spacing: 0.02em; }


/* v3.1 — photo placeholder support */
.hero-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px) { .hero-split { grid-template-columns: 1fr; } }
.hero-photo {
  border: 2px solid #1a1a1a; border-radius: 20px; overflow: hidden;
  transform: rotate(1.2deg); box-shadow: 6px 6px 0 #1a1a1a;
  background: #fff; aspect-ratio: 4 / 3;
}
.tile-media { height: 150px; border-bottom: 2px solid #1a1a1a; }
