/* ==========================================================================
   Ochu Store — stylesheet
   Contents: 1. Tokens  2. Base  3. Utilities  4. Components  5. Header/Nav
             6. Hero + marquee  7. Trust strip  8. Category sections
             9. Deal / community / visit  10. Footer  11. Sticky bar
             12. Responsive  13. Reduced motion
   ========================================================================== */

/* ---------- 1. Tokens -------------------------------------------------- */
/* --white is the primary text/ink colour, not literally "white" — the name is
   kept stable across both themes so every rule below needs no changes; only
   the value flips. Dark is the default; [data-theme="light"] overrides it. */
:root {
  --bg: #0a0a10;
  --bg-soft: #121220;
  --paper: #16161f;
  --line: rgba(255, 255, 255, 0.1);
  --white: #f5f5fa;
  --muted: #a7a7bd;         /* verified ≥4.5:1 on --bg */
  --orange: #ff7a1a;        /* from Ochu Store's own real logo mark — button/decorative use */
  --orange-deep: #ff9142;   /* text-on-bg variant, verified ≥4.5:1 on --bg */
  --purple: #7c5cff;        /* from Ochu Store's own real wordmark */
  --purple-deep: #a894ff;   /* text-on-bg variant, verified ≥4.5:1 on --bg */
  --gold: #d4af37;          /* decorative premium accent */
  --gold-deep: #e0bc4a;     /* text-on-bg variant, verified ≥4.5:1 on --bg */

  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(18, 18, 32, 0.72);
  --glass-panel: rgba(18, 18, 32, 0.95);   /* near-opaque: functional chrome (mobile dropdown) */
  --glass-border: rgba(255, 255, 255, 0.14);
  --blur-md: blur(18px) saturate(160%);
  --blur-sm: blur(10px) saturate(150%);

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', monospace;

  --container: 1280px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --glow-1: rgba(255, 122, 26, 0.16);
  --glow-2: rgba(124, 92, 255, 0.18);
  --glow-3: rgba(124, 92, 255, 0.12);
  --veil-strong: rgba(10, 10, 16, 0.88);
  --veil-soft: rgba(10, 10, 16, 0.38);
}

:root[data-theme="light"] {
  --bg: #f6f5fa;
  --bg-soft: #eeecf6;
  --paper: #ffffff;
  --line: rgba(20, 20, 40, 0.1);
  --white: #15141f;
  --muted: #5b5b74;          /* verified ≥4.5:1 on --bg */
  --orange: #ff7a1a;
  --orange-deep: #b34400;    /* darkened text-on-light variant, verified ≥4.5:1 on --bg */
  --purple: #7c5cff;
  --purple-deep: #5636c9;    /* darkened text-on-light variant, verified ≥4.5:1 on --bg */
  --gold: #d4af37;
  --gold-deep: #7a5f08;      /* darkened text-on-light variant, verified ≥4.5:1 on --bg */

  --glass: rgba(20, 20, 40, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-panel: rgba(255, 255, 255, 0.97);
  --glass-border: rgba(20, 20, 40, 0.1);
  --shadow: 0 24px 60px rgba(20, 20, 40, 0.14);
  --glow-1: rgba(255, 122, 26, 0.12);
  --glow-2: rgba(124, 92, 255, 0.12);
  --glow-3: rgba(124, 92, 255, 0.08);
  --veil-strong: rgba(246, 245, 250, 0.9);
  --veil-soft: rgba(246, 245, 250, 0.5);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f6f5fa; --bg-soft: #eeecf6; --paper: #ffffff; --line: rgba(20, 20, 40, 0.1);
    --white: #15141f; --muted: #5b5b74; --orange-deep: #b34400; --purple-deep: #5636c9;
    --gold: #d4af37; --gold-deep: #7a5f08;
    --glass: rgba(20, 20, 40, 0.04); --glass-strong: rgba(255, 255, 255, 0.78);
    --glass-panel: rgba(255, 255, 255, 0.97); --glass-border: rgba(20, 20, 40, 0.1);
    --shadow: 0 24px 60px rgba(20, 20, 40, 0.14);
    --glow-1: rgba(255, 122, 26, 0.12); --glow-2: rgba(124, 92, 255, 0.12); --glow-3: rgba(124, 92, 255, 0.08);
    --veil-strong: rgba(246, 245, 250, 0.9); --veil-soft: rgba(246, 245, 250, 0.5);
  }
}

/* ---------- 2. Base ------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 15% 8%, var(--glow-1), transparent 60%),
    radial-gradient(45% 45% at 88% 20%, var(--glow-2), transparent 60%),
    radial-gradient(40% 35% at 50% 95%, var(--glow-3), transparent 60%);
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--orange-deep);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.25);
  border-radius: 4px;
}

/* ---------- 3. Utilities -------------------------------------------------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--orange); color: #1a0b00;
  padding: 14px 20px; z-index: 300; font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.wrap { max-width: var(--container); margin: auto; padding-inline: 24px; position: relative; z-index: 1; }

/* Scroll-reveal: visible by default (no-JS safe); JS opts in via [data-js] */
.reveal { opacity: 1; transform: none; }
html[data-js] .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html[data-js] .reveal.is-visible { opacity: 1; transform: none; }

/* Open/closed status badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font: 700 11px var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--glass-border);
  background: var(--glass); margin-bottom: 14px;
}
.status-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.status-badge.open .dot { background: #33d17a; box-shadow: 0 0 10px 1px rgba(51, 209, 122, 0.6); animation: pulse-dot 2.2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.status-badge.open { color: #1fa661; border-color: rgba(51, 209, 122, 0.35); }
:root[data-theme="light"] .status-badge.open { color: #0f7a44; }
.status-badge.closed .dot { background: #ff5470; }
.status-badge.closed { color: var(--muted); }
section { max-width: var(--container); margin: auto; padding: 100px 24px; position: relative; z-index: 1; }
.kicker {
  font: 600 11px var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.kicker::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.section-title {
  font: 500 clamp(34px, 4.4vw, 58px) / 1.04 var(--font-display);
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  max-width: 680px;
}
.section-lede { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 520px; margin: 16px 0 0; }

/* ---------- 4. Components -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 22px; border-radius: 999px;
  font: 700 13px var(--font-body); letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary { background: var(--orange); color: #1a0b00; }
.btn.primary:hover { box-shadow: 0 14px 30px rgba(255, 122, 26, 0.4); }
.btn.primary::after {
  content: '';
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 245, 210, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn.primary:hover::after { left: 130%; }
.btn.ghost {
  background: var(--glass); color: var(--white); border-color: var(--glass-border);
}
.btn.ghost:hover { border-color: var(--gold); }
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .btn.ghost { backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm); }
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-card { backdrop-filter: var(--blur-md); -webkit-backdrop-filter: var(--blur-md); }
}

/* ---------- 5. Header / Nav ------------------------------------------------ */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  header { background: var(--glass-strong); backdrop-filter: var(--blur-md); -webkit-backdrop-filter: var(--blur-md); }
}
header.is-scrolled { border-color: var(--glass-border); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }
nav.site-nav {
  max-width: var(--container); margin: auto; padding: 0 24px;
  height: 82px; display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.logo { display: flex; align-items: center; gap: 9px; font: 700 20px var(--font-display); letter-spacing: -0.01em; }
.logo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px 2px rgba(255, 122, 26, 0.7); }
.navlinks { display: flex; gap: 26px; font-size: 13px; font-weight: 600; }
.navlinks a { position: relative; padding-bottom: 4px; }
.navlinks a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--orange); transition: right 0.25s var(--ease);
}
.navlinks a:hover::after, .navlinks a:focus-visible::after { right: 0; }
.navlinks a:hover, .navlinks a:focus-visible { color: var(--orange-deep); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.mobile-menu { display: none; }

/* Theme + language toggles */
.toggle-group { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--white);
  font-size: 16px; cursor: pointer; transition: background-color 0.2s ease;
}
.icon-btn:hover { background: var(--glass-border); }
.icon-btn .icon-moon { display: none; }
:root[data-theme="light"] .icon-btn .icon-sun { display: none; }
:root[data-theme="light"] .icon-btn .icon-moon { display: inline; }
.ig-btn svg { width: 18px; height: 18px; fill: currentColor; }
.ig-btn:hover {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
}
.lang-toggle {
  display: inline-flex; border: 1px solid var(--glass-border); border-radius: 999px; overflow: hidden;
  font: 700 11px var(--font-mono); letter-spacing: 0.04em;
}
.lang-toggle button {
  padding: 10px 13px; background: transparent; color: var(--muted);
  border: 0; cursor: pointer; font: inherit; letter-spacing: inherit;
}
.lang-toggle button[aria-pressed="true"] { background: var(--orange); color: #1a0b00; }

/* ---------- 6. Hero + marquee ---------------------------------------------- */
.hero {
  max-width: none; margin: 0;
  position: relative; z-index: 1; overflow: hidden;
}

/* Full-bleed crossfading photo backdrop -- real shop + product photography,
   always dark-scrimmed regardless of the site-wide light/dark toggle. */
.hero-backdrop { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--bg); }
.hero-slides { position: absolute; inset: -10px; }
.hero-slides .slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  /* Softened, not erased: enough blur to tame busy product-photo edges (cables, box
     corners) so they don't fight the glass cards in front, but the owner/shopfront
     photo underneath must stay recognisable -- too dark and the whole hero reads as
     a flat black slab instead of a photo. */
  filter: blur(6px) saturate(0.85) brightness(0.9);
  transform: scale(1.06);
  animation: hero-slide-cycle 26s infinite;
}
.hero-slides .slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
.hero-slides .slide:nth-child(2) { animation-delay: -19.5s; }
.hero-slides .slide:nth-child(3) { animation-delay: -13s; }
.hero-slides .slide:nth-child(4) { animation-delay: -6.5s; }
@keyframes hero-slide-cycle {
  0%, 2% { opacity: 0; transform: scale(1.06); }
  8% { opacity: 1; }
  23% { opacity: 1; transform: scale(1.12); }
  27%, 100% { opacity: 0; transform: scale(1.12); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* Strong and *flat* across the whole text column (0-56%, a safe upper bound on how
     far the copy column's right edge can reach across the viewport range this layout
     runs at -- see the responsive override below for once it stops being a column at
     all); much lighter over the card/photo side so the backdrop photo -- the owner,
     the shop -- stays visible rather than crushing to a flat black wash. */
  background:
    linear-gradient(100deg, rgba(6, 6, 12, 0.86) 0%, rgba(6, 6, 12, 0.84) 56%, rgba(6, 6, 12, 0.34) 70%, rgba(6, 6, 12, 0.42) 100%),
    linear-gradient(rgba(6, 6, 12, 0.04), rgba(6, 6, 12, 0.22));
}
.hero-dots { position: absolute; left: 24px; bottom: 16px; z-index: 2; display: flex; gap: 6px; }
.hero-dots span { width: 16px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.28); animation: hero-dot-cycle 24s infinite; }
.hero-dots span:nth-child(1) { animation-delay: 0s; }
.hero-dots span:nth-child(2) { animation-delay: -18s; }
.hero-dots span:nth-child(3) { animation-delay: -12s; }
.hero-dots span:nth-child(4) { animation-delay: -6s; }
@keyframes hero-dot-cycle {
  0%, 2% { background: rgba(255, 255, 255, 0.28); width: 16px; }
  8%, 23% { background: #fff; width: 26px; }
  27%, 100% { background: rgba(255, 255, 255, 0.28); width: 16px; }
}

.hero-content { position: relative; z-index: 2; padding: 56px 24px 20px; }
.hero-content > .hero-main, .hero-content > .marquee-frame { max-width: var(--container); margin-inline: auto; }
.hero-main {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-copy {
  max-width: none;
  /* The hero backdrop is always a dark photo, independent of the page's light/dark
     toggle -- pin these tokens to their dark-theme values within this scope only.
     `color` is set explicitly here too: descendants like h1 inherit the *computed*
     body color otherwise, which only resolves --white against the root theme, not
     this local override. */
  --white: #ffffff;
  --muted: #d7d7e6;
  --orange-deep: #ff9142;
  --gold: #d4af37;
  --gold-deep: #e0bc4a;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(18, 18, 32, 0.72);
  --glass-border: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
:root[data-theme="light"] .hero-copy .status-badge.open { color: #1fa661; border-color: rgba(51, 209, 122, 0.35); }
.hero h1 {
  font: 500 clamp(34px, 4.4vw, 60px) / 1.08 var(--font-display);
  letter-spacing: -0.01em; margin: 18px 0 20px;
}
.hero h1 em { font-style: normal; color: var(--orange-deep); }
.hero p { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 480px; margin: 0 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.hero-proof span { display: flex; align-items: center; gap: 7px; font: 700 13px var(--font-body); color: var(--white); }
.hero-proof .g { color: var(--gold-deep); }

/* Bento product showcase -- frosted glass frames floating over the photo backdrop.
   4 tiles don't fit a plain 2x2 (a 2-row shop tile plus 3 more single tiles needs 5
   cells, not 4) -- explicit 3 rows with the shop tile spanning all 3 keeps the 3
   product cards stacked evenly in the right-hand column instead of one falling into
   an orphan row under the shop photo. */
.hero-bento {
  display: grid; grid-template-columns: 1.1fr 1fr; grid-template-rows: repeat(3, 1fr);
  gap: 14px; height: 500px;
}
.bento-tile {
  position: relative; border-radius: 22px; overflow: hidden; padding: 6px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bento-tile { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
}
.bento-tile.shop { grid-row: 1 / span 3; }
.bento-tile img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; transition: transform 0.5s var(--ease); }
.bento-tile:hover img { transform: scale(1.06); }
.bento-tile .cap {
  position: absolute; left: 6px; right: 6px; bottom: 6px; z-index: 1;
  padding: 14px 14px 12px; border-radius: 0 0 16px 16px;
  background: linear-gradient(transparent, rgba(10, 10, 16, 0.82) 55%);
  color: #fff;
}
.bento-tile .cap b { display: block; font: 700 13px var(--font-body); }
.bento-tile .cap .price { display: block; color: var(--gold); font: 800 15px var(--font-mono); margin-top: 3px; }

@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-copy .status-badge { animation: fade-up 0.7s var(--ease) both; }
.hero-copy .kicker { animation: fade-up 0.7s var(--ease) 0.08s both; }
.hero-copy h1 { animation: fade-up 0.7s var(--ease) 0.16s both; }
.hero-copy p { animation: fade-up 0.7s var(--ease) 0.24s both; }
.hero-copy .hero-actions { animation: fade-up 0.7s var(--ease) 0.32s both; }
.hero-copy .hero-proof { animation: fade-up 0.7s var(--ease) 0.4s both; }
.hero-bento .bento-tile { animation: fade-up 0.7s var(--ease) both; }
.hero-bento .bento-tile:nth-child(1) { animation-delay: 0.15s; }
.hero-bento .bento-tile:nth-child(2) { animation-delay: 0.3s; }
.hero-bento .bento-tile:nth-child(3) { animation-delay: 0.42s; }
.hero-bento .bento-tile:nth-child(4) { animation-delay: 0.54s; }
.marquee-frame { animation: fade-up 0.9s var(--ease) 0.2s both; }

.marquee-frame {
  margin-top: 56px;
  padding: 28px 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.marquee-row { overflow: hidden; }
.marquee-row + .marquee-row { margin-top: 16px; }
.marquee-track {
  display: flex; flex-wrap: nowrap; gap: 16px; width: max-content;
  animation: scroll-left 42s linear infinite;
}
.marquee-row.reverse .marquee-track { animation-name: scroll-right; }
@keyframes scroll-left { to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.p-card {
  flex: 0 0 auto; width: 190px;
  border-radius: 16px; overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .p-card { backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm); }
}
.p-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.p-card span {
  display: block; padding: 10px 12px; font: 600 11px var(--font-mono);
  letter-spacing: 0.03em; color: var(--muted);
}

/* ---------- 7. Trust strip -------------------------------------------------- */
.trust { padding-top: 60px; padding-bottom: 60px; }
.trust ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust li { padding: 24px 18px; text-align: center; }
.trust strong { display: block; font: 500 30px var(--font-display); color: var(--gold-deep); }
.trust span { display: block; margin-top: 8px; font: 600 10px var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- 8. Category sections -------------------------------------------- */
.category-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product { position: relative; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.product:hover, .product:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); }
.product img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-info { padding: 18px 20px 22px; }
.product-info h3 { font: 500 18px var(--font-display); letter-spacing: -0.01em; margin: 0 0 6px; }
.product-info p { font-size: 12.5px; color: var(--muted); margin: 0 0 14px; }
.product-info .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 11px var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--orange-deep);
}

/* Price badge: floats on the product image so the price is visible before any click */
.price-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: #1a0b00;
  font: 800 13px var(--font-mono); letter-spacing: 0.01em;
  padding: 7px 13px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.price-tag.ask {
  background: var(--glass-panel); color: var(--white);
  border: 1px solid var(--glass-border);
  font: 700 10px var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em;
}
.p-card { position: relative; }
.p-card .price-tag { top: 8px; right: 8px; font-size: 11px; padding: 5px 10px; }

/* ---------- 9. Deal / community / visit -------------------------------------- */
.deal { background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(255, 122, 26, 0.1)); border-radius: 28px; max-width: var(--container); margin: 40px auto; padding: 0; overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.4); box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 30px 70px rgba(212, 175, 55, 0.08); }
.deal-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; }
.deal img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.deal-copy { padding: 50px 56px; }
.deal-price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0 8px; }
.deal-price strong { font: 500 46px var(--font-display); color: var(--orange-deep); }
.deal-price span { color: var(--muted); font-size: 13px; }
.deal-copy ul { margin: 18px 0 26px; display: grid; gap: 8px; font-size: 13.5px; color: var(--muted); }
.deal-copy li::before { content: '＋ '; color: var(--purple-deep); }
.deal-note { font-size: 11.5px; color: var(--muted); margin-top: 16px; max-width: 420px; }

.community { text-align: center; padding-top: 60px; padding-bottom: 60px; }
.community .section-title { margin-inline: auto; }
.community p.section-lede { margin-inline: auto; }
.community .hero-actions { justify-content: center; margin-top: 30px; }

.visit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; border-radius: 28px; padding: 60px; }
.visit-info .section-title { font-size: clamp(30px, 3.6vw, 46px); }
.visit-detail { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.visit-detail:last-of-type { border-bottom: 1px solid var(--line); }
.visit-detail b { font: 600 12px var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-deep); min-width: 90px; }
.visit-detail span { color: var(--muted); font-size: 14px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.visit-media { position: relative; }
.visit-media .map-embed {
  width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius);
  filter: saturate(1.05);
}
.visit-media .caption { display: block; margin-top: 10px; font-size: 11px; color: var(--muted); }
.visit-media .caption a { color: var(--orange-deep); text-decoration: underline; }

/* Reviews */
.reviews { max-width: var(--container); margin: 40px auto; padding: 0 24px; }
.reviews-inner { display: grid; grid-template-columns: 0.55fr 1fr; gap: 40px; align-items: center; padding: 50px 56px; }
.rating-block { text-align: center; }
.rating-block .score { font: 500 64px var(--font-display); line-height: 1; }
.rating-block .stars { color: var(--gold-deep); font-size: 20px; letter-spacing: 2px; margin: 10px 0 6px; }
.rating-block .count { color: var(--muted); font-size: 13px; }
.rating-block a { display: inline-block; margin-top: 16px; font: 700 11px var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-deep); text-decoration: underline; }
.review-quote { border-left: 3px solid var(--purple-deep); padding-left: 22px; }
.review-quote p { font: 500 19px/1.5 var(--font-display); letter-spacing: -0.005em; margin: 0 0 14px; }
.review-quote cite { font-style: normal; font-size: 13px; color: var(--muted); }
.review-quote cite b { color: var(--white); font-weight: 700; }

.hours-table { width: 100%; border-collapse: collapse; margin: 6px 0 0; font-size: 13.5px; }
.hours-table td { padding: 7px 0; border-top: 1px solid var(--line); color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--white); }
.hours-table tr.today td { color: var(--orange-deep); font-weight: 700; }

/* Printing / personalization feature */
.printing { max-width: var(--container); margin: 40px auto; }
.printing-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 28px; overflow: hidden;
}
.printing-inner img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.printing-copy { padding: 54px 56px; }
.printing-copy ul { display: grid; gap: 8px; margin: 18px 0 26px; font-size: 13.5px; color: var(--muted); }
.printing-copy li::before { content: '＋ '; color: var(--gold-deep); }

/* ---------- 10. Footer ------------------------------------------------------- */
footer.site-footer {
  max-width: var(--container); margin: auto; padding: 40px 24px 100px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--line); font-size: 12px; color: var(--muted);
  position: relative; z-index: 1;
}
footer .disclaimer { max-width: 480px; }
footer .credit a { color: var(--orange-deep); text-decoration: underline; }
footer .social-link { margin: 10px 0 0; }
footer .social-link a {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--muted);
}
footer .social-link a span { text-decoration: underline; }
footer .social-link svg { width: 16px; height: 16px; fill: currentColor; flex: 0 0 auto; }
footer .social-link a:hover { color: var(--orange-deep); }

/* ---------- 11. Sticky mobile action bar ------------------------------------- */
.stickybar { display: none; }

/* ---------- WhatsApp floating widget (desktop only — mobile uses the sticky bar) --- */
.wa-widget { position: fixed; right: 26px; bottom: 26px; z-index: 70; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.ig-fab {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 10px 24px rgba(214, 36, 159, 0.4);
  transition: transform 0.25s var(--ease);
}
.ig-fab:hover, .ig-fab:focus-visible { transform: scale(1.08); }
.ig-fab svg { width: 22px; height: 22px; fill: #fff; }
.wa-bubble {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s var(--ease);
  animation: wa-bob 2.4s ease-in-out 3;
}
.wa-bubble:hover, .wa-bubble:focus-visible { transform: scale(1.08); }
.wa-bubble svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.wa-card {
  position: absolute; right: 0; bottom: 76px; width: 300px;
  background: var(--paper); border: 1px solid var(--glass-border);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  animation: wa-pop 0.22s var(--ease) both;
}
@keyframes wa-pop { from { opacity: 0; transform: translateY(10px) scale(0.97); } to { opacity: 1; transform: none; } }
.wa-card-head {
  background: linear-gradient(135deg, #128c4a, #25d366);
  color: #fff; padding: 16px 40px 16px 16px; display: flex; align-items: center; gap: 12px; position: relative;
}
.wa-card-head .wa-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.wa-card-head .wa-avatar svg { width: 20px; height: 20px; fill: #fff; }
.wa-card-head b { display: block; font-size: 14px; }
.wa-card-head .wa-online { display: flex; align-items: center; gap: 5px; font-size: 11px; opacity: 0.9; margin-top: 2px; }
.wa-card-head .wa-online .dot { width: 6px; height: 6px; border-radius: 50%; background: #baffc9; }
.wa-close {
  position: absolute; top: 12px; right: 12px; background: rgba(255, 255, 255, 0.2); border: 0;
  color: #fff; width: 22px; height: 22px; border-radius: 50%; cursor: pointer;
  font-size: 13px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.wa-card-body { padding: 18px; }
.wa-card-body .bubble { background: var(--glass); border-radius: 12px 12px 12px 2px; padding: 12px 14px; font-size: 13.5px; margin: 0; color: var(--white); }
.wa-card-body .wa-team { display: block; margin-top: 8px; font-size: 11px; color: var(--muted); }
.wa-start {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 18px 18px; padding: 13px; border-radius: 12px;
  background: #25d366; color: #fff; font: 700 13px var(--font-body);
}
.wa-start:hover { background: #1fb958; }
@media (max-width: 760px) {
  .wa-widget { display: none; }
}

/* ---------- 12. Responsive ---------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-main { grid-template-columns: 1fr; }
  .hero-bento { height: 380px; margin-top: 12px; }
  /* Copy and bento stack instead of sitting side by side here, so the horizontal
     strong-left/light-right split above no longer matches the layout -- a vertical
     one (strong behind the text up top, lighter behind the cards below) does. */
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(6, 6, 12, 0.86) 0%, rgba(6, 6, 12, 0.82) 46%, rgba(6, 6, 12, 0.4) 60%, rgba(6, 6, 12, 0.5) 100%);
  }
}
@media (max-width: 900px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .deal-inner, .visit-inner, .printing-inner, .reviews-inner { grid-template-columns: 1fr; }
  .deal-copy, .visit-inner, .printing-copy, .reviews-inner { padding: 34px 26px; }
  .review-quote { border-left: 0; border-top: 3px solid var(--purple-deep); padding: 22px 0 0; margin-top: 30px; }
  .trust ul { grid-template-columns: repeat(2, 1fr); }
  .printing-inner img { aspect-ratio: 16/10; }
}
@media (max-width: 760px) {
  .hero-bento { height: 360px; gap: 10px; }
  .bento-tile .cap { padding: 10px 12px; }
  .bento-tile .cap b { font-size: 11px; }
  .bento-tile .cap .price { font-size: 13px; }
  .hero-dots { display: none; }
  .navlinks, .nav-cta { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary {
    list-style: none; cursor: pointer; width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--glass-border); border-radius: 10px; color: var(--white); font-size: 18px;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu[open] summary { background: var(--orange); color: #1a0b00; border-color: var(--orange); }
  .mobile-menu ul {
    position: absolute; top: 100%; left: 24px; right: 24px; margin-top: 8px;
    background: var(--glass-panel); border: 1px solid var(--glass-border); border-radius: 14px;
    padding: 16px 20px; display: flex; flex-direction: column; gap: 14px;
    font-size: 15px; font-weight: 600; box-shadow: var(--shadow); z-index: 90;
  }
  section { padding: 70px 22px; }
  .p-card { width: 140px; }
  body { padding-bottom: 62px; }
  .stickybar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--paper);
    border-top: 1px solid var(--glass-border);
  }
  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .stickybar { background: var(--glass-strong); backdrop-filter: var(--blur-md); -webkit-backdrop-filter: var(--blur-md); }
  }
  .stickybar a {
    padding: 14px 4px; text-align: center; color: var(--white);
    font: 700 10px var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase;
    border-right: 1px solid var(--glass-border);
  }
  .stickybar a:last-child { border-right: 0; }
}

/* ---------- 13. Reduced motion ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .btn, .product { transition: none; }
  .btn:hover, .product:hover { transform: none; }
  .btn.primary::after { display: none; }
  .status-badge.open .dot { animation: none; }
  .wa-bubble { animation: none; }
  .hero-copy .status-badge, .hero-copy .kicker, .hero-copy h1, .hero-copy p,
  .hero-copy .hero-actions, .hero-copy .hero-proof, .marquee-frame, .hero-bento .bento-tile {
    animation: none; opacity: 1; transform: none;
  }
  .bento-tile img, .bento-tile:hover img { transition: none; transform: none; }
  .hero-slides .slide { animation: none; opacity: 0; }
  .hero-slides .slide:first-child { opacity: 1; }
  .hero-dots span { animation: none; }
  .hero-dots span:first-child { background: #fff; width: 26px; }
  html[data-js] .reveal { opacity: 1; transform: none; transition: none; }
}
