:root {
  --yellow: #ffd83d;
  --yellow-soft: #fff4b8;
  --red: #e53935;
  --red-dark: #b92222;
  --ink: #171717;
  --muted: #666b73;
  --line: #e8e8e8;
  --paper: #ffffff;
  --offwhite: #fbfaf7;
  --panel: #f5f5f3;
  --success: #1e7a46;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.announcement {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: .02em;
}
.announcement .container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 0;
}
.announcement strong { color: var(--yellow); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 22px;
  white-space: nowrap;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red) 0 46%, #fff 46% 54%, var(--yellow) 54% 100%);
  border: 3px solid var(--ink);
  position: relative;
  box-shadow: 0 4px 0 var(--ink);
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ink);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.brand em { color: var(--red); font-style: normal; }
.nav-links { display: flex; justify-content: center; gap: 28px; font-weight: 650; font-size: 14px; }
.nav-links a { position: relative; padding: 27px 0 24px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 16px; height: 3px; background: var(--red); border-radius: 10px; transition: .2s; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn, .cart-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  min-height: 42px;
  border-radius: 13px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}
.cart-count {
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 12px;
}
.mobile-menu { display:none; }

.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,216,61,.9) 0 10%, transparent 10.5%),
    radial-gradient(circle at 78% 46%, rgba(229,57,53,.12) 0 18%, transparent 18.5%),
    linear-gradient(135deg, #fff 0%, #fffdf4 55%, #fff9dc 100%);
  border-bottom: 1px solid #f2ecd1;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  min-height: 610px;
  gap: 54px;
  padding: 68px 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #ecd85f;
  background: #fff9ca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
h1 {
  font-size: clamp(48px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 20px 0 22px;
  max-width: 760px;
}
h1 .highlight { position: relative; display: inline-block; z-index: 1; }
h1 .highlight::after { content: ""; position: absolute; z-index: -1; left: -4px; right: -6px; bottom: 4px; height: .28em; background: var(--yellow); transform: rotate(-1deg); border-radius: 4px; }
.hero-copy { max-width: 650px; font-size: 18px; color: #4f5258; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  border: 0;
  min-height: 48px;
  border-radius: 13px;
  padding: 0 20px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 7px 0 var(--red-dark); }
.btn-primary:hover { box-shadow: 0 5px 0 var(--red-dark); }
.btn-secondary { background: #fff; color: var(--ink); border: 2px solid var(--ink); box-shadow: 0 5px 0 var(--ink); }
.btn-yellow { background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); box-shadow: 0 5px 0 var(--ink); }


.hero-visual { position: relative; min-height: 560px; max-width: 620px; width: 100%; margin-left: auto; transform:translateX(26px); }
.launch-scene { isolation:isolate; overflow:visible; }
.launch-scene::before { content:""; position:absolute; z-index:-4; width:252px; height:252px; border-radius:50%; right:-4px; top:12px; background:radial-gradient(circle at 32% 30%, #ffe86d 0 28%, var(--yellow) 62%, #efbd13 100%); box-shadow:0 24px 60px rgba(221,170,0,.18); }
.launch-scene::after { content:""; position:absolute; z-index:-5; width:440px; height:300px; border-radius:50%; left:18px; bottom:26px; background:radial-gradient(ellipse at center, rgba(229,57,53,.15), rgba(229,57,53,0) 68%); transform:rotate(-5deg); }
.scene-orbit { position:absolute; z-index:-2; border:2px dashed rgba(23,23,23,.16); border-radius:50%; pointer-events:none; }
.orbit-one { width:392px; height:392px; right:18px; top:74px; transform:rotate(12deg); }
.orbit-two { width:284px; height:284px; left:34px; bottom:8px; border-color:rgba(229,57,53,.20); transform:rotate(-14deg); }
.scene-spark { position:absolute; z-index:3; font-weight:1000; line-height:1; color:var(--red); text-shadow:0 2px 0 rgba(255,255,255,.8); }
.spark-one { font-size:22px; right:62px; top:116px; transform:rotate(14deg); }
.spark-two { font-size:19px; left:15px; top:125px; color:#c39500; transform:rotate(-18deg); }
.spark-three { font-size:17px; right:200px; bottom:48px; color:#111; }
.scene-copy { position:absolute; z-index:6; left:8px; top:36px; width:46%; }
.scene-kicker { display:inline-flex; align-items:center; min-height:34px; padding:0 13px; background:var(--yellow); border:2px solid var(--ink); border-radius:999px; box-shadow:0 4px 0 var(--ink); font-size:11px; font-weight:1000; letter-spacing:.10em; text-transform:uppercase; }
.scene-copy h3 { margin:16px 0 10px; font-size:clamp(37px,4.1vw,50px); line-height:1; letter-spacing:-.055em; max-width:7ch; }
.scene-copy h3 em { font-style:normal; color:var(--red); position:relative; display:inline-block; }
.scene-copy h3 em::after { content:""; position:absolute; z-index:-1; height:.26em; left:-2px; right:-5px; bottom:2px; background:rgba(255,216,61,.74); border-radius:6px; transform:rotate(-1.5deg); }
.scene-copy p { margin:0; max-width:250px; color:#555a61; font-size:13px; line-height:1.55; font-weight:700; }
.scene-products { position:absolute; z-index:4; right:10px; top:148px; width:62%; height:262px; }
.scene-product { position:absolute; width:156px; height:212px; border:3px solid var(--ink); border-radius:20px; padding:12px; background:#fff; box-shadow:0 13px 0 rgba(23,23,23,.95), 0 22px 36px rgba(0,0,0,.10); overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; }
.scene-product::before { content:""; position:absolute; inset:0 0 auto; height:68%; background:linear-gradient(145deg,#fff4a5,#efd02a); }
.scene-product::after { content:""; position:absolute; width:74px; height:74px; border:9px solid rgba(255,255,255,.82); border-radius:50%; left:50%; top:27px; transform:translateX(-50%); }
.scene-product-tag { position:absolute; z-index:3; top:10px; left:10px; padding:5px 8px; border-radius:999px; background:#fff; border:1.5px solid var(--ink); font-size:9px; font-weight:1000; letter-spacing:.08em; }
.scene-product b,.scene-product small { position:relative; z-index:2; }
.scene-product b { font-size:14.5px; line-height:1.12; }
.scene-product small { margin-top:4px; color:#676b72; font-size:10px; }
.scene-emblem { position:absolute; z-index:2; left:50%; top:65px; width:96px; height:3px; background:rgba(255,255,255,.85); transform:translateX(-50%); }
.scene-etb { right:126px; top:8px; transform:rotate(-4deg); }
.scene-etb::before { background:linear-gradient(145deg,#ff7b70,#d83935); }
.scene-bundle { right:-2px; top:38px; transform:rotate(5deg); width:150px; height:202px; }
.scene-bundle::before { background:linear-gradient(145deg,#ffe86c,#e8b90c); }
.scene-pack { right:252px; top:54px; transform:rotate(-8deg); width:132px; height:184px; }
.scene-pack::before { background:linear-gradient(145deg,#3d3d40,#111); }
.scene-pack::after { border-color:rgba(255,255,255,.72); width:60px; height:60px; top:31px; }
.scene-price-ribbon { position:absolute; z-index:8; right:20px; top:430px; width:328px; min-height:62px; padding:12px 18px 12px 52px; background:#fff; border:2px solid var(--ink); border-radius:18px; box-shadow:0 6px 0 var(--ink); transform:none; }
.scene-price-ribbon::before { content:"£"; position:absolute; left:13px; top:11px; width:31px; height:31px; display:grid; place-items:center; border-radius:50%; background:var(--yellow); border:2px solid var(--ink); font-weight:1000; }
.scene-price-ribbon strong { display:block; font-size:13px; }
.scene-price-ribbon span { display:block; margin-top:2px; color:#666b73; font-size:10.5px; line-height:1.3; }
.scene-bottom { position:absolute; z-index:7; left:12px; bottom:30px; width:47%; }
.scene-bottom p { margin:0 0 14px; padding:13px 14px; border-left:4px solid var(--yellow); background:rgba(255,255,255,.88); backdrop-filter:blur(6px); border-radius:0 15px 15px 0; font-size:12px; line-height:1.55; color:#555a61; }
.scene-bottom p strong { color:var(--ink); }
.scene-cta { display:inline-flex; min-height:42px; align-items:center; justify-content:center; padding:0 16px; border-radius:13px; background:var(--red); color:#fff; font-size:12px; font-weight:950; box-shadow:0 5px 0 var(--red-dark); }
.scene-cta:hover { transform:translateY(-2px); }
.scene-sticker { position:absolute; z-index:9; right:24px; bottom:22px; display:inline-flex; min-height:39px; align-items:center; padding:0 14px; background:var(--yellow); border:2px solid var(--ink); border-radius:999px; box-shadow:0 5px 0 var(--ink); font-size:11px; font-weight:1000; transform:rotate(1deg); }
.trustbar { background: var(--ink); color:#fff; }
.trustbar .container { display:grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 20px 18px; text-align:center; border-right:1px solid #353535; font-size:13px; }
.trust-item:last-child { border-right:0; }
.trust-item b { display:block; color:var(--yellow); font-size:14px; margin-bottom:2px; }

.section { padding: 78px 0; }
.section-soft { background: var(--offwhite); }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:30px; }
.eyebrow { color:var(--red); font-weight:900; text-transform:uppercase; letter-spacing:.12em; font-size:12px; }
h2 { font-size: clamp(34px,5vw,52px); letter-spacing:-.045em; margin:6px 0 0; line-height:1.02; }
.section-head p { color:var(--muted); max-width:520px; margin:0; }

.category-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.category-card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  min-height:220px;
  position:relative;
  overflow:hidden;
  background:#fff;
  transition:.2s;
}
.category-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); border-color:#ddd; }
.category-card .num { font-size:12px; font-weight:900; color:var(--red); }
.category-card h3 { font-size:24px; letter-spacing:-.03em; margin:72px 0 6px; }
.category-card p { color:var(--muted); font-size:14px; margin:0; }
.category-card::after { content:""; position:absolute; width:95px; height:95px; border-radius:50%; right:-20px; top:-15px; border:18px solid rgba(0,0,0,.06); }
.category-card.yellow { background:#fff9ce; border-color:#f1e39c; }
.category-card.red { background:#fff2f1; border-color:#f0d0cd; }
.category-card.black { background:#1d1d1d; color:#fff; border-color:#1d1d1d; }
.category-card.black p { color:#c8c8c8; }
.category-card.black::after { border-color:rgba(255,255,255,.12); }

.product-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.product-card { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; transition:.2s; position:relative; }
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.product-media { aspect-ratio:1/1; background:#f6f6f4; display:grid; place-items:center; position:relative; padding:24px; }
.product-visual { width:68%; aspect-ratio:.78; border:2px solid var(--ink); border-radius:13px; background:linear-gradient(145deg,#fff,#f0f0f0); box-shadow:0 12px 20px rgba(0,0,0,.10); position:relative; overflow:hidden; }
.product-visual::before { content:"ARCVAULT"; position:absolute; top:10px; left:10px; right:10px; font-size:10px; font-weight:1000; letter-spacing:.16em; }
.product-visual::after { content:""; position:absolute; width:90px; height:90px; border:13px solid rgba(255,255,255,.68); border-radius:50%; left:50%; top:50%; transform:translate(-50%,-48%); }
.product-card:nth-child(1) .product-visual { background:linear-gradient(145deg,#ffe65a,#e7b818); }
.product-card:nth-child(2) .product-visual { background:linear-gradient(145deg,#ef5a53,#bd2320); }
.product-card:nth-child(3) .product-visual { background:linear-gradient(145deg,#343434,#0e0e0e); color:#fff; }
.product-card:nth-child(4) .product-visual { background:linear-gradient(145deg,#fff2a5,#ffcb22); }
.badge { position:absolute; left:14px; top:14px; border-radius:999px; padding:7px 10px; font-size:11px; font-weight:900; background:var(--yellow); border:1px solid #e1c330; }
.badge.red { background:var(--red); color:#fff; border-color:var(--red); }
.product-info { padding:18px; }
.product-info .type { color:var(--muted); text-transform:uppercase; font-size:10px; letter-spacing:.12em; font-weight:900; }
.product-info h3 { font-size:17px; letter-spacing:-.02em; margin:6px 0 10px; }
.price-row { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.price { font-weight:950; font-size:19px; }
.price small { color:var(--muted); font-weight:700; font-size:11px; display:block; }
.add-btn { border:0; background:var(--ink); color:#fff; border-radius:11px; padding:10px 12px; font-weight:900; font-size:12px; }
.add-btn[disabled] { background:#d7d7d7; color:#777; cursor:not-allowed; }

.split { display:grid; grid-template-columns: 1fr 1fr; gap:36px; align-items:center; }
.story-panel { min-height:430px; border-radius:26px; background:linear-gradient(135deg,var(--yellow) 0 54%,var(--red) 54% 76%,var(--ink) 76%); position:relative; overflow:hidden; border:3px solid var(--ink); box-shadow:0 10px 0 var(--ink); }
.story-panel::before { content:"ARCVAULT"; position:absolute; font-size:clamp(68px,9vw,130px); font-weight:1000; letter-spacing:-.08em; left:-18px; top:70px; transform:rotate(-8deg); color:rgba(255,255,255,.36); }
.story-card { position:absolute; background:#fff; border:2px solid var(--ink); border-radius:16px; padding:18px; box-shadow:0 7px 0 var(--ink); }
.story-card.one { left:9%; top:12%; width:48%; }
.story-card.two { right:8%; bottom:10%; width:42%; }
.story-card b { display:block; font-size:16px; }
.story-card span { color:var(--muted); font-size:12px; }
.story-copy h2 { margin-bottom:18px; }
.story-copy p { color:var(--muted); font-size:16px; }
.checks { display:grid; gap:11px; margin:22px 0 28px; }
.check { display:flex; gap:11px; align-items:flex-start; font-weight:700; }
.check i { width:22px; height:22px; border-radius:50%; background:var(--yellow); display:inline-grid; place-items:center; font-style:normal; font-size:12px; border:1px solid #d7b800; flex:0 0 auto; }

.newsletter { background:var(--ink); color:#fff; border-radius:26px; padding:46px; display:grid; grid-template-columns:1fr .9fr; gap:34px; align-items:center; position:relative; overflow:hidden; }
.newsletter::after { content:""; width:180px; height:180px; border:30px solid rgba(255,216,61,.12); border-radius:50%; position:absolute; right:-25px; top:-55px; }
.newsletter h2 { margin:0 0 10px; }
.newsletter p { color:#c8c8c8; margin:0; }
.newsletter-form { display:flex; gap:9px; position:relative; z-index:2; }
.newsletter-form input { min-width:0; flex:1; border:0; border-radius:12px; padding:0 16px; min-height:50px; }
.newsletter-form button { background:var(--yellow); color:var(--ink); border:0; border-radius:12px; padding:0 18px; font-weight:950; }

.page-hero { background:linear-gradient(135deg,#fffdf1,#fff); padding:72px 0 52px; border-bottom:1px solid #efe9cb; }
.page-hero h1 { font-size:clamp(44px,6vw,68px); margin:10px 0 14px; }
.page-hero p { color:var(--muted); max-width:700px; font-size:17px; }

.filters { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:26px; }
.filter-btn { border:1px solid var(--line); background:#fff; border-radius:999px; padding:9px 14px; font-weight:800; font-size:13px; }
.filter-btn.active { background:var(--ink); color:#fff; border-color:var(--ink); }

.content-card { border:1px solid var(--line); border-radius:var(--radius); padding:28px; background:#fff; }
.prose { max-width:820px; }
.prose h2 { font-size:30px; margin:30px 0 10px; }
.prose h3 { margin-top:24px; }
.prose p, .prose li { color:#555a61; }
.prose a { color:var(--red); text-decoration:underline; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:24px; }
.contact-list { display:grid; gap:12px; margin-top:20px; }
.contact-item { border:1px solid var(--line); border-radius:14px; padding:16px; }
.contact-item b { display:block; }
.contact-item span { color:var(--muted); font-size:14px; }
.form-grid { display:grid; gap:14px; }
label { display:grid; gap:6px; font-weight:800; font-size:13px; }
input, textarea, select { border:1px solid #dcdcdc; border-radius:11px; padding:12px 13px; background:#fff; color:var(--ink); }
textarea { min-height:140px; resize:vertical; }

footer { background:#f5f5f2; border-top:1px solid var(--line); margin-top:60px; }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:30px; padding:52px 0 34px; }
.footer-grid h4 { margin:0 0 13px; }
.footer-grid a { display:block; color:#5f6368; margin:8px 0; font-size:14px; }
.footer-brand p { color:var(--muted); max-width:330px; font-size:14px; }
.footer-bottom { border-top:1px solid #dededb; padding:18px 0 28px; display:flex; justify-content:space-between; gap:20px; color:#777; font-size:12px; }

.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,.38); z-index:89; opacity:0; pointer-events:none; transition:.2s; }
.cart-overlay.open { opacity:1; pointer-events:auto; }
.cart-drawer { position:fixed; top:0; right:-420px; width:min(410px,100%); height:100vh; background:#fff; z-index:90; box-shadow:-20px 0 50px rgba(0,0,0,.16); transition:.25s; display:flex; flex-direction:column; }
.cart-drawer.open { right:0; }
.cart-head { padding:20px; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid var(--line); }
.cart-head h3 { margin:0; }
.cart-items { flex:1; overflow:auto; padding:16px 20px; }
.cart-empty { color:var(--muted); text-align:center; padding:70px 18px; }
.cart-item { display:grid; grid-template-columns:58px 1fr auto; gap:12px; padding:13px 0; border-bottom:1px solid var(--line); align-items:center; }
.cart-thumb { width:58px; height:68px; border-radius:10px; background:var(--yellow); border:1px solid #d0d0d0; }
.cart-item b { font-size:13px; display:block; }
.cart-item span { font-size:12px; color:var(--muted); }
.remove { border:0; background:transparent; color:var(--red); font-weight:900; }
.cart-foot { padding:20px; border-top:1px solid var(--line); }
.cart-total { display:flex; justify-content:space-between; font-size:18px; font-weight:950; margin-bottom:14px; }
.checkout-note { font-size:11px; color:var(--muted); margin-top:10px; }
.close-btn { border:0; background:#f2f2f2; width:36px; height:36px; border-radius:50%; font-weight:900; }

.toast { position:fixed; left:50%; bottom:25px; transform:translate(-50%,30px); background:var(--ink); color:#fff; padding:12px 16px; border-radius:999px; font-size:13px; font-weight:800; z-index:110; opacity:0; pointer-events:none; transition:.2s; }
.toast.show { opacity:1; transform:translate(-50%,0); }

@media (max-width: 950px) {
  .nav { grid-template-columns:auto 1fr auto; }
  .nav-links { display:none; }
  .mobile-menu { display:inline-flex; }
  .hero-grid, .split, .newsletter, .contact-grid { grid-template-columns:1fr; }
  .hero-grid { min-height:auto; padding:54px 0 30px; gap:36px; }
  .hero-visual { min-height:540px; max-width:640px; width:100%; margin:0 auto; transform:none; }
  .category-grid, .product-grid { grid-template-columns:repeat(2,1fr); }
  .trustbar .container { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column:2 / 4; }
}

@media (max-width: 620px) {
  .container { width:min(100% - 24px,1180px); }
  .announcement .container { text-align:center; font-size:11px; }
  .brand { font-size:18px; }
  .brand-mark { width:33px; height:33px; }
  .cart-btn .cart-label { display:none; }
  .hero-grid { padding-top:42px; }
  h1 { font-size:48px; }
  .hero-copy { font-size:16px; }
  .hero-actions .btn { width:100%; }
  .hero-visual { min-height:620px; transform:none; width:auto; margin-top:8px; }
  .scene-copy { left:8px; top:22px; width:88%; }
  .scene-copy h3 { font-size:40px; max-width:10ch; }
  .scene-copy p { max-width:320px; }
  .scene-products { right:-2px; top:232px; width:104%; height:220px; transform:scale(.80); transform-origin:right top; }
  .scene-price-ribbon { right:6px; top:456px; width:90%; }
  .scene-bottom { left:8px; bottom:12px; width:88%; }
  .scene-sticker { right:8px; bottom:-4px; }
  .orbit-one { right:-24px; top:116px; }
  .category-grid, .product-grid { grid-template-columns:1fr; }
  .trustbar .container { grid-template-columns:1fr; }
  .trust-item { border-right:0; border-bottom:1px solid #353535; }
  .section { padding:58px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:12px; }
  .newsletter { padding:30px 22px; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form button { min-height:48px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
  .footer-grid > :last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .story-panel { min-height:350px; }
}

/* --- Complete-site additions --- */
.skip-link{position:absolute;left:-9999px;top:auto}.skip-link:focus{left:16px;top:16px;z-index:999;background:#fff;padding:10px 14px;border:2px solid var(--ink);border-radius:10px}
.nav-toggle{display:none;border:1px solid var(--line);background:#fff;width:42px;height:42px;border-radius:12px;font-size:20px;font-weight:900;align-items:center;justify-content:center}
.mobile-panel{display:none;position:fixed;left:0;right:0;top:0;z-index:79;background:#fff;border-bottom:3px solid var(--ink);box-shadow:0 18px 40px rgba(0,0,0,.12);padding:18px}
.mobile-panel.open{display:block}.mobile-panel-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}.mobile-panel nav{display:grid;gap:8px}.mobile-panel nav a{padding:13px 14px;border-radius:12px;background:#f7f7f4;font-weight:900}.mobile-panel nav a:hover{background:#fff4b8}
.hero-note{margin-top:18px;font-size:13px;color:#666b73}.hero-note strong{color:var(--ink)}
.meta-strip{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}.meta-pill{background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 10px;font-size:12px;font-weight:850}
.shop-notice{display:flex;gap:12px;align-items:flex-start;background:#fff9ce;border:1px solid #ecd95b;border-radius:16px;padding:16px 18px;margin-bottom:24px}.shop-notice b{display:block;margin-bottom:2px}.shop-notice .dot{width:12px;height:12px;border-radius:50%;background:var(--red);margin-top:5px;flex:0 0 auto}
.product-actions{display:flex;gap:8px;margin-top:14px}.ghost-btn{border:1px solid var(--line);background:#fff;border-radius:10px;padding:9px 11px;font-weight:850;font-size:12px}.ghost-btn:hover{border-color:#bbb}.status-btn{border:0;background:#ececeb;color:#666;border-radius:10px;padding:9px 11px;font-weight:900;font-size:12px;cursor:default}
.founder-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:28px;align-items:stretch}.founder-card{background:linear-gradient(145deg,var(--yellow),#ffec83);border:3px solid var(--ink);border-radius:26px;padding:28px;box-shadow:0 9px 0 var(--ink);position:relative;overflow:hidden;min-height:330px}.founder-card::after{content:'A';position:absolute;right:-10px;bottom:-55px;font-size:260px;line-height:1;font-weight:1000;color:rgba(255,255,255,.35);letter-spacing:-.09em}.founder-badge{display:inline-block;background:#fff;border:2px solid var(--ink);border-radius:999px;padding:7px 11px;font-weight:950;font-size:12px}.founder-card h3{font-size:42px;letter-spacing:-.05em;margin:94px 0 4px}.founder-card p{margin:0;font-weight:750;max-width:250px}.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:26px}.value-card{border:1px solid var(--line);border-radius:16px;padding:20px;background:#fff}.value-card .icon{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;background:#fff4b8;border:1px solid #ecd95b;font-weight:1000;margin-bottom:34px}.value-card h3{margin:0 0 7px}.value-card p{margin:0;color:var(--muted);font-size:14px}
.contact-hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}.contact-big{font-size:24px;font-weight:950;letter-spacing:-.03em}.contact-item a:hover{color:var(--red)}
.form-note{font-size:12px;color:var(--muted);margin:0}.two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px}.form-grid .btn{justify-self:start}.hours{display:grid;grid-template-columns:auto 1fr;gap:8px 18px;font-size:14px}.hours b{font-weight:900}.hours span{color:var(--muted)}
.faq-grid{display:grid;gap:12px;max-width:900px}.faq-item{border:1px solid var(--line);border-radius:16px;background:#fff;overflow:hidden}.faq-q{width:100%;border:0;background:#fff;padding:18px 20px;display:flex;justify-content:space-between;gap:20px;text-align:left;font-weight:950}.faq-q span:last-child{font-size:20px}.faq-a{display:none;padding:0 20px 18px;color:var(--muted)}.faq-item.open .faq-a{display:block}.faq-item.open .faq-q{background:#fff9ce}
.policy-nav{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px}.policy-nav a{background:#f4f4f1;border:1px solid var(--line);border-radius:999px;padding:8px 11px;font-size:12px;font-weight:900}.policy-nav a:hover{background:#fff4b8}
.contact-mini{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px;color:#555a61;font-size:13px}.contact-mini a{font-weight:850}.contact-mini a:hover{color:var(--red)}
.disclaimer-box{background:#f8f8f6;border:1px solid var(--line);border-radius:14px;padding:14px 16px;font-size:12px;color:#686c72;margin-top:18px}
.footer-contact{margin-top:12px;font-size:13px;color:#5f6368}.footer-contact a{display:inline!important;margin:0!important;font-weight:850}
.hidden{display:none!important}
@media(max-width:950px){.nav-toggle{display:inline-flex}.mobile-menu{display:none!important}.founder-grid{grid-template-columns:1fr}.value-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.two-col,.value-grid{grid-template-columns:1fr}.founder-card h3{font-size:36px;margin-top:80px}.contact-big{font-size:20px}.nav-actions .btn{display:none}}

/* --- ArcVault commerce/backend UI --- */
.account-link{font-size:13px}.qty-control{display:inline-flex;align-items:center;gap:8px;margin-top:7px;border:1px solid var(--line);border-radius:999px;padding:2px 6px}.qty-control button{border:0;background:transparent;font-weight:950;width:22px;height:22px}.qty-control span{color:var(--ink);font-weight:900}.product-image{width:100%;height:100%;object-fit:contain;border-radius:12px}.product-desc{color:var(--muted);font-size:12px;line-height:1.4;min-height:34px}.setup-box,.empty-state{border:1px solid #ecd95b;background:#fff9ce;border-radius:16px;padding:20px;color:#555}.auth-shell{display:grid;grid-template-columns:1fr 1fr;gap:20px;max-width:900px;margin:0 auto}.auth-card{border:1px solid var(--line);border-radius:20px;padding:28px;background:#fff}.auth-card h2{font-size:30px;margin:0 0 8px}.auth-card p{color:var(--muted);margin-top:0}.auth-card form{display:grid;gap:13px}.auth-card .btn{width:100%;margin-top:4px}.account-head,.admin-head{display:flex;justify-content:space-between;align-items:center;gap:18px;margin-bottom:24px}.account-head p,.admin-head p{margin:0;color:var(--muted)}.order-list{display:grid;gap:14px}.order-card{border:1px solid var(--line);border-radius:16px;padding:18px;background:#fff;display:grid;grid-template-columns:1fr auto;gap:10px 20px}.order-card>div{display:flex;gap:10px;align-items:center}.order-card>div:nth-child(2){justify-content:flex-end}.order-card span{color:var(--muted);font-size:13px}.order-card ul{grid-column:1/-1;margin:8px 0 0;padding:12px 0 0 20px;border-top:1px solid var(--line);color:#555}.status-pill{background:#fff4b8!important;color:#6a5700!important;border-radius:999px;padding:5px 9px;font-weight:900;text-transform:capitalize}.admin-metrics{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-bottom:24px}.metric-card{border:1px solid var(--line);border-radius:16px;padding:18px;background:#fff}.metric-card span{color:var(--muted);font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.08em}.metric-card b{display:block;font-size:28px;margin-top:5px}.admin-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:20px;align-items:start}.admin-panel{border:1px solid var(--line);border-radius:18px;padding:20px;background:#fff;overflow:auto}.admin-panel h2{font-size:26px;margin:0 0 16px}.product-admin-form{display:grid;gap:12px}.checkbox-row{display:flex;gap:16px;flex-wrap:wrap}.checkbox-row label{display:flex;align-items:center;gap:7px}.checkbox-row input{width:auto}.admin-table{width:100%;border-collapse:collapse;min-width:620px}.admin-table th,.admin-table td{text-align:left;padding:11px 9px;border-bottom:1px solid var(--line);font-size:13px}.admin-table th{font-size:11px;text-transform:uppercase;color:var(--muted)}.admin-table td small{display:block;color:var(--muted);margin-top:2px}.table-btn{border:1px solid var(--line);background:#fff;border-radius:9px;padding:7px 10px;font-weight:850}.order-success-wrap{max-width:680px;margin:70px auto;text-align:center;border:1px solid var(--line);border-radius:24px;padding:42px;background:#fff}.order-success-wrap h1{font-size:50px;margin:14px 0}.success-mark{width:64px;height:64px;border-radius:50%;background:#dff5e8;color:var(--success);display:grid;place-items:center;font-size:34px;font-weight:1000;margin:0 auto}.success-summary{display:flex;justify-content:space-between;background:#f7f7f4;border-radius:14px;padding:16px;margin:24px 0}.success-summary b{font-size:20px}.account-note{font-size:12px;color:var(--muted);margin-top:8px}.backend-badge{display:inline-flex;align-items:center;gap:7px;border-radius:999px;padding:7px 10px;background:#e6f5ec;color:#145b35;font-size:12px;font-weight:900}.backend-badge::before{content:'';width:8px;height:8px;border-radius:50%;background:#1e7a46}
@media(max-width:950px){.auth-shell,.admin-grid{grid-template-columns:1fr}.admin-metrics{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.auth-shell{grid-template-columns:1fr}.admin-metrics{grid-template-columns:1fr 1fr}.account-head,.admin-head{align-items:flex-start;flex-direction:column}.order-card{grid-template-columns:1fr}.order-card>div:nth-child(2){justify-content:flex-start}.order-card ul{grid-column:1}.order-success-wrap{margin:30px 12px;padding:28px 20px}.order-success-wrap h1{font-size:40px}.nav-actions .account-link{display:none}}


/* --- Auth UX polish v3 --- */
.auth-section{padding-top:42px}
.auth-shell{gap:30px;align-items:start}
.auth-card{padding:32px;box-shadow:0 12px 30px rgba(20,23,28,.06)}
.auth-card-head{margin-bottom:22px;padding-bottom:18px;border-bottom:1px solid var(--line)}
.auth-card-head .eyebrow{margin-bottom:9px;line-height:1.3}
.auth-card-head h2{margin:0 0 10px;line-height:1.05}
.auth-card-head p{margin:0;line-height:1.55}
.auth-card form{gap:16px}
.auth-card label{gap:8px}
.auth-card input{min-height:48px}
.auth-card .btn{margin-top:6px}
.auth-card .btn:disabled,.auth-text-button:disabled{opacity:.62;cursor:not-allowed;transform:none}
.account-note{line-height:1.5;margin:2px 0 0!important}
.auth-status{margin-top:2px;border-radius:12px;padding:12px 14px;font-size:13px;font-weight:750;line-height:1.45;border:1px solid transparent}
.auth-status[hidden]{display:none!important}
.auth-status.info{background:#f5f5f2;border-color:#deded8;color:#4e5258}
.auth-status.success{background:#e8f6ed;border-color:#b8dfc7;color:#155b36}
.auth-status.warning{background:#fff8d8;border-color:#ead36a;color:#675400}
.auth-status.error{background:#fff0ef;border-color:#edc0bd;color:#8a2923}
.auth-text-button{justify-self:start;border:0;background:transparent;padding:2px 0;color:var(--red);font-weight:900;text-decoration:underline;text-underline-offset:3px;cursor:pointer}
@media(max-width:950px){.auth-shell{gap:34px}.auth-card{padding:28px}.auth-card+.auth-card{margin-top:2px}}
@media(max-width:620px){.auth-section{padding-top:28px}.auth-card{padding:23px 20px}.auth-card-head{margin-bottom:18px}.auth-card h2{font-size:28px}.auth-shell{gap:28px}}


/* --- Product shipping transparency v9 --- */
.field-help{font-size:11px;color:var(--muted);font-weight:650;line-height:1.35;margin-top:2px}
.cart-breakdown{display:grid;gap:7px;margin-bottom:10px;padding-bottom:12px;border-bottom:1px solid var(--line)}
.cart-breakdown>div{display:flex;justify-content:space-between;gap:14px;font-size:13px;color:var(--muted)}
.cart-breakdown b{color:var(--ink);font-size:13px}
.cart-line-total{display:block!important;color:var(--ink)!important;font-weight:850!important;margin-top:3px}
.order-shipping-line{font-weight:850;color:var(--ink)}

.success-summary-stack{display:grid;gap:8px;text-align:left}
.success-summary-stack>div{display:flex;justify-content:space-between;gap:20px}
.success-summary-stack .success-total-row{padding-top:10px;margin-top:4px;border-top:1px solid var(--line)}


/* ArcVault v11 image-fit refinement */
.product-card{
  display:grid;
  grid-template-rows:auto 1fr;
  min-width:0;
}
.product-media{
  aspect-ratio:1/1;
  padding:18px;
  overflow:hidden;
  background:linear-gradient(180deg,#fafafa,#f2f2ef);
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-image-frame{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  box-sizing:border-box;
  background:#fff;
  border:1px solid #ecece8;
  border-radius:14px;
  overflow:hidden;
  position:relative;
}
.product-image{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:scale-down;
  object-position:center center;
  display:block;
  border-radius:0;
}
.product-visual{
  width:68%;
  max-height:82%;
}
.product-visual span{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  z-index:2;
  font-size:9px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.72;
  text-align:center;
}
.image-fallback{
  width:68%;
}
.badge.coming{
  background:#fff3bf;
  color:#6e5900;
  border-color:#e5cf63;
}
.product-info{
  display:flex;
  flex-direction:column;
  min-height:230px;
}
.product-info h3{
  min-height:42px;
}
.product-desc{
  min-height:54px;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}
.price-row{
  margin-top:auto;
}
.price-tbc{
  color:#555;
}
.coming-btn{
  background:#ececec !important;
  color:#666 !important;
}
.admin-panel-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.admin-panel-heading h2{margin-bottom:4px}
.catalogue-count{
  flex:0 0 auto;
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:900;
  background:#f7f7f4;
}
.admin-product-tools{
  display:grid;
  grid-template-columns:minmax(220px,1fr) minmax(190px,.6fr);
  gap:10px;
  margin:14px 0;
}
.admin-product-tools input,
.admin-product-tools select{
  width:100%;
  border:1px solid var(--line);
  border-radius:11px;
  padding:10px 12px;
  background:#fff;
  font:inherit;
}
.admin-table-wrap{
  width:100%;
  overflow:auto;
}
.admin-status{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:5px 8px;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
  background:#eee;
  color:#555;
}
.admin-status-live{background:#dff5e8;color:#145b35}
.admin-status-sold-out{background:#fde5e3;color:#9b2620}
.admin-status-coming-soon,.admin-status-awaiting-stock{background:#fff3bf;color:#6e5900}
.admin-status-hidden{background:#ececec;color:#666}
.checkbox-row{
  flex-wrap:wrap;
}
@media(max-width:760px){
  .admin-product-tools{grid-template-columns:1fr}
  .product-info{min-height:0}
  .product-info h3{min-height:0}
}

/* ArcVault v12 — keep stock/status badges above every product image */
.product-media{
  position:relative;
  isolation:isolate;
}
.product-media .badge{
  z-index:20;
  position:absolute;
  top:14px;
  left:14px;
  pointer-events:none;
}
.product-image-frame,
.product-image,
.product-visual{
  position:relative;
  z-index:1;
}


/* =========================================================
   ArcVault v17 — structured, spacious launch hero
   No overlapping absolute-positioned content.
   ========================================================= */
@media (min-width: 1001px){
  .hero-grid{
    grid-template-columns:minmax(0,1.02fr) minmax(540px,.98fr);
    gap:64px;
    min-height:620px;
  }
}

.hero-visual.launch-scene{
  position:relative;
  width:100%;
  max-width:620px;
  min-height:0;
  margin-left:auto;
  transform:translateX(18px);
  display:grid;
  grid-template-rows:auto auto auto auto;
  gap:22px;
  padding:16px 4px 10px 18px;
  isolation:isolate;
  overflow:visible;
}

.hero-visual.launch-scene::before{
  content:"";
  position:absolute;
  z-index:-4;
  width:330px;
  height:330px;
  border-radius:50%;
  right:-28px;
  top:70px;
  background:radial-gradient(circle at 35% 30%, rgba(255,232,109,.45), rgba(255,216,61,.13) 58%, rgba(255,216,61,0) 72%);
}
.hero-visual.launch-scene::after{
  content:"";
  position:absolute;
  z-index:-5;
  width:440px;
  height:270px;
  border-radius:50%;
  right:30px;
  bottom:70px;
  background:radial-gradient(ellipse at center, rgba(229,57,53,.10), rgba(229,57,53,0) 72%);
  transform:rotate(-5deg);
}

.scene-topline{
  display:grid;
  grid-template-columns:minmax(0,1fr) 178px;
  align-items:start;
  gap:30px;
  min-height:205px;
}

.scene-copy{
  position:static;
  width:auto;
  padding-top:12px;
}
.scene-kicker{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  padding:0 13px;
  border-radius:999px;
  border:2px solid var(--ink);
  background:var(--yellow);
  box-shadow:0 4px 0 var(--ink);
  font-size:11px;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.scene-copy h3{
  margin:18px 0 10px;
  max-width:8.5ch;
  font-size:clamp(38px,3.65vw,52px);
  line-height:.98;
  letter-spacing:-.055em;
}
.scene-copy h3 em{
  display:block;
  width:max-content;
  max-width:100%;
  font-style:normal;
  color:var(--red);
  position:relative;
}
.scene-copy h3 em::after{
  content:"";
  position:absolute;
  z-index:-1;
  left:-2px;
  right:-4px;
  bottom:2px;
  height:.24em;
  border-radius:6px;
  background:rgba(255,216,61,.72);
  transform:rotate(-1deg);
}
.scene-copy p{
  margin:0;
  max-width:340px;
  color:#5b5f65;
  font-size:12px;
  line-height:1.55;
  font-weight:750;
}

.scene-orb{
  width:170px;
  height:170px;
  border-radius:50%;
  align-self:start;
  justify-self:end;
  position:relative;
  background:linear-gradient(180deg,var(--yellow) 0 48%,#fff 48% 52%,var(--red) 52% 100%);
  border:3px solid var(--ink);
  box-shadow:0 12px 0 rgba(23,23,23,.96),0 22px 40px rgba(0,0,0,.11);
}
.scene-orb::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:4px;
  margin-top:-2px;
  background:var(--ink);
}
.scene-orb::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:42px;
  height:42px;
  margin:-24px 0 0 -24px;
  border-radius:50%;
  background:#fff;
  border:4px solid var(--ink);
  box-shadow:inset 0 0 0 7px #f7f7f4;
}
.scene-orb span{
  position:absolute;
  inset:-20px;
  border:2px dashed rgba(23,23,23,.16);
  border-radius:50%;
  transform:rotate(-9deg);
}

.scene-products{
  position:static;
  width:auto;
  height:auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:end;
  padding:0 2px;
}
.scene-product{
  position:relative;
  inset:auto;
  width:auto;
  height:220px;
  min-width:0;
  border:3px solid var(--ink);
  border-radius:20px;
  padding:12px;
  background:#fff;
  box-shadow:0 9px 0 rgba(23,23,23,.95),0 16px 28px rgba(0,0,0,.10);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transform:none;
}
.scene-pack{height:202px; transform:rotate(-2deg) translateY(6px);}
.scene-etb{height:226px; transform:translateY(-2px);}
.scene-bundle{height:208px; transform:rotate(2deg) translateY(3px);}
.scene-product::before{
  content:"";
  position:absolute;
  inset:0 0 70px;
  background:linear-gradient(145deg,#2b2b2c,#080808);
}
.scene-etb::before{background:linear-gradient(145deg,#ff7a70,#d32f2a);}
.scene-bundle::before{background:linear-gradient(145deg,#ffe66b,#efbd13);}
.scene-product-tag{
  position:absolute;
  z-index:2;
  top:10px;
  left:10px;
  padding:5px 8px;
  border-radius:999px;
  background:#fff;
  border:1.5px solid rgba(23,23,23,.8);
  font-size:9px;
  font-weight:1000;
  letter-spacing:.08em;
}
.scene-emblem{
  position:absolute;
  z-index:1;
  left:50%;
  top:55px;
  width:72px;
  height:72px;
  margin-left:-36px;
  border:8px solid rgba(255,255,255,.78);
  border-radius:50%;
}
.scene-emblem::after{
  content:"";
  position:absolute;
  left:-25px;
  right:-25px;
  top:50%;
  height:3px;
  margin-top:-1.5px;
  background:rgba(255,255,255,.78);
}
.scene-product b{position:relative;z-index:2;font-size:13px;line-height:1.18;}
.scene-product small{position:relative;z-index:2;margin-top:4px;color:#6d7178;font-size:9.5px;line-height:1.25;}

.scene-lower{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(210px,.75fr);
  gap:18px;
  align-items:stretch;
}
.scene-bottom{
  position:static;
  width:auto;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:0;
}
.scene-bottom p{
  margin:0;
  width:100%;
  min-height:84px;
  padding:14px 15px;
  border-left:4px solid var(--yellow);
  border-radius:0 15px 15px 0;
  background:rgba(255,255,255,.88);
  font-size:11.5px;
  line-height:1.55;
  color:#555a61;
}
.scene-cta{
  display:inline-flex;
  min-height:42px;
  align-items:center;
  padding:0 16px;
  border-radius:11px;
  background:var(--red);
  color:#fff;
  font-size:12px;
  font-weight:1000;
  box-shadow:0 5px 0 #b71c1c;
  text-decoration:none;
}
.scene-price-ribbon{
  position:relative;
  inset:auto;
  width:auto;
  min-height:100%;
  padding:15px 15px 15px 50px;
  border:2px solid var(--ink);
  border-radius:18px;
  background:#fff;
  box-shadow:0 5px 0 var(--ink);
  transform:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.scene-price-ribbon::before{
  content:"£";
  position:absolute;
  left:12px;
  top:50%;
  width:29px;
  height:29px;
  margin-top:-16px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--yellow);
  border:2px solid var(--ink);
  font-weight:1000;
}
.scene-price-ribbon strong{display:block;font-size:12px;line-height:1.25;}
.scene-price-ribbon span{display:block;margin-top:5px;color:#666b73;font-size:9.5px;line-height:1.35;}

.scene-sticker{
  position:static;
  justify-self:end;
  display:inline-flex;
  min-height:38px;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:var(--yellow);
  border:2px solid var(--ink);
  box-shadow:0 5px 0 var(--ink);
  font-size:10.5px;
  font-weight:1000;
  transform:rotate(1deg);
  margin-right:4px;
}

/* Suppress legacy absolute decoration from v14-v16 inside the new layout */
.launch-scene > .scene-orbit,
.launch-scene > .scene-spark{display:none !important;}

@media (max-width:1000px){
  .hero-visual.launch-scene{
    max-width:680px;
    margin:20px auto 0;
    transform:none;
    padding:8px 4px 12px;
  }
  .scene-topline{grid-template-columns:minmax(0,1fr) 160px;gap:26px;}
  .scene-orb{width:150px;height:150px;}
}

@media (max-width:700px){
  .hero-visual.launch-scene{gap:18px;}
  .scene-topline{grid-template-columns:1fr 112px;gap:14px;min-height:0;}
  .scene-copy{padding-top:0;}
  .scene-copy h3{font-size:36px;max-width:8ch;margin-top:13px;}
  .scene-copy p{max-width:260px;}
  .scene-orb{width:102px;height:102px;box-shadow:0 7px 0 rgba(23,23,23,.96);}
  .scene-orb::after{width:30px;height:30px;margin:-19px 0 0 -19px;}
  .scene-products{gap:9px;}
  .scene-product,.scene-etb,.scene-pack,.scene-bundle{height:168px;transform:none;padding:9px;border-radius:15px;}
  .scene-product::before{inset:0 0 58px;}
  .scene-emblem{top:44px;width:52px;height:52px;margin-left:-26px;border-width:6px;}
  .scene-product b{font-size:10.5px;}
  .scene-product small{font-size:8px;}
  .scene-product-tag{top:7px;left:7px;font-size:7.5px;padding:4px 6px;}
  .scene-lower{grid-template-columns:1fr;gap:12px;}
  .scene-bottom p{min-height:0;}
  .scene-price-ribbon{min-height:76px;}
  .scene-sticker{justify-self:start;}
}


/* =========================================================
   ArcVault v19 — contained inventory scrolling
   Keep the Products & Inventory panel compact while the
   product rows scroll independently from the admin page.
   ========================================================= */
.inventory-scroll{
  max-height:520px;
  overflow-y:auto;
  overflow-x:auto;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}
.inventory-scroll .admin-table{
  margin:0;
}
.inventory-scroll .admin-table thead th{
  position:sticky;
  top:0;
  z-index:5;
  background:#fff;
  box-shadow:0 1px 0 var(--line);
}
.inventory-scroll .admin-table tbody tr:last-child td{
  border-bottom:0;
}
@media(max-width:950px){
  .inventory-scroll{max-height:500px;}
}
@media(max-width:620px){
  .inventory-scroll{max-height:62vh;}
}


/* ArcVault v20 — live storefront stock quantity */
.stock-level{
  display:inline-flex;
  align-items:center;
  gap:7px;
  align-self:flex-start;
  min-height:26px;
  margin:0 0 12px;
  padding:5px 9px;
  border-radius:999px;
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:.01em;
  white-space:nowrap;
}
.stock-dot{
  width:7px;
  height:7px;
  flex:0 0 7px;
  border-radius:50%;
  background:currentColor;
}
.stock-available{
  color:#16603a;
  background:#e7f5ec;
  border:1px solid #c7e6d3;
}
.stock-low{
  color:#9b341f;
  background:#fff0e9;
  border:1px solid #f4c5b8;
}
@media(max-width:760px){
  .stock-level{margin-bottom:10px}
}

/* =========================================================
   ArcVault v23 — full product detail pages
   ========================================================= */
.product-media-link{
  display:block;
  color:inherit;
  text-decoration:none;
}
.product-title-link{
  color:inherit;
  text-decoration:none;
}
.product-title-link:hover{color:var(--red);}
.product-detail-page{padding-top:34px;}
.product-breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin:0 0 26px;
  color:var(--muted);
  font-size:12px;
  font-weight:750;
}
.product-breadcrumb a{color:inherit;text-decoration:none;}
.product-breadcrumb a:hover{color:var(--ink);}
.product-breadcrumb b{color:var(--ink);}
.product-detail-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.92fr);
  gap:58px;
  align-items:start;
}
.product-detail-media{
  min-width:0;
  position:sticky;
  top:116px;
}
.detail-image-shell{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px;
  border:1px solid var(--line);
  border-radius:26px;
  background:linear-gradient(180deg,#fafafa,#f2f2ef);
  overflow:hidden;
}
.detail-image-shell>.product-image-frame{
  width:100%;
  height:500px;
  max-width:560px;
  padding:26px;
  border-radius:20px;
}
.detail-image-shell>.product-visual{
  width:min(420px,82%);
  height:460px;
  max-height:none;
  border-radius:24px;
}
.detail-image-shell .product-image{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}
.product-detail-copy{padding-top:10px;}
.product-detail-copy .type{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  font-weight:950;
}
.product-detail-copy h1{
  margin:7px 0 18px;
  font-size:clamp(38px,4.6vw,62px);
  line-height:.98;
  letter-spacing:-.055em;
}
.product-detail-price{
  font-size:36px;
  line-height:1;
  font-weight:1000;
  margin:0 0 14px;
}
.product-detail-copy .stock-level{margin:0 0 12px;}
.product-detail-shipping{
  margin:0 0 18px;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}
.product-detail-action{
  width:100%;
  min-height:54px;
  margin:0 0 16px;
  font-size:15px;
}
.detail-trust{
  display:grid;
  gap:8px;
  padding:16px 0 20px;
  border-bottom:1px solid var(--line);
  color:#555a61;
  font-size:12px;
  font-weight:750;
}
.product-spec-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 26px;
  margin-top:19px;
  border-top:1px solid var(--line);
}
.product-spec{
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  gap:12px;
  align-items:start;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.product-spec span{color:var(--muted);font-weight:750;}
.product-spec b{font-weight:900;overflow-wrap:anywhere;}
.product-description-block{
  margin:66px 0 0;
  padding:34px 0;
  max-width:920px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.product-description-block h2{
  margin:7px 0 12px;
  font-size:34px;
  letter-spacing:-.04em;
}
.product-description-block p{
  margin:0;
  color:#555a61;
  line-height:1.72;
  font-size:15px;
  max-width:820px;
}
.related-products-section{margin-top:58px;}
.related-products-section .section-head{
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:end;
  margin-bottom:22px;
}
.related-products-section .section-head h2{
  margin:5px 0 0;
  font-size:38px;
  letter-spacing:-.045em;
}
.related-products-section .section-head>a{
  color:var(--ink);
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}
.product-grid-related{grid-template-columns:repeat(4,minmax(0,1fr));}
.product-not-found{
  max-width:680px;
  margin:70px auto;
  padding:40px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
}
.product-not-found h1{font-size:44px;margin:0 0 12px;}
.product-detail-admin-fields{
  display:grid;
  gap:12px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fafaf8;
}
.field-group-title{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:950;
  color:var(--muted);
}
.single-card-admin-fields{
  display:grid;
  gap:12px;
  padding-top:14px;
  margin-top:2px;
  border-top:1px dashed var(--line);
}
.single-card-admin-fields[hidden]{display:none!important;}

@media(max-width:1000px){
  .product-detail-hero{grid-template-columns:1fr;gap:30px;}
  .product-detail-media{position:relative;top:auto;}
  .detail-image-shell{min-height:480px;}
  .detail-image-shell>.product-image-frame{height:430px;}
  .product-spec-grid{grid-template-columns:1fr;}
  .product-grid-related{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:620px){
  .product-detail-page{padding-top:20px;}
  .product-breadcrumb{margin-bottom:18px;}
  .detail-image-shell{min-height:360px;padding:18px;border-radius:19px;}
  .detail-image-shell>.product-image-frame{height:330px;padding:16px;}
  .detail-image-shell>.product-visual{height:320px;}
  .product-detail-copy h1{font-size:40px;}
  .product-detail-price{font-size:30px;}
  .product-spec{grid-template-columns:105px minmax(0,1fr);}
  .product-description-block{margin-top:42px;padding:26px 0;}
  .product-description-block h2{font-size:29px;}
  .related-products-section{margin-top:42px;}
  .related-products-section .section-head{align-items:start;flex-direction:column;gap:8px;}
  .related-products-section .section-head h2{font-size:31px;}
  .product-grid-related{grid-template-columns:1fr;}
}


/* v24 — fulfilment contact details in Latest orders */
#admin-orders .order-customer-cell{min-width:250px;max-width:340px;white-space:normal}
#admin-orders .order-delivery{display:grid;gap:4px;margin-top:8px;padding-top:8px;border-top:1px solid #ece7d8;font-size:12px;line-height:1.4;color:#555}
#admin-orders .order-delivery span{display:block;overflow-wrap:anywhere}
#admin-orders .order-delivery b{color:#292929}


/* ArcVault v25 — established-store presentation */
.home-stock-link{margin-top:24px;display:flex;justify-content:flex-start}
.shop-status-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-bottom:24px}
.shop-status-card{display:flex;gap:13px;align-items:flex-start;border:1px solid var(--line);border-radius:16px;padding:17px 18px;background:#fff}
.shop-status-card .status-dot{width:10px;height:10px;border-radius:50%;margin-top:5px;flex:0 0 auto}
.shop-status-card b{display:block;font-size:15px;margin-bottom:3px}
.shop-status-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.45}
.shop-status-card.live{border-color:#cfe8d8;background:#fbfffc}
.shop-status-card.live .status-dot{background:#2f9b5f;box-shadow:0 0 0 4px #e1f4e8}
.shop-status-card.awaiting{border-color:#ead98b;background:#fffdf2}
.shop-status-card.awaiting .status-dot{background:#d2ad16;box-shadow:0 0 0 4px #fff3bf}
.catalogue-section{margin-top:34px}
.catalogue-section+.catalogue-section{margin-top:58px;padding-top:38px;border-top:1px solid var(--line)}
.catalogue-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin-bottom:22px}
.catalogue-section-head h2{margin:3px 0 6px;font-size:clamp(30px,4vw,44px);letter-spacing:-.035em}
.catalogue-section-head p{margin:0;color:var(--muted);max-width:670px}
.catalogue-section-count{flex:0 0 auto;border:1px solid var(--line);border-radius:999px;background:#fff;padding:8px 11px;font-size:12px;font-weight:900;color:var(--muted)}
.catalogue-awaiting .catalogue-section-count{background:#fff9ce;border-color:#ead98b;color:#6e5900}
.catalogue-empty{grid-column:1/-1;border:1px dashed #d7d7d2;border-radius:16px;padding:28px;text-align:center;color:var(--muted);background:#fafaf8}
.catalogue-section.section-filter-empty{display:none}
@media(max-width:760px){.shop-status-grid{grid-template-columns:1fr}.catalogue-section-head{align-items:flex-start;flex-direction:column}.catalogue-section+.catalogue-section{margin-top:42px;padding-top:30px}}

/* ArcVault v26 — explicit storefront placement controls */
.admin-product-tools{
  grid-template-columns:minmax(220px,1fr) minmax(180px,.55fr) minmax(180px,.55fr);
}
.storefront-placement-editor{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background:#fafaf7;
}
.storefront-placement-editor .field-group-title{margin-bottom:8px}
.table-placement-select{
  min-width:145px;
  border:1px solid var(--line);
  border-radius:9px;
  padding:7px 9px;
  background:#fff;
  font:inherit;
  font-weight:800;
}
.table-placement-select:disabled{opacity:.65}
@media(max-width:900px){
  .admin-product-tools{grid-template-columns:1fr 1fr}
  .admin-product-tools input{grid-column:1/-1}
}
@media(max-width:760px){
  .admin-product-tools{grid-template-columns:1fr}
  .admin-product-tools input{grid-column:auto}
}

/* v27 — continuously moving store-information ticker */
.announcement-ticker {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.announcement-ticker .announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: arcvault-announcement-scroll 30s linear infinite;
}
.announcement-ticker .announcement-run {
  display: flex;
  flex: none;
  align-items: center;
  gap: 30px;
  padding: 9px 15px;
}
.announcement-ticker .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .025em;
}
.announcement-ticker .ticker-item strong {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .045em;
}
.announcement-ticker .ticker-primary strong {
  color: var(--yellow);
}
.announcement-ticker .ticker-dot {
  color: rgba(255,255,255,.72);
}
.announcement-ticker .ticker-separator {
  color: var(--red);
  font-size: 9px;
  opacity: .95;
}
@keyframes arcvault-announcement-scroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@media (max-width: 680px) {
  .announcement-ticker .announcement-track { animation-duration: 25s; }
  .announcement-ticker .announcement-run { gap: 22px; padding: 8px 11px; }
  .announcement-ticker .ticker-item { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-ticker .announcement-track {
    animation: none;
    transform: none;
  }
}

/* v30 — homepage product search: left hero half + click-to-open catalogue box */
.hero-copy-column { position: relative; min-width: 0; }
.hero-search-zone {
  position: absolute;
  z-index: 44;
  top: -116px;
  left: 0;
  width: 100%;
}
.hero-product-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 0 18px 0 50px;
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 15px;
  box-shadow: 0 6px 0 rgba(23,23,23,.12), 0 13px 30px rgba(0,0,0,.06);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  text-align: left;
  cursor: text;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.hero-product-search:hover,
.hero-product-search[aria-expanded="true"] {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 rgba(23,23,23,.18), 0 15px 34px rgba(0,0,0,.09);
}
.hero-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
}
.hero-search-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 17px;
  box-shadow: 0 9px 0 rgba(23,23,23,.16), 0 22px 50px rgba(0,0,0,.14);
}
.hero-search-popover[hidden] { display: none !important; }
.hero-search-dialog-form {
  padding: 10px;
  background: #fffbea;
  border-bottom: 1px solid #eadf9e;
}
.hero-search-dialog-input {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  background: #fff;
  border: 1.5px solid #b9b9b4;
  border-radius: 12px;
}
.hero-search-dialog-input:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255,216,61,.28);
}
.hero-search-dialog-input input {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 16px 0 47px;
  font-size: 14px;
  font-weight: 750;
}
.hero-search-dialog-input input::placeholder { color: #777b82; opacity: 1; }
.hero-search-dialog-input input::-webkit-search-cancel-button { cursor: pointer; }
.hero-search-dialog-input .hero-search-icon { left: 16px; width: 18px; height: 18px; }
.hero-search-results {
  max-height: min(390px, calc(100vh - 250px));
  overflow-y: auto;
  background: #fff;
}
.hero-search-results-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px 11px;
  background: #fffbea;
  border-bottom: 1px solid #eadf9e;
}
.hero-search-results-head b {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-search-results-head span { color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-search-result {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 9px 13px;
  border-bottom: 1px solid var(--line);
  transition: background .14s ease;
}
.hero-search-result:last-child { border-bottom: 0; }
.hero-search-result:hover, .hero-search-result:focus-visible { background: #fff9d9; outline: 0; }
.hero-search-thumb {
  width: 52px;
  height: 52px;
  border: 1px solid #dedede;
  border-radius: 11px;
  background: linear-gradient(145deg,#fff7c4,#f2d94d);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-search-thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.hero-search-thumb span { font-size: 9px; font-weight: 950; text-align: center; padding: 5px; line-height: 1.1; }
.hero-search-result-copy { min-width: 0; }
.hero-search-result-copy b {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13.5px;
  line-height: 1.25;
}
.hero-search-result-copy span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 700; }
.hero-search-result-side { text-align: right; white-space: nowrap; }
.hero-search-result-side strong { display: block; font-size: 12px; }
.hero-search-result-side small {
  display: inline-flex;
  margin-top: 4px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #e8f6ee;
  color: #17653a;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-search-result-side small.awaiting { background: #fff3b8; color: #695100; }
.hero-search-result-side small.sold-out { background: #ffe1df; color: #9b2725; }
.hero-search-empty { padding: 25px 18px; text-align: center; color: var(--muted); font-size: 13px; }
.hero-search-empty b { display: block; color: var(--ink); margin-bottom: 4px; font-size: 15px; }

@media (max-width: 950px) {
  .hero-search-zone {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0 0 30px;
  }
  .hero-search-popover { max-width: 620px; }
}
@media (max-width: 620px) {
  .hero-search-zone { margin-bottom: 26px; }
  .hero-product-search { min-height: 50px; border-radius: 13px; font-size: 14px; padding-left: 46px; }
  .hero-product-search .hero-search-icon { left: 16px; width: 18px; height: 18px; }
  .hero-search-popover { left: 0; right: 0; }
  .hero-search-result { grid-template-columns: 44px minmax(0,1fr); min-height: 64px; padding: 9px 10px; }
  .hero-search-thumb { width: 44px; height: 44px; }
  .hero-search-result-side { grid-column: 2; text-align: left; margin-top: -3px; }
  .hero-search-result-side strong, .hero-search-result-side small { display: inline-flex; margin: 0 7px 0 0; }
}
