/* Shared chrome + commerce components for Shop and product detail pages.
   Mirrors the design tokens used on the homepage so all pages match. */

:root {
    --blue: #111827;
    --blue-hover: #000000;
    --blue-light: #F4EFEA;
    --bronze: #B5886A;
    --bd: rgba(0,0,0,0.07);
    --sh: 0 1px 3px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
}
* { box-sizing: border-box; }
html, body { overflow-x: clip; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #ffffff; color: #111827; -webkit-font-smoothing: antialiased; margin: 0; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }

/* Buttons */
.btn-blue { background: var(--blue); color: #fff; border-radius: 8px; font-weight: 600; padding: 11px 22px; border: none; cursor: pointer; transition: background 0.2s; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; line-height: 1.4; white-space: nowrap; min-height: 44px; }
.btn-blue:hover { background: var(--blue-hover); }
.btn-outline { background: transparent; color: #111827; border: 1px solid rgba(0,0,0,0.14); border-radius: 8px; font-weight: 600; padding: 11px 22px; cursor: pointer; transition: border-color 0.2s, background 0.2s; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; line-height: 1.4; white-space: nowrap; min-height: 44px; }
.btn-outline:hover { border-color: rgba(0,0,0,0.3); background: rgba(0,0,0,0.02); }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: #F9FAFB; }
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bronze); margin-bottom: 12px; }
.section-heading { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: #111827; margin: 0; }
.section-sub { font-size: clamp(15px, 1.6vw, 18px); color: #4B5563; line-height: 1.65; max-width: 680px; margin-top: 12px; }

/* Page hero strip */
.page-top { padding: 120px 0 8px; }
.breadcrumb { font-size: 13px; color: #9CA3AF; margin-bottom: 14px; }
.breadcrumb a:hover { color: #111827; }
.breadcrumb span { color: #4B5563; }

/* About page */
.about-hero { padding: 128px 0 72px; background: #F9FAFB; border-bottom: 1px solid var(--bd); }
.about-hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 54px; align-items: center; }
.about-title { font-size: clamp(38px, 5vw, 72px); max-width: 720px; }
.about-lede { max-width: 560px; }
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.about-hero-media { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); background: #F3F4F6; }
.about-hero-media img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story-grid { display: grid; grid-template-columns: 0.82fr 1fr; gap: 56px; align-items: start; }
.about-copy { display: grid; gap: 18px; font-size: 17px; line-height: 1.75; color: #4B5563; }
.about-copy p { margin: 0; }
.about-copy.compact { margin-top: 18px; font-size: 15px; line-height: 1.7; }
.about-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-proof-card { background: #fff; border: 1px solid var(--bd); border-radius: 14px; padding: 24px; box-shadow: var(--sh); }
.about-proof-kicker { margin: 0 0 12px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--bronze); }
.about-proof-card h3 { margin: 0 0 10px; font-size: 20px; line-height: 1.2; color: #111827; letter-spacing: -0.02em; }
.about-proof-card p { margin: 0; font-size: 14px; line-height: 1.65; color: #4B5563; }
.about-nimbus-panel { display: grid; grid-template-columns: 0.82fr 1fr; gap: 48px; align-items: center; }
.about-nimbus-media { border-radius: 14px; overflow: hidden; background: #F3F4F6; box-shadow: var(--sh); }
.about-nimbus-media img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-paths { display: grid; grid-template-columns: 0.72fr 1fr; gap: 48px; align-items: start; }
.about-path-grid { display: grid; gap: 14px; }
.about-path-grid article { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.about-path-grid article:first-child { padding-top: 0; }
.about-path-grid article:last-child { border-bottom: 0; padding-bottom: 0; }
.about-path-grid span { width: 34px; height: 34px; border-radius: 9px; background: #111827; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.about-path-grid h3 { grid-column: 2; margin: 0 0 6px; font-size: 18px; color: #111827; }
.about-path-grid p { grid-column: 2; margin: 0; font-size: 14px; line-height: 1.6; color: #4B5563; }

/* Shop grid */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.shop-card { background: #fff; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden; box-shadow: var(--sh); display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.shop-card[id] { scroll-margin-top: 96px; }
.shop-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.10); transform: translateY(-2px); }
.shop-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--sh); }
.shop-card-media { aspect-ratio: 4/3; background: #F3F4F6; overflow: hidden; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product-badge { align-self: flex-start; display: inline-flex; align-items: center; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; border-radius: 20px; padding: 3px 10px; margin-bottom: 12px; }
.product-badge.bronze { background: var(--bronze); }
.product-badge.dark { background: #111827; }
.shop-card h3 { font-size: 22px; font-weight: 800; color: #111827; margin: 0 0 6px; }
.shop-card .price { font-size: 30px; font-weight: 900; color: #111827; letter-spacing: -0.03em; margin: 4px 0 12px; }
.shop-card .price span { font-size: 14px; font-weight: 500; color: #9CA3AF; letter-spacing: 0; }
.shop-card .desc { font-size: 14px; color: #4B5563; line-height: 1.6; margin: 0 0 18px; flex: 1; }
.shop-card-actions { display: flex; gap: 10px; }
.shop-card-actions .btn-blue, .shop-card-actions .btn-outline { flex: 1; justify-content: center; }
.shop-local-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; margin-top: 28px; padding: 26px 28px; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; background: #FAFAF9; box-shadow: var(--sh); }
.shop-local-panel .section-label { margin-bottom: 8px; }
.shop-local-panel h2 { margin: 0; font-size: clamp(22px, 3vw, 32px); line-height: 1.12; font-weight: 850; letter-spacing: 0; color: #111827; }
.shop-local-panel p { margin: 10px 0 0; max-width: 620px; font-size: 15px; line-height: 1.6; color: #4B5563; }
.shop-local-panel .btn-outline { justify-content: center; min-width: 148px; background: #fff; }

/* Product detail */
.pdp { padding: 112px 0 24px; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.pdp-gallery { position: sticky; top: 96px; }
.pdp-main-img { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.10); background: #F3F4F6; aspect-ratio: 4/3; }
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp-thumb { width: 76px; height: 76px; border-radius: 10px; overflow: hidden; border: 1px solid var(--bd); background: #F3F4F6; cursor: pointer; padding: 0; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

.pdp-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bronze); margin-bottom: 10px; }
.pdp h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.04; margin: 0 0 10px; }
.pdp-price { font-size: 38px; font-weight: 900; letter-spacing: -0.04em; color: #111827; margin: 0 0 6px; }
.pdp-price span { font-size: 16px; font-weight: 500; color: #9CA3AF; letter-spacing: 0; }
.pdp-lede { font-size: 16px; color: #4B5563; line-height: 1.7; margin: 14px 0 22px; }
.pdp-list { margin: 0 0 24px; padding: 0; list-style: none; display: grid; gap: 9px; }
.pdp-list li { font-size: 14px; color: #374151; display: flex; align-items: flex-start; gap: 9px; }
.pdp-list li::before { content: "\2713"; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pdp-buy { background: #fff; border: 1px solid var(--bd); border-radius: 14px; padding: 22px; box-shadow: var(--sh); }
.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.qty-btn { width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.14); background: #fff; cursor: pointer; font-size: 20px; color: #374151; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.qty-btn:hover { background: #f3f4f6; }
.qty-val { font-size: 17px; font-weight: 700; color: #111827; min-width: 30px; text-align: center; }
.qty-label { font-size: 13px; color: #6B7280; }
.pdp-buy-actions { display: flex; gap: 10px; }
.pdp-buy-actions .btn-blue { flex: 1; justify-content: center; }
.pdp-ship-note { font-size: 12px; color: #9CA3AF; line-height: 1.55; margin: 14px 0 0; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--bd); border-radius: 12px; overflow: hidden; }
.spec-table tr { border-bottom: 1px solid var(--bd); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table td { padding: 14px 20px; font-size: 14px; }
.spec-table td:first-child { color: #6B7280; font-weight: 500; width: 46%; }
.spec-table td:last-child { color: #111827; font-weight: 600; }

/* Cross-sell */
.crosssell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }

/* Footer */
.site-footer { padding: 40px 0 32px; border-top: 1px solid rgba(0,0,0,0.07); background: #fafafa; margin-top: 24px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: 13px; color: #6B7280; }
.footer-nav a:hover { color: #111827; }
.footer-copy { font-size: 13px; color: #9CA3AF; }

/* Responsive */
@media (max-width: 900px) {
    .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
    .pdp-gallery { position: static; top: auto; }
    .crosssell-grid { grid-template-columns: 1fr; }
    .about-hero-grid,
    .about-story-grid,
    .about-nimbus-panel,
    .about-paths { grid-template-columns: 1fr; gap: 32px; }
    .about-proof-grid { grid-template-columns: 1fr; }
    .about-hero { padding-top: 112px; }
}
@media (max-width: 760px) {
    .shop-grid { grid-template-columns: 1fr; }
    .shop-local-panel { grid-template-columns: 1fr; padding: 24px 22px; }
    .shop-local-panel .btn-outline { width: 100%; }
    .about-title { font-size: clamp(34px, 10vw, 48px); }
    .about-copy { font-size: 15px; }
}
