/* ═══════════════════════════════════════════════════════════════════════
   PRINT SHOP — Vinicius Murari Photography
   Premium gallery aesthetic · full uncropped photos · editorial layout
   ═══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:  #ffffff;
  --bg:     #f5f5f7;
  --bg2:    #fbfbfd;
  --text:   #1d1d1f;
  --muted:  #6e6e73;
  --light:  #d2d2d7;
  --blue:   #0071e3;
  --sans:   'Inter', -apple-system, sans-serif;
  --serif:  'Playfair Display', Georgia, serif;
  --r:      18px;
  --wall:   #f0ede8;
  --mat:    #ffffff;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Nav ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background .4s, border-color .4s;
}
.nav-logo {
  font-size: 0.8rem; font-weight: 500; color: var(--text);
  text-decoration: none; transition: color .3s;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.78rem; color: var(--text); text-decoration: none;
  opacity: 0.65; transition: opacity .2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-dark-toggle {
  background: none; border: 1px solid var(--light); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text); transition: all 0.3s; flex-shrink: 0;
}
.nav-dark-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-dark-toggle .icon-moon { display: none; }
[data-theme="dark"] .nav-dark-toggle .icon-sun { display: none; }
[data-theme="dark"] .nav-dark-toggle .icon-moon { display: block; }
.nav-cta {
  font-size: 0.74rem; background: var(--blue); color: #fff;
  padding: 7px 16px; border-radius: 980px; text-decoration: none;
  transition: filter .2s; white-space: nowrap;
}
.nav-cta:hover { filter: brightness(1.1); }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px; background: var(--text);
  margin: 5px 0; border-radius: 2px; transition: all .3s;
}

/* ─── Mobile nav overlay ─── */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-size: 1.4rem; font-family: var(--serif); color: var(--text);
  text-decoration: none; opacity: 0.7; transition: opacity .2s;
}
.mobile-nav-overlay a:hover, .mobile-nav-overlay a.active { opacity: 1; }
[data-theme="dark"] .mobile-nav-overlay {
  background: rgba(10,10,10,0.97);
}
[data-theme="dark"] .mobile-nav-overlay a { color: #e5e5e7; }


/* ═══════════════════════════════════════════════════════════════════════
   SHOP HERO — Editorial, spacious
   ═══════════════════════════════════════════════════════════════════════ */
.shop-hero {
  padding: 160px 24px 48px;
  text-align: center;
}
.shop-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.shop-hero-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 20px;
  opacity: 0; animation: heroFadeUp 0.8s 0.1s cubic-bezier(.22,1,.36,1) forwards;
}
.shop-hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 24px; color: var(--text);
  letter-spacing: -0.02em;
  opacity: 0; animation: heroFadeUp 0.8s 0.2s cubic-bezier(.22,1,.36,1) forwards;
}
.shop-hero-divider {
  width: 48px; height: 1px;
  background: var(--light);
  margin: 0 auto 24px;
  opacity: 0; animation: heroFadeUp 0.8s 0.3s cubic-bezier(.22,1,.36,1) forwards;
}
.shop-hero-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
  max-width: 420px; margin: 0 auto;
  opacity: 0; animation: heroFadeUp 0.8s 0.4s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════════════ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px; margin: 0 auto;
  padding: 40px 24px 56px;
  gap: 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 16px;
  border-right: 1px solid var(--light);
}
.trust-item:last-child {
  border-right: none;
}
.trust-icon {
  color: var(--blue);
  flex-shrink: 0;
  opacity: 0.85;
  margin-bottom: 2px;
}
.trust-item strong {
  font-size: 0.78rem; font-weight: 500; color: var(--text);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.72rem; color: var(--muted);
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════════════════ */
.shop-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  padding: 0 24px 48px;
  max-width: 800px; margin: 0 auto;
}
.filter-btn {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  padding: 8px 20px; border-radius: 980px;
  border: 1px solid var(--light); background: transparent;
  color: var(--muted); cursor: pointer;
  transition: all .25s;
}
.filter-btn:hover {
  border-color: var(--text); color: var(--text);
}
.filter-btn.active {
  background: var(--text); border-color: var(--text); color: var(--white);
}


/* ═══════════════════════════════════════════════════════════════════════
   PRODUCTS GRID — Gallery-style with full uncropped photos
   ═══════════════════════════════════════════════════════════════════════ */
.shop-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 40px;
}


/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT CARD — Print-on-wall effect with mat border
   ═══════════════════════════════════════════════════════════════════════ */
.product-card {
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* The "frame" wrapper — subtle wall-mounted print effect */
.product-card-frame {
  position: relative;
  background: var(--mat);
  padding: 20px;
  border-radius: 2px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.04);
  transition: transform .5s cubic-bezier(.22,1,.36,1),
              box-shadow .5s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-card-frame {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.1),
    0 4px 12px rgba(0,0,0,0.06);
}

/* Image container — show FULL photo, no crop */
.product-card-img {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  line-height: 0;
}
.product-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1),
              filter .7s;
}
.product-card:hover .product-card-img img {
  transform: scale(1.03);
}

/* Hover overlay */
.product-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span {
  font-size: 0.78rem; font-weight: 500; color: #fff;
  padding: 10px 24px; border-radius: 980px;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}

/* Card info */
.product-card-info {
  padding: 18px 4px 4px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
}
.product-card-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.product-card-price {
  font-size: 0.78rem; color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card-price strong {
  color: var(--text); font-weight: 500;
}


/* ─── Skeleton loading ─── */
.product-skeleton {
  border-radius: 2px;
  overflow: hidden;
}
.product-skeleton .skel-frame {
  background: var(--mat);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-skeleton .skel-img {
  aspect-ratio: 4/3;
  background: linear-gradient(110deg, #eaeaea 8%, #f3f3f3 18%, #eaeaea 33%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}
.product-skeleton .skel-info {
  padding: 18px 4px 4px;
  display: flex; justify-content: space-between; align-items: center;
}
.product-skeleton .skel-line {
  height: 14px; border-radius: 4px;
  background: linear-gradient(110deg, #eaeaea 8%, #f3f3f3 18%, #eaeaea 33%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}
.product-skeleton .skel-line:first-child { width: 55%; }
.product-skeleton .skel-line:last-child  { width: 20%; }

@keyframes shimmer {
  to { background-position-x: -200%; }
}


/* ─── Shop Empty State ─── */
.shop-empty {
  text-align: center; padding: 80px 24px;
  color: var(--muted); font-size: 1rem; line-height: 1.7;
}
.empty-icon {
  color: var(--light);
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════════════════════════════════════
   STORY SECTION — "From Lens to Wall"
   ═══════════════════════════════════════════════════════════════════════ */
.shop-story {
  background: var(--bg);
  padding: 96px 24px;
  margin-top: 16px;
}
.shop-story-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.shop-story-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 16px;
}
.shop-story-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 20px; color: var(--text);
  letter-spacing: -0.02em;
}
.shop-story-text {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  max-width: 600px; margin: 0 auto 56px;
}
.shop-story-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.story-step {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 12px;
}
.step-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: var(--blue); opacity: 0.4;
  line-height: 1;
}
.step-label {
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  letter-spacing: 0.02em;
}
.step-desc {
  font-size: 0.75rem; color: var(--muted); line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT MODAL
   ═══════════════════════════════════════════════════════════════════════ */
.product-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.product-modal.open { opacity: 1; visibility: visible; }

.product-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

.product-modal-content {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 20px;
  max-width: 1040px; width: 92%;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
.product-modal.open .product-modal-content {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.06); border: none;
  font-size: 1.3rem; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.product-modal-close:hover {
  background: rgba(0,0,0,0.1); color: var(--text);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-height: 90vh;
}

/* Modal image — show full photo with elegant background */
.product-modal-image {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  padding: 32px;
  min-height: 400px;
  position: relative;
}
.product-modal-image img {
  max-width: 100%; max-height: 70vh;
  height: auto; width: auto;
  object-fit: contain;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
/* product-modal-media wraps image + wall toggle */
.product-modal-media {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 400px;
}
.product-modal-media .product-modal-image {
  flex: 1;
  padding: 32px;
}

.product-modal-info {
  padding: 44px 40px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 24px;
}

.product-modal-info h2 {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.product-desc {
  font-size: 0.88rem; line-height: 1.75; color: var(--muted);
}

/* Option groups */
.product-option-group {
  display: flex; flex-direction: column; gap: 10px;
}
.product-option-label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
}

/* Size pills */
.product-sizes {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.size-pill {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 400;
  padding: 9px 18px; border-radius: 980px;
  border: 1px solid var(--light); background: transparent;
  color: var(--text); cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.size-pill:hover {
  border-color: var(--text);
}
.size-pill.active {
  background: var(--text); border-color: var(--text); color: var(--white);
}

/* Frame pills */
.product-frames {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.frame-pill {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 400;
  padding: 9px 18px; border-radius: 980px;
  border: 1px solid var(--light); background: transparent;
  color: var(--text); cursor: pointer;
  transition: all .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.frame-pill:hover { border-color: var(--text); }
.frame-pill.active {
  background: var(--text); border-color: var(--text); color: var(--white);
}
.frame-swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid var(--light); flex-shrink: 0;
}
.frame-pill.active .frame-swatch { border-color: rgba(255,255,255,0.4); }
.frame-swatch[data-color="none"]    { background: transparent; border-style: dashed; }
.frame-swatch[data-color="black"]   { background: #1a1a1a; }
.frame-swatch[data-color="white"]   { background: #f5f5f5; border-color: #ccc; }
.frame-swatch[data-color="natural"] { background: #c49a6c; }

/* Price row */
.product-price-row {
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--light);
}
.product-price {
  font-family: var(--sans); font-size: 1.7rem; font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.product-price-note {
  font-size: 0.75rem; color: var(--muted);
}

/* Buy button */
.product-buy-btn {
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  padding: 16px 32px; border-radius: 980px;
  background: var(--text); color: var(--white); border: none;
  cursor: pointer; transition: all .3s cubic-bezier(.22,1,.36,1);
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.product-buy-btn svg {
  transition: transform .3s;
}
.product-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.product-buy-btn:hover svg {
  transform: translateX(4px);
}
.product-buy-btn:active {
  transform: translateY(0); box-shadow: none;
}
.product-buy-btn:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none;
}


/* ─── Success toast ─── */
.shop-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  padding: 14px 28px; border-radius: 14px;
  background: var(--text); color: var(--white);
  font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 2000;
  opacity: 0; transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s;
}
.shop-toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.shop-footer {
  background: var(--bg); padding: 80px 24px 32px;
  margin-top: 0;
}
.shop-footer-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--light);
}
.shop-footer-col h4 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  margin-bottom: 14px;
}
.shop-footer-col p {
  font-size: 0.82rem; color: var(--muted); line-height: 1.7;
}
.shop-footer-link {
  font-size: 0.82rem; color: var(--blue); text-decoration: none;
  display: inline-block; margin-top: 12px;
  transition: opacity .2s;
}
.shop-footer-link:hover { opacity: 0.7; }
.shop-footer-bottom {
  max-width: 1000px; margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--muted);
}
.shop-footer-bottom a {
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.shop-footer-bottom a:hover { color: var(--text); }


/* ═══════════════════════════════════════════════════════════════════════
   SIZE GUIDE — Visual scale reference
   ═══════════════════════════════════════════════════════════════════════ */
.size-guide {
  padding: 96px 24px 56px;
  background: var(--white);
}
.size-guide-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.size-guide-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 16px;
}
.size-guide-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 20px; color: var(--text);
  letter-spacing: -0.02em;
}
.size-guide-text {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  max-width: 600px; margin: 0 auto 48px;
}

/* The wall stage — 2.4m tall reference */
.size-guide-stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.size-guide-wall {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, #efeae3 0%, #e8e1d6 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.04);
}
.size-guide-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14%;
  background: linear-gradient(180deg, #d8cfc1 0%, #c4b9a6 100%);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
}
.size-guide-human {
  position: absolute;
  left: 6%; bottom: 14%;
  height: 70.8%;  /* 1.7m of 2.4m = 70.8% */
  width: auto;
  fill: rgba(0,0,0,0.18);
  stroke: rgba(0,0,0,0.18);
  z-index: 2;
}

/* Print sizes positioned at eye level */
.size-block {
  position: absolute;
  bottom: 30%;  /* on the wall, above floor */
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.size-block-frame {
  background: linear-gradient(135deg, #fcfaf6 0%, #f3eee5 100%);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 6px 16px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
}
.size-block-info {
  display: flex; flex-direction: column; gap: 2px;
  text-align: center;
}
.size-block-info strong {
  font-family: var(--serif); font-size: 0.95rem; color: var(--text);
}
.size-block-info span {
  font-size: 0.72rem; color: var(--muted);
}

/* Scaled to 2.4m wall height = 100% */
/* A4: 30cm tall = 12.5% of wall height — landscape so wider */
.size-a4 { left: 26%; }
.size-a4 .size-block-frame { width: 75px; height: 53px; }

.size-a3 { left: 47%; }
.size-a3 .size-block-frame { width: 105px; height: 74px; }

.size-a2 { left: 70%; }
.size-a2 .size-block-frame { width: 145px; height: 102px; }


/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS — Social proof
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 96px 24px;
  background: var(--white);
}
.testimonials-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.testimonials-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 16px;
}
.testimonials-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 48px; color: var(--text);
  letter-spacing: -0.02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.testimonial-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 24px;
  font-family: var(--serif);
  font-size: 4rem; line-height: 1;
  color: var(--blue);
  opacity: 0.15;
  font-style: italic;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.testimonial-stars {
  display: flex; gap: 2px;
  color: var(--blue);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--light);
}
.testimonial-author strong {
  font-size: 0.85rem; font-weight: 500; color: var(--text);
}
.testimonial-author span {
  font-size: 0.74rem; color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq {
  padding: 96px 24px;
  background: var(--bg);
}
.faq-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.faq-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 16px;
}
.faq-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 48px; color: var(--text);
  letter-spacing: -0.02em;
}
.faq-list {
  text-align: left;
  display: flex; flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--light);
}
.faq-item:first-child { border-top: 1px solid var(--light); }

.faq-question {
  width: 100%;
  background: none; border: none;
  font-family: var(--sans);
  font-size: 1rem; font-weight: 500;
  color: var(--text);
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,113,227,0.08);
  color: var(--blue);
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .2s;
}
.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1);
}
.faq-answer-inner {
  padding: 0 0 22px 0;
  font-size: 0.92rem; line-height: 1.75; color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════════════ */
.shop-newsletter {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.shop-newsletter-inner {
  max-width: 640px; margin: 0 auto;
  text-align: center;
}
.shop-newsletter-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--blue);
  margin-bottom: 16px;
}
.shop-newsletter-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 20px; color: var(--text);
  letter-spacing: -0.02em;
}
.shop-newsletter-text {
  font-size: 0.95rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 32px;
}
.shop-newsletter-form {
  display: flex; gap: 8px;
  max-width: 460px; margin: 0 auto 12px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 980px;
  transition: border-color .2s, box-shadow .2s;
}
.shop-newsletter-form:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,113,227,0.1);
}
.shop-newsletter-form input {
  flex: 1;
  border: none; background: transparent;
  font-family: var(--sans); font-size: 0.92rem;
  padding: 10px 18px;
  color: var(--text);
  outline: none;
}
.shop-newsletter-form input::placeholder {
  color: var(--muted);
}
.shop-newsletter-form button {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 980px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: filter .2s, transform .2s;
}
.shop-newsletter-form button:hover {
  filter: brightness(1.1);
  transform: translateX(2px);
}
.shop-newsletter-form.success input { color: var(--blue); }
.shop-newsletter-form.success button { background: var(--blue); }
.shop-newsletter-note {
  font-size: 0.72rem; color: var(--muted);
}


/* ═══════════════════════════════════════════════════════════════════════
   WISHLIST HEART (on cards)
   ═══════════════════════════════════════════════════════════════════════ */
.wishlist-btn {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all .25s cubic-bezier(.22,1,.36,1);
  z-index: 5;
}
.wishlist-btn:hover {
  background: var(--white);
  transform: scale(1.08);
  color: #e0245e;
}
.wishlist-btn.active {
  color: #e0245e;
  background: var(--white);
}
.wishlist-btn.active svg {
  fill: #e0245e;
  animation: heartPop .4s cubic-bezier(.22,1,.36,1);
}
@keyframes heartPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.card-wishlist-btn {
  position: absolute;
  top: 12px; right: 12px;
}
.modal-wishlist-btn {
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--light);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT CARD ENHANCEMENTS — limited edition, wishlist
   ═══════════════════════════════════════════════════════════════════════ */
.product-card-img {
  position: relative;
}
.card-limited-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 980px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 5;
}


/* ═══════════════════════════════════════════════════════════════════════
   MODAL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════ */
.product-modal-media {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg);
}
.modal-view-toggle {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 980px;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.view-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: none;
  padding: 7px 14px;
  border-radius: 980px;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
}
.view-toggle-btn:hover { color: var(--text); }
.view-toggle-btn.active {
  background: var(--text); color: var(--white);
}

/* Modal header row with title + wishlist */
.modal-header-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.modal-header-row h2 { flex: 1; }

/* Limited edition row */
.modal-edition-row {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  margin-top: -8px;
}
.edition-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,113,227,0.08);
  color: var(--blue);
  padding: 5px 12px;
  border-radius: 980px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.04em;
}
.edition-availability {
  font-size: 0.78rem;
  color: var(--muted);
}
.edition-availability strong {
  color: var(--text);
  font-weight: 500;
}
.edition-availability.low {
  color: #c4582d;
  font-weight: 500;
}

/* Photo story */
.product-story {
  position: relative;
  padding: 16px 0 16px 24px;
  border-left: 2px solid var(--blue);
  background: linear-gradient(90deg, rgba(0,113,227,0.04), transparent);
  margin: 0;
}
.product-story-mark {
  position: absolute;
  left: 10px; top: 8px;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--blue);
  opacity: 0.5;
  font-style: italic;
  line-height: 1;
}
.product-story p {
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

/* Modal guarantees */
.modal-guarantees {
  display: flex; flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
}
.modal-guarantee {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem;
  color: var(--muted);
}
.modal-guarantee svg {
  color: #2ea44f;
  flex-shrink: 0;
}

/* Wall preview inside modal */
[hidden] { display: none !important; }

.product-modal-wall {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 60px 32px 32px;
  background: var(--bg);
  min-height: 400px;
}
.wall-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background:
    linear-gradient(180deg, #efeae3 0%, #e8e1d6 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
  transition: background-image .5s ease-out;
}

.wall-preview-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14%;
  background: linear-gradient(180deg, #d8cfc1 0%, #c4b9a6 100%);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
}
.wall-preview-human {
  position: absolute;
  left: 8%; bottom: 14%;
  height: 70.8%;
  width: auto;
  fill: rgba(0,0,0,0.18);
  stroke: rgba(0,0,0,0.18);
  z-index: 2;
}

.wall-print {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-25%);
  background: #fff;
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.1),
    0 6px 18px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  /* Width set by JS — aspect-ratio determines height. Mat = 8% inset via inner img */
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.wall-print img {
  display: block;
  width: 84%; height: 84%;
  object-fit: cover;
}
.wall-preview-caption {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════════════
   RELATED PRODUCTS (in modal)
   ═══════════════════════════════════════════════════════════════════════ */
.modal-related {
  padding: 32px 40px 40px;
  border-top: 1px solid var(--light);
  background: var(--bg);
}
.modal-related-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--muted);
  margin-bottom: 20px;
}
.modal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  cursor: pointer;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.related-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.related-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.related-card:hover .related-card-img img {
  transform: scale(1.05);
}
.related-card-info {
  padding: 10px 12px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px;
}
.related-card-info strong {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
}
.related-card-info span {
  font-size: 0.72rem; color: var(--muted);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════════════════
   NAV WISHLIST BUTTON
   ═══════════════════════════════════════════════════════════════════════ */
.nav-wishlist-btn {
  position: relative;
  background: none; border: 1px solid var(--light); border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #e0245e;
  transition: all 0.3s; flex-shrink: 0;
}
.nav-wishlist-btn:hover {
  background: rgba(224,36,94,0.06);
  transform: scale(1.05);
}
.nav-wishlist-btn span {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: #e0245e;
  color: #fff;
  font-size: 0.6rem; font-weight: 600;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
[data-theme="dark"] .nav-wishlist-btn { border-color: #333; }
[data-theme="dark"] .nav-wishlist-btn span { border-color: #0a0a0a; }

/* ═══════════════════════════════════════════════════════════════════════
   BUNDLE PRICING BANNER
   ═══════════════════════════════════════════════════════════════════════ */
.bundle-banner {
  max-width: 800px; margin: 0 auto 32px;
  padding: 0 24px;
}
.bundle-banner-inner {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  background: linear-gradient(135deg, rgba(0,113,227,0.08), rgba(0,113,227,0.04));
  border: 1px solid rgba(0,113,227,0.2);
  border-radius: 980px;
  color: var(--text);
  font-size: 0.83rem;
  width: 100%;
  justify-content: center;
}
.bundle-banner-inner svg {
  color: var(--blue);
  flex-shrink: 0;
}
.bundle-banner-inner strong { color: var(--blue); font-weight: 600; }

[data-theme="dark"] .bundle-banner-inner {
  background: linear-gradient(135deg, rgba(0,113,227,0.15), rgba(0,113,227,0.08));
  border-color: rgba(0,113,227,0.3);
}


/* ═══════════════════════════════════════════════════════════════════════
   FRAME PREVIEW (wall view)
   Restructure: outer = frame, inner mat = .wall-print-mat, then image
   ═══════════════════════════════════════════════════════════════════════ */
.wall-print {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-25%);
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  padding: 2%;  /* Frame thickness — thin, elegant */
  background: transparent;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.1),
    0 6px 18px rgba(0,0,0,0.12);
  transition: width .5s cubic-bezier(.22,1,.36,1),
              background .35s, padding .35s;
}

/* Frame variants */
.wall-print[data-frame="none"] {
  padding: 0;
  background: transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.wall-print[data-frame="black"] {
  background: linear-gradient(135deg, #2a2a2a 0%, #0e0e0e 100%);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.15),
    0 10px 24px rgba(0,0,0,0.22);
}
.wall-print[data-frame="white"] {
  background: linear-gradient(135deg, #ffffff 0%, #e8e6e3 100%);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.1),
    0 8px 20px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.05);
}
.wall-print[data-frame="natural"] {
  background:
    repeating-linear-gradient(110deg, #c49a6c 0px, #c49a6c 2px, #b88958 2px, #b88958 4px, #c49a6c 4px, #c49a6c 8px),
    linear-gradient(135deg, #c49a6c, #a87a4f);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.2);
}

.wall-print-mat {
  width: 100%; height: 100%;
  background: #fff;
  padding: 5%;  /* The mat (inside the frame) — thinner, more refined */
  display: flex; align-items: center; justify-content: center;
}
.wall-print[data-frame="none"] .wall-print-mat {
  padding: 0;
  background: transparent;
}
.wall-print-mat img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Override old .wall-print img since we restructured */
.wall-print > img { display: none; }


/* ═══════════════════════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════════════════════════ */
.modal-mobile-cta {
  display: none;
  position: sticky; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--light);
  padding: 12px 20px;
  align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 5;
}
.modal-mobile-cta-price {
  display: flex; flex-direction: column;
}
.modal-mobile-cta-price .cta-label {
  font-size: 0.65rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.modal-mobile-cta-price .cta-price {
  font-family: var(--sans); font-size: 1.2rem; font-weight: 500;
  color: var(--text);
}
.modal-mobile-cta .product-buy-btn {
  padding: 12px 22px;
  font-size: 0.84rem;
}

[data-theme="dark"] .modal-mobile-cta {
  background: rgba(20,20,20,0.96);
  border-top-color: #2c2c2e;
}


/* ═══════════════════════════════════════════════════════════════════════
   LIGHTBOX — Fullscreen image viewer
   ═══════════════════════════════════════════════════════════════════════ */
.product-modal-image {
  cursor: zoom-in;
  position: relative;
}
.product-modal-image::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.product-modal-image:hover::after {
  opacity: 1;
}

.shop-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
  padding: 24px;
  cursor: zoom-out;
}
.shop-lightbox.open {
  opacity: 1; visibility: visible;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  cursor: zoom-out;
}
.shop-lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 980px;
  color: #fff;
  font-family: var(--serif);
  font-size: 0.95rem;
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ═══════════════════════════════════════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════════════════════════════════════ */
[data-theme="dark"] {
  --bg: #111; --bg2: #0e0e0e; --text: #e5e5e7;
  --muted: #8e8e93; --light: #2c2c2e; --white: #0a0a0a;
  --wall: #141414; --mat: #1a1a1a;
}
[data-theme="dark"] body { background: #0a0a0a; color: #e5e5e7; }
[data-theme="dark"] nav {
  background: rgba(10,10,10,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .nav-logo { color: #e5e5e7; }
[data-theme="dark"] .nav-links a { color: #e5e5e7; }
[data-theme="dark"] .nav-burger span { background: #e5e5e7; }
[data-theme="dark"] .nav-dark-toggle { color: #e5e5e7; border-color: #333; }
[data-theme="dark"] .nav-dark-toggle:hover { background: rgba(255,255,255,0.1); }

[data-theme="dark"] .product-card-frame {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.15);
}
[data-theme="dark"] .product-card:hover .product-card-frame {
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.2);
}
[data-theme="dark"] .product-card-img { background: #111; }

[data-theme="dark"] .product-modal-content { background: #1a1a1a; }
[data-theme="dark"] .product-modal-close { background: rgba(255,255,255,0.08); color: #999; }
[data-theme="dark"] .product-modal-close:hover { background: rgba(255,255,255,0.14); color: #e5e5e7; }
[data-theme="dark"] .product-modal-image { background: #111; }
[data-theme="dark"] .product-modal-image img { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

[data-theme="dark"] .size-pill { border-color: #333; color: #e5e5e7; }
[data-theme="dark"] .size-pill:hover { border-color: #e5e5e7; }
[data-theme="dark"] .size-pill.active { background: #e5e5e7; color: #0a0a0a; border-color: #e5e5e7; }
[data-theme="dark"] .frame-pill { border-color: #333; color: #e5e5e7; }
[data-theme="dark"] .frame-pill:hover { border-color: #e5e5e7; }
[data-theme="dark"] .frame-pill.active { background: #e5e5e7; color: #0a0a0a; border-color: #e5e5e7; }
[data-theme="dark"] .filter-btn { border-color: #333; color: #8e8e93; }
[data-theme="dark"] .filter-btn:hover { border-color: #e5e5e7; color: #e5e5e7; }
[data-theme="dark"] .filter-btn.active { background: #e5e5e7; color: #0a0a0a; border-color: #e5e5e7; }
[data-theme="dark"] .product-price-row { border-top-color: #2c2c2e; }

[data-theme="dark"] .product-buy-btn { background: #e5e5e7; color: #0a0a0a; }
[data-theme="dark"] .product-buy-btn:hover { box-shadow: 0 12px 32px rgba(255,255,255,0.08); }

[data-theme="dark"] .trust-item strong { color: #e5e5e7; }
[data-theme="dark"] .trust-item { border-color: #2c2c2e; }

[data-theme="dark"] .shop-story { background: #111; }
[data-theme="dark"] .step-num { color: var(--blue); }

[data-theme="dark"] .shop-footer { background: #111; }
[data-theme="dark"] .shop-footer-inner { border-bottom-color: #2c2c2e; }

[data-theme="dark"] .product-skeleton .skel-frame { background: #1a1a1a; }
[data-theme="dark"] .product-skeleton .skel-img,
[data-theme="dark"] .product-skeleton .skel-line {
  background: linear-gradient(110deg, #1a1a1a 8%, #222 18%, #1a1a1a 33%);
  background-size: 200% 100%; animation: shimmer 1.2s linear infinite;
}

[data-theme="dark"] .empty-icon { color: #333; }

/* Dark mode for new sections */
[data-theme="dark"] .size-guide { background: #0a0a0a; }
[data-theme="dark"] .size-guide-wall {
  background: linear-gradient(180deg, #1e1c19 0%, #16140f 100%);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
}
[data-theme="dark"] .size-guide-floor {
  background: linear-gradient(180deg, #2a2620 0%, #1f1a14 100%);
}
[data-theme="dark"] .size-guide-human {
  fill: rgba(255,255,255,0.12);
  stroke: rgba(255,255,255,0.12);
}
[data-theme="dark"] .size-block-frame {
  background: linear-gradient(135deg, #2a2620 0%, #1f1a14 100%);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.5);
}
[data-theme="dark"] .size-block-info strong { color: #e5e5e7; }

[data-theme="dark"] .testimonials { background: #0a0a0a; }
[data-theme="dark"] .testimonial-card {
  background: #151515;
}
[data-theme="dark"] .testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
[data-theme="dark"] .testimonial-quote { color: #e5e5e7; }
[data-theme="dark"] .testimonial-author { border-top-color: #2c2c2e; }
[data-theme="dark"] .testimonial-author strong { color: #e5e5e7; }

[data-theme="dark"] .faq { background: #111; }
[data-theme="dark"] .faq-item { border-bottom-color: #2c2c2e; }
[data-theme="dark"] .faq-item:first-child { border-top-color: #2c2c2e; }
[data-theme="dark"] .faq-question { color: #e5e5e7; }
[data-theme="dark"] .faq-question .faq-icon { background: rgba(0,113,227,0.15); }

[data-theme="dark"] .shop-newsletter {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
[data-theme="dark"] .shop-newsletter-form {
  background: #1a1a1a;
  border-color: #2c2c2e;
}
[data-theme="dark"] .shop-newsletter-form input { color: #e5e5e7; }
[data-theme="dark"] .shop-newsletter-form button {
  background: #e5e5e7; color: #0a0a0a;
}

[data-theme="dark"] .wishlist-btn {
  background: rgba(20,20,20,0.85);
  border-color: rgba(255,255,255,0.08);
  color: #999;
}
[data-theme="dark"] .wishlist-btn:hover {
  background: #1a1a1a;
}
[data-theme="dark"] .modal-wishlist-btn {
  background: rgba(255,255,255,0.05);
  border-color: #2c2c2e;
}

[data-theme="dark"] .card-limited-badge {
  background: rgba(0,0,0,0.85);
  color: #fff;
}

[data-theme="dark"] .modal-view-toggle {
  background: rgba(26,26,26,0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
[data-theme="dark"] .view-toggle-btn.active {
  background: #e5e5e7; color: #0a0a0a;
}

[data-theme="dark"] .product-modal-media,
[data-theme="dark"] .product-modal-wall { background: #111; }
[data-theme="dark"] .wall-preview {
  background: linear-gradient(180deg, #1e1c19 0%, #16140f 100%);
}
[data-theme="dark"] .wall-preview-floor {
  background: linear-gradient(180deg, #2a2620 0%, #1f1a14 100%);
}
[data-theme="dark"] .wall-preview-human {
  fill: rgba(255,255,255,0.12);
  stroke: rgba(255,255,255,0.12);
}
[data-theme="dark"] .wall-print {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.2);
}

[data-theme="dark"] .edition-badge {
  background: rgba(0,113,227,0.15);
}

[data-theme="dark"] .product-story {
  background: linear-gradient(90deg, rgba(0,113,227,0.08), transparent);
}
[data-theme="dark"] .product-story p { color: #e5e5e7; }

[data-theme="dark"] .modal-related {
  background: #111;
  border-top-color: #2c2c2e;
}
[data-theme="dark"] .related-card { background: #1a1a1a; }
[data-theme="dark"] .related-card-info strong { color: #e5e5e7; }


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .product-modal-body { grid-template-columns: 1fr; }
  .product-modal-image { min-height: auto; padding: 24px; }
  .product-modal-image img { max-height: 45vh; }
  .product-modal-info { padding: 28px 24px 32px; padding-bottom: 90px; }
  .product-modal-content { max-height: 95vh; overflow-y: auto; }
  .product-modal-media { min-height: auto; }
  .product-modal-wall { min-height: 320px; padding: 56px 24px 24px; }
  .shop-story-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .modal-related-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-related { padding: 24px 20px 28px; padding-bottom: 90px; }
  /* Sticky CTA visible on mobile, hide the inline buy button to avoid duplication */
  .modal-mobile-cta { display: flex; }
  .product-modal-info .product-buy-btn { display: none; }

  /* Size guide: scale down on smaller screens */
  .size-a4 { left: 22%; }
  .size-a4 .size-block-frame { width: 56px; height: 40px; }
  .size-a3 { left: 44%; }
  .size-a3 .size-block-frame { width: 78px; height: 56px; }
  .size-a2 { left: 68%; }
  .size-a2 .size-block-frame { width: 110px; height: 78px; }
}

@media (max-width: 768px) {
  .shop-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
  .shop-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .shop-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--light); padding-top: 24px; }
  .product-card-frame { padding: 14px; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; gap: 32px; padding: 0; }
  .lightbox-img { max-width: 95vw; max-height: 80vh; }
  .lightbox-caption { font-size: 0.85rem; padding: 12px 16px; }
  .shop-grid-wrapper { padding: 0 16px 60px; }
  .shop-hero { padding: 120px 16px 32px; }
  .shop-hero-title { font-size: 2.4rem; }
  .shop-filters { padding: 0 16px 32px; }
  .product-modal-info h2 { font-size: 1.3rem; }
  .product-modal-info { padding: 24px 20px 28px; gap: 20px; }
  .product-modal-image { padding: 16px; }
  .shop-story { padding: 64px 16px; }
  .shop-story-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card-frame { padding: 12px; }
  .size-guide, .testimonials, .faq, .shop-newsletter { padding: 64px 16px; }
  .shop-newsletter-form { flex-direction: column; padding: 0; background: transparent; border: none; gap: 10px; }
  .shop-newsletter-form input { background: var(--white); border: 1px solid var(--light); border-radius: 980px; padding: 14px 22px; }
  .shop-newsletter-form button { padding: 14px 22px; justify-content: center; }
  .modal-related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .size-a4 { left: 18%; }
  .size-a4 .size-block-frame { width: 42px; height: 30px; }
  .size-a3 { left: 40%; }
  .size-a3 .size-block-frame { width: 58px; height: 42px; }
  .size-a2 { left: 66%; }
  .size-a2 .size-block-frame { width: 82px; height: 58px; }
  .size-block-info strong { font-size: 0.8rem; }
  .size-block-info span { font-size: 0.65rem; }
}
