/* product.css — Susan Bloom Gallery fine art product pages (product-s01m*.html)
   Requires design.css. */

/* ── NAV OFFSET ─────────────────────────────────────────────────────── */
.p-nav-offset { height: var(--nav-h); }

/* ── TRUST BAR (product pages use green) ───────────────────────────── */
.trust-bar {
  background: var(--green); color: #fff;
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 6px clamp(16px,3vw,40px);
  padding: 10px var(--pad);
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────────────────────── */
.p-hero {
  position: relative; background: var(--dark); overflow: hidden;
  min-height: 100vh; display: flex; flex-direction: column;
}
.hero-body {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: clamp(80px,10vw,120px) var(--pad) clamp(32px,5vw,56px);
  position: relative; z-index: 2;
}
.hero-top-meta {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 32px; display: flex; gap: 12px;
}
.hero-stage {
  width: min(100%, 700px); aspect-ratio: 1/1;
  margin-bottom: 32px; position: relative;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px,8vw,88px); font-weight: 300;
  line-height: 0.95; text-align: center; color: #fff;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; }
.hero-anchor-cta {
  display: inline-block; margin-top: 20px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-anchor-cta:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.ghost-num {
  position: absolute; bottom: 0; left: var(--pad);
  font-family: var(--font-serif); font-size: clamp(120px,18vw,200px);
  font-weight: 300; color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.05em;
}
.hero-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 28px; color: rgba(255,255,255,0.3);
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.cue-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.2);
  animation: cue-pulse 2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── MANDALA PICKER ──────────────────────────────────────────────────── */
.cat-picker-section {
  padding: 28px var(--pad) 20px;
  background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cat-picker-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.mandala-picker { display: flex; flex-wrap: wrap; gap: 6px; max-width: 1000px; }
.mpick-thumb {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 3px; background: none;
  border: 1.5px solid rgba(255,255,255,0.1); border-radius: 3px;
  cursor: pointer; transition: border-color 0.18s; flex: 0 0 auto;
}
.mpick-thumb picture { display: block; width: 48px; height: 48px; overflow: hidden; border-radius: 2px; }
.mpick-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mpick-thumb span {
  font-size: 8px; font-weight: 500; color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.18s;
  max-width: 56px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mpick-thumb:hover { border-color: rgba(255,255,255,0.4); }
.mpick-thumb:hover span { color: rgba(255,255,255,0.7); }
.mpick-thumb.is-active { border-color: rgba(255,255,255,0.8); }
.mpick-thumb.is-active span { color: rgba(255,255,255,0.9); }

/* ── GALLERY ─────────────────────────────────────────────────────────── */
.p-gallery {
  background: var(--dark);
  padding: 0 var(--pad) clamp(32px,5vw,56px);
  display: grid; grid-template-columns: 1fr 88px; gap: 12px;
  max-width: 1400px; margin: 0 auto;
}
.gallery-main {
  position: relative; overflow: hidden; background: #111;
  aspect-ratio: 1/1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-main-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(10,10,8,0.8) 0%, transparent 100%);
  display: flex; gap: 16px; align-items: flex-end;
}
.caption-num {
  font-family: var(--font-serif); font-size: 48px; font-weight: 300;
  color: rgba(255,255,255,0.15); line-height: 1; flex-shrink: 0;
}
.caption-text strong {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.caption-text p { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }

.gallery-thumbs {
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto; scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.g-thumb {
  width: 84px; height: 84px; flex-shrink: 0;
  overflow: hidden; background: #1a1a1a;
  border: 1.5px solid transparent; border-radius: 2px;
  cursor: pointer; transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55; padding: 0;
  position: relative;
}
.g-thumb.is-active { border-color: rgba(255,255,255,0.6); opacity: 1; }
.g-thumb:hover { opacity: 0.85; }
.g-thumb picture { display: block; width: 100%; height: 100%; }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-thumb span {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-size: 7px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); padding: 3px 5px; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

/* ── THE WORK ────────────────────────────────────────────────────────── */
.p-work {
  max-width: 1400px; margin: 0 auto;
  padding: clamp(64px,8vw,96px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,7vw,96px);
  align-items: start;
}
.work-img-col { position: sticky; top: 80px; }
.work-img-wrap { background: var(--dark); aspect-ratio: 1/1; overflow: hidden; }
.work-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-text-col {}
.work-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px,4vw,52px); font-weight: 300;
  line-height: 1.1; color: var(--black); margin-bottom: 20px;
}
.work-heading em { font-style: italic; }
.work-desc {
  font-size: 15px; line-height: 1.9; color: #666660;
  font-weight: 300; margin-bottom: 28px;
}
.work-specs { display: flex; flex-direction: column; }
.spec-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--rule); font-size: 14px;
}
.spec-row:first-child { border-top: 1px solid var(--rule); }
.spec-row dt { color: var(--muted); font-weight: 400; }
.spec-row dd { color: var(--black); font-weight: 400; text-align: right; }

/* ── PURCHASE ────────────────────────────────────────────────────────── */
.p-purchase {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: clamp(56px,7vw,80px) var(--pad) 0;
}

/* Intro: heading + description | specs table (2-col only when specs present) */
.purchase-intro {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px,5vw,72px); align-items: start;
  max-width: 900px; margin: 0 auto clamp(40px,5vw,56px);
}
.purchase-intro:has(> .purchase-intro-details) {
  grid-template-columns: 1fr 1fr;
}
.purchase-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px,5vw,64px); font-weight: 300;
  line-height: 0.92; letter-spacing: -0.01em;
  color: var(--black); margin-bottom: 16px;
}
.purchase-intro-text p {
  font-size: 14px; line-height: 1.85; color: #666660; font-weight: 300;
}
.purchase-specs { display: flex; flex-direction: column; }
.pspec-row {
  display: flex; justify-content: space-between; padding: 9px 0;
  border-bottom: 1px solid var(--rule); font-size: 13px;
}
.pspec-row:first-child { border-top: 1px solid var(--rule); }
.pspec-row dt { color: var(--muted); font-weight: 400; }
.pspec-row dd { color: var(--black); font-weight: 400; text-align: right; }

/* Step labels */
.purchase-step-label {
  max-width: 900px; margin: 0 auto 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  display: block;
}

/* Medium toggle: segmented control */
.medium-toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 900px; margin: 0 auto 28px;
  border: 1.5px solid var(--rule); border-radius: 3px; overflow: hidden;
}
.medium-btn {
  padding: 15px 20px;
  border: none; border-right: 1.5px solid var(--rule);
  font-size: 13px; font-weight: 500; color: var(--muted);
  cursor: pointer; background: #fff; text-align: center;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-sans);
}
.medium-btn:last-child { border-right: none; }
.medium-btn.is-active { background: var(--black); color: #fff; }
.medium-btn:hover:not(.is-active) { background: var(--bg); color: var(--black); }

/* Size options: 2×2 grid */
.p-options {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; max-width: 900px; margin: 0 auto 16px;
}
.p-option {
  display: grid;
  grid-template-areas:
    "num   check"
    "dims  dims"
    "info  info"
    "price price";
  grid-template-columns: 1fr auto;
  padding: 20px 20px 18px; text-align: left;
  border: 1.5px solid var(--rule); border-radius: 3px;
  cursor: pointer; background: #fff;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.p-option:hover:not(.selected):not(.is-selected) {
  border-color: #aaa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.p-option.selected {
  background: var(--black); border-color: var(--black);
  box-shadow: none;
}

.opt-number {
  grid-area: num; align-self: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.p-option.selected .opt-number { color: rgba(255,255,255,0.4); }

.opt-check {
  grid-area: check; align-self: center; justify-self: end;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.p-option.selected .opt-check { display: flex; }

.opt-dims {
  grid-area: dims;
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 300; line-height: 1;
  color: var(--black); margin: 10px 0 8px;
}
.opt-dims span { font-size: 18px; color: var(--muted); }
.opt-dims small { font-size: 20px; color: var(--muted); }
.p-option.selected .opt-dims { color: #fff; }
.p-option.selected .opt-dims span,
.p-option.selected .opt-dims small { color: rgba(255,255,255,0.4); }

.opt-info {
  grid-area: info; margin-bottom: 14px;
}
.opt-type {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--black); letter-spacing: 0.03em;
}
.opt-material {
  display: block; font-size: 10px; color: var(--muted);
  margin-top: 2px; font-weight: 400;
}
.p-option.selected .opt-type { color: rgba(255,255,255,0.85); }
.p-option.selected .opt-material { color: rgba(255,255,255,0.4); }

.opt-price {
  grid-area: price;
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400; color: var(--black);
  display: block;
}
.p-option.selected .opt-price { color: #fff; }

/* ── INLINE ADD BUTTON (injected by product.js) ─────────────────────── */
.inline-add-btn {
  display: block; width: 100%;
  max-width: 900px; margin: 0 auto 8px;
  padding: 18px 28px;
  background: var(--black); color: #fff;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; border-radius: 3px;
  cursor: pointer; transition: background 0.2s;
  text-align: center;
}
.inline-add-btn:hover:not(:disabled) { background: var(--green); }
.inline-add-btn:disabled {
  background: #f0efe9; color: var(--muted);
  border: 1.5px solid var(--rule);
  cursor: default; letter-spacing: 0.12em;
}
.inline-add-btn.is-confirmed { background: var(--green); }

/* Shipping note */
.shipping-note {
  max-width: 900px; margin: 0 auto 0;
  font-size: 12px; color: var(--muted); line-height: 1.6;
  padding: 14px 0 8px;
}
.purchase-trust {
  max-width: 900px; margin: 0 auto;
  padding: 0 0 32px;
}
.trust-returns {
  display: inline-block; margin-bottom: 24px;
  font-size: 12px; color: var(--green); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}
.purchase-testimonials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .purchase-testimonials { grid-template-columns: 1fr; } }
.pt-quote {
  border-left: 2px solid var(--rule);
  padding: 0 0 0 16px; margin: 0;
}
.pt-quote p {
  font-size: 13px; line-height: 1.75; color: #555550;
  font-style: italic; font-weight: 300; margin: 0 0 6px;
}
.pt-quote cite {
  font-size: 11px; color: var(--muted); font-style: normal;
  letter-spacing: 0.06em;
}

/* Sticky CTA bar — fixed to viewport, slides up after hero scroll */
.p-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(249,248,245,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule);
  padding: 14px var(--pad);
  display: flex; gap: 16px; align-items: center;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.p-cta-bar.is-visible {
  transform: translateY(0);
}
.cta-selection {
  flex: 1; font-size: 13px; color: var(--black); font-weight: 400;
}
.cta-hint { color: var(--muted); }
.cta-selection strong { font-weight: 600; }
.cta-btn {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 24px;
  background: var(--black); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: 2px; white-space: nowrap;
  cursor: pointer; transition: background 0.2s;
  font-family: var(--font-sans);
}
.cta-btn:hover:not(:disabled) { background: var(--green); }
.cta-btn:disabled { background: #ccc; cursor: not-allowed; }
.cta-btn.is-confirmed { background: var(--green); }
.cta-arrow { transition: transform 0.2s; }
.cta-btn:hover:not(:disabled) .cta-arrow { transform: translateX(3px); }

/* ── SIZE GUIDE ──────────────────────────────────────────────────────── */
.size-guide-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.size-guide-btn:hover { color: var(--black); }

/* ── ALSO AVAILABLE ──────────────────────────────────────────────────── */
.also-section {
  max-width: 1400px; margin: 0 auto;
  padding: clamp(56px,7vw,80px) var(--pad);
  border-top: 1px solid var(--rule);
}
.also-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.also-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.also-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.also-card {
  position: relative; overflow: hidden;
  background: var(--card-bg); aspect-ratio: 1/1; cursor: pointer; display: block;
}
.also-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.85; transition: transform 0.5s var(--ease), opacity 0.3s;
}
.also-card:hover img { transform: scale(1.04); opacity: 1; }
.also-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(to top, rgba(10,10,8,0.85) 0%, transparent 100%);
  pointer-events: none;
}
.also-name {
  font-family: var(--font-serif); font-size: 13px; color: #fff;
  display: block; letter-spacing: 0.03em;
}
.also-price {
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 2px;
}

/* ── BREADCRUMB ──────────────────────────────────────────────────────── */
.p-breadcrumb {
  max-width: 1400px; margin: 0 auto;
  padding: clamp(80px,10vw,120px) var(--pad) 20px;
  font-size: 11px; color: var(--muted);
  display: flex; gap: 8px; align-items: center;
}
.p-breadcrumb a { transition: color 0.2s; }
.p-breadcrumb a:hover { color: var(--black); }
.p-breadcrumb-sep { color: var(--rule); }

/* ── FINE ART PRODUCT SPECIFIC ───────────────────────────────────────── */
.p-title {
  font-family: var(--font-serif);
  font-size: clamp(36px,5vw,60px); font-weight: 300;
  line-height: 1.05; color: var(--black); margin-bottom: 8px;
}
.p-title em { font-style: italic; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-section {
  border-top: 1px solid var(--rule);
  padding: clamp(56px,7vw,80px) var(--pad);
}
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px,3vw,40px); font-weight: 300;
  color: var(--black); margin-bottom: 32px; letter-spacing: -0.01em;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-of-type { border-top: 1px solid var(--rule); }
.faq-q {
  font-size: 14px; font-weight: 500; color: var(--black);
  padding: 18px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 20px; font-weight: 300;
  color: var(--muted); flex-shrink: 0; transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 13px; line-height: 1.8; color: #666660;
  font-weight: 300; padding-bottom: 18px; margin: 0;
}

/* Category pages use .is-selected (fine art pages use .selected) */
.p-option.is-selected { background: var(--black); border-color: var(--black); box-shadow: none; }
.p-option.is-selected .opt-number { color: rgba(255,255,255,0.4); }
.p-option.is-selected .opt-dims { color: #fff; }
.p-option.is-selected .opt-dims span,
.p-option.is-selected .opt-dims small { color: rgba(255,255,255,0.4); }
.p-option.is-selected .opt-type,
.p-option.is-selected .opt-label { color: rgba(255,255,255,0.85); }
.p-option.is-selected .opt-material { color: rgba(255,255,255,0.4); }
.p-option.is-selected .opt-price { color: #fff; }
.p-option.is-selected .opt-check { display: flex; }

/* .opt-label (category pages) same treatment as .opt-type */
.opt-label {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--black); letter-spacing: 0.03em;
}

/* ── SERIES STRIP ────────────────────────────────────────────────────── */
section.p-series {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px var(--pad) 48px;
  font-size: inherit; color: inherit;
}
.series-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto 20px;
}
.series-title-wrap {
  display: flex; align-items: baseline; gap: 12px;
}
.series-title-wrap h2 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  color: #fff; margin: 0;
}
.series-title-wrap span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.series-nav-arrows {
  display: flex; gap: 8px;
}
.series-nav-arrows button {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 2px;
  background: none; color: rgba(255,255,255,0.5);
  font-size: 16px; cursor: pointer; transition: border-color 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.series-nav-arrows button:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.series-track {
  display: flex; gap: 3px; overflow-x: auto; scrollbar-width: none;
  max-width: 1400px; margin: 0 auto;
}
.series-track::-webkit-scrollbar { display: none; }
.series-thumb {
  flex: 0 0 auto; width: 88px; height: 88px;
  overflow: hidden; position: relative;
  opacity: 0.5; transition: opacity 0.2s;
}
.series-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.series-thumb:hover { opacity: 0.85; }
.series-thumb.is-current { opacity: 1; outline: 1.5px solid rgba(255,255,255,0.6); }
.thumb-num {
  position: absolute; bottom: 4px; right: 6px;
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* Series tiles grid (category pages) */
.series-tiles {
  display: flex; gap: 3px; overflow-x: auto; scrollbar-width: none;
  max-width: 1400px; margin: 0 auto;
}
.series-tiles::-webkit-scrollbar { display: none; }
.series-tile {
  flex: 0 0 auto; width: 88px; height: 88px;
  overflow: hidden; position: relative;
  opacity: 0.5; transition: opacity 0.2s; display: block;
}
.series-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.series-tile:hover { opacity: 0.85; }
.series-tile span {
  position: absolute; bottom: 4px; right: 6px;
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.series-view-all {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  transition: color 0.2s; text-decoration: none; align-self: center;
}
.series-view-all:hover { color: rgba(255,255,255,0.8); }

/* ── PRODUCT FOOTER ──────────────────────────────────────────────────── */
.p-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px var(--pad) 40px;
}
.p-footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.p-footer-name {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 300; color: #fff; margin: 0 0 2px;
}
.p-footer-sub {
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0;
}
.p-footer-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  transition: color 0.2s; text-decoration: none; align-self: center;
}
.p-footer-link:hover { color: #fff; }
.p-footer-links {
  max-width: 1400px; margin: 0 auto 20px;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.p-footer-links a {
  font-size: 11px; color: rgba(255,255,255,0.3);
  transition: color 0.2s; text-decoration: none;
  letter-spacing: 0.08em;
}
.p-footer-links a:hover { color: rgba(255,255,255,0.7); }
.p-footer-copy {
  max-width: 1400px; margin: 0 auto;
  font-size: 10px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .p-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; overflow-y: hidden; }
  .g-thumb { width: 72px; height: 72px; flex-shrink: 0; }
  .p-work { grid-template-columns: 1fr; gap: 40px; }
  .work-img-col { position: relative; top: 0; }
}
@media (max-width: 768px) {
  .also-grid { grid-template-columns: repeat(3,1fr); }
  .p-hero { min-height: 0; }
  .purchase-intro { grid-template-columns: 1fr; gap: 28px; }

  /* Picker: reduce thumb size slightly, ensure labels don't blow out */
  .mpick-thumb picture { width: 44px; height: 44px; }

  /* CTA bar: hide selection readout on small screens — inline button already shows price */
  .cta-selection { display: none; }
  .cta-btn { flex: 1; justify-content: center; padding: 13px 20px; }
  .p-cta-bar { padding: 10px 16px; gap: 0; }
}
@media (max-width: 640px) {
  /* Picker label: shrink font so names wrap less aggressively */
  .cat-picker-section { padding: 20px 16px 14px; }
  .mandala-picker { gap: 4px; }

  /* Gallery thumbs: smaller on phones */
  .g-thumb { width: 60px; height: 60px; }

  /* Purchase section padding */
  .p-purchase { padding-left: 16px; padding-right: 16px; }
  .p-options { gap: 8px; }
  .purchase-step-label { margin-left: 0; }
}
@media (max-width: 480px) {
  .also-grid { grid-template-columns: repeat(2,1fr); }
  .p-options { grid-template-columns: 1fr; }
  .opt-dims { font-size: 28px; }

  /* Hero: reduce top padding so content sits higher on small phones */
  .hero-body { padding-top: 72px; }
}
