:root {
  --ink: #0f0f0f;
  --ink-soft: #6b6b6b;
  --line: #e6e4df;
  --paper: #ffffff;
  --tile: #ece7df;
  --sale: #d62828;
  --accent: #ff4d12;
  --maxw: 1280px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1rem;
}
.announce p { margin: 0; }
.announce strong { color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-left { display: flex; gap: 1.6rem; font-weight: 600; font-size: 0.95rem; }
.nav-left a { position: relative; padding: 0.2rem 0; }
.nav-left a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--ink); transition: width 0.2s;
}
.nav-left a:hover::after { width: 100%; }

.logo { display: flex; align-items: center; justify-content: center; }
.logo img { height: 40px; width: auto; display: block; }
.nav-right { display: flex; justify-content: flex-end; gap: 0.3rem; }
.icon-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  color: var(--ink);
  padding: 0.5rem;
  border-radius: 8px;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.icon-btn:hover { background: #f2f0ec; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--accent); color: #fff;
  font-size: 0.62rem; font-weight: 800;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; display: grid; place-items: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 4px),
    radial-gradient(120% 90% at 75% 20%, #ff7a1a 0%, #ff3d00 38%, #b3160a 70%, #4a0a06 100%);
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 70% at 20% 90%, rgba(255,170,80,0.45), transparent 60%);
  mix-blend-mode: screen;
}
@keyframes drift { from { transform: scale(1.05) translateX(-1.5%); } to { transform: scale(1.12) translateX(1.5%); } }
.hero-inner { position: relative; padding: 2rem 1.2rem; max-width: 760px; }
.hero-kicker {
  text-transform: uppercase; letter-spacing: 0.32em; font-size: 0.78rem;
  font-weight: 700; margin: 0 0 0.6rem; opacity: 0.95;
}
.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 900; line-height: 0.92; letter-spacing: -0.01em;
  margin: 0; text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-sub { margin: 1rem auto 0; max-width: 32rem; font-size: 1.02rem; font-weight: 500; opacity: 0.95; }
.countdown { display: flex; justify-content: center; gap: 0.9rem; margin: 1.6rem 0 0; }
.cd-unit {
  background: rgba(0,0,0,0.28); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px; padding: 0.5rem 0.7rem; min-width: 64px;
}
.cd-unit span { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.cd-unit small { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.85; }
.hero-cta {
  display: inline-block; margin-top: 1.8rem;
  background: #fff; color: var(--ink);
  font-weight: 800; letter-spacing: 0.02em;
  padding: 0.95rem 2.4rem; border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

/* ---------- Hero banner ---------- */
.hero-banner { display: block; line-height: 0; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* ---------- Category tiles ---------- */
.cats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-tile {
  background: var(--tile);
  min-height: 150px;
  padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  font-weight: 800; transition: background 0.18s;
}
.cat-tile:hover { background: #e3ddd2; }
.cat-name { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.01em; }
.cat-go { font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; margin-top: 0.2rem; }

/* ---------- Product rail ---------- */
.rail-section { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.4rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem); }
.rail-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.rail-title { font-size: clamp(1.4rem, 3.5vw, 2.1rem); font-weight: 900; text-transform: uppercase; margin: 0; }
.rail-title span { color: var(--sale); }
.rail-controls { display: flex; gap: 0.5rem; }
.rail-arrow {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: all 0.15s;
}
.rail-arrow:hover { background: #f2f0ec; }
.rail-arrow.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.rail-arrow.primary:hover { background: #000; }

.rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 1.1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem; scrollbar-width: thin;
}
.rail-loading { color: var(--ink-soft); }

.card { scroll-snap-align: start; display: flex; flex-direction: column; }
.card-media {
  position: relative; aspect-ratio: 3 / 4; background: var(--tile);
  border-radius: var(--radius); overflow: hidden;
  display: grid; place-items: center;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-icon { width: 46%; color: #2a2723; opacity: 0.55; }
.card-icon svg { stroke-width: 1.4; width: 100%; height: auto; }
.badge {
  position: absolute; left: 0.7rem; bottom: 0.7rem;
  background: #fff; color: var(--ink);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 0.28rem 0.6rem; border-radius: 6px;
}
.wish {
  position: absolute; top: 0.7rem; right: 0.7rem;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  display: grid; place-items: center; color: var(--ink); transition: transform 0.12s;
}
.wish:hover { transform: scale(1.08); }
.wish.active svg { fill: var(--sale); stroke: var(--sale); }
.add {
  position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.7rem;
  background: var(--ink); color: #fff; border: none; cursor: pointer;
  font-family: inherit; font-weight: 800; font-size: 0.9rem;
  padding: 0.7rem; border-radius: 8px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.18s, transform 0.18s, background 0.15s;
}
.card-media:hover .add { opacity: 1; transform: translateY(0); }
.card-media:hover .badge { opacity: 0; }
.add:hover { background: #000; }

.card-info { padding: 0.7rem 0.1rem 0; }
.card-top { display: flex; justify-content: space-between; gap: 0.5rem; align-items: baseline; }
.card-name { font-size: 0.97rem; font-weight: 700; margin: 0; }
.card-rating { font-size: 0.82rem; font-weight: 700; white-space: nowrap; color: var(--ink); }
.card-rating .star { color: var(--accent); }
.card-spec { font-size: 0.84rem; color: var(--ink-soft); margin: 0.15rem 0 0.45rem; }
.card-price { font-weight: 800; font-size: 1rem; }
.card-price .was { color: var(--sale); font-weight: 600; text-decoration: line-through; margin-left: 0.45rem; font-size: 0.9rem; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
.trust div { padding: 1.3rem 1rem; text-align: center; border-left: 1px solid var(--line); }
.trust div:first-child { border-left: none; }
.trust strong { display: block; font-size: 0.95rem; }
.trust span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer { background: #fafafa; border-top: 1px solid var(--line); margin-top: 2rem; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr) 1.6fr;
  gap: 2rem; padding: 3rem clamp(1rem, 4vw, 2.5rem) 2rem;
}
.fcol h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 1rem; }
.fcol a { display: block; color: var(--ink-soft); font-size: 0.92rem; padding: 0.32rem 0; }
.fcol a:hover { color: var(--ink); }
.foot-blurb { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 1rem; }
.footer-logo { height: 50px; width: auto; display: block; margin-bottom: 1rem; }
.news { display: flex; gap: 0.5rem; }
.news input {
  flex: 1; border: 1px solid var(--line); border-radius: 8px;
  padding: 0.6rem 0.8rem; font-family: inherit; font-size: 0.9rem;
}
.news button {
  background: var(--ink); color: #fff; border: none; border-radius: 8px;
  padding: 0 1.2rem; font-family: inherit; font-weight: 800; cursor: pointer;
}

.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 2.5rem); border-top: 1px solid var(--line);
}
.pay { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em;
  background: #fff; border: 1px solid var(--line);
  padding: 0.35rem 0.6rem; border-radius: 6px; color: #333;
}
.social { display: flex; gap: 0.5rem; }
.soc {
  width: 34px; height: 34px; border-radius: 999px; background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.soc:hover { background: var(--accent); }

.footer-legal {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 2rem; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--ink-soft);
}
.footer-legal nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--ink); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .logo { justify-content: flex-start; }
  .cats { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust div:nth-child(odd) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .add { opacity: 1; transform: none; }
  .badge { display: none; }
}

/* ---------- Shop grid + filters ---------- */
.shop-section { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.5rem,4vw,3rem) clamp(1rem,4vw,2.5rem) clamp(2.4rem,5vw,4rem); }
.shop-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.4rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter {
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 0.45rem 1.05rem; border-radius: 999px; font-family: inherit; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; transition: all 0.15s;
}
.filter:hover { color: var(--ink); }
.filter[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.1rem 1.1rem; }

/* ---------- Content pages ---------- */
.page { max-width: 820px; margin: 0 auto; padding: clamp(2.2rem,5vw,4rem) clamp(1rem,5vw,1.5rem) clamp(3rem,6vw,5rem); }
.page-hero { border-bottom: 1px solid var(--line); padding-bottom: 1.6rem; margin-bottom: 2rem; }
.page-kicker { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; font-weight: 800; color: var(--accent); margin: 0 0 0.5rem; }
.page-hero h1 { font-size: clamp(2rem,6vw,3.2rem); font-weight: 900; text-transform: uppercase; line-height: 0.98; margin: 0; }
.page-lead { color: var(--ink-soft); font-size: 1.08rem; margin: 1rem 0 0; }
.page-body h2 { font-size: 1.3rem; font-weight: 800; margin: 2rem 0 0.5rem; }
.page-body h3 { font-size: 1.02rem; font-weight: 800; margin: 1.3rem 0 0.3rem; }
.page-body p, .page-body li { color: #2b2b2b; }
.page-body ul { padding-left: 1.2rem; }
.page-body li { margin: 0.3rem 0; }
.page-body a { color: var(--accent); font-weight: 600; }
.tag { color: var(--ink-soft); font-size: 0.86rem; }
.note {
  background: #fff7f3; border: 1px solid #ffd9c7; border-radius: 10px;
  padding: 0.9rem 1.1rem; font-size: 0.9rem; color: #7a3a1c; margin: 1.5rem 0;
}

/* About values */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.6rem 0; }
.value { background: var(--tile); border-radius: var(--radius); padding: 1.3rem; }
.value h3 { margin: 0 0 0.3rem; font-size: 1.05rem; text-transform: uppercase; }
.value p { margin: 0; font-size: 0.92rem; color: #50473c; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.4rem; align-items: start; }
.contact-form { display: grid; gap: 0.9rem; }
.contact-form[hidden] { display: none; }
.contact-form label { font-weight: 700; font-size: 0.9rem; display: grid; gap: 0.35rem; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--line); border-radius: 8px; padding: 0.7rem 0.85rem;
  font-family: inherit; font-size: 0.95rem; width: 100%;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  justify-self: start; background: var(--ink); color: #fff; border: none;
  font-family: inherit; font-weight: 800; padding: 0.85rem 2rem; border-radius: 999px; cursor: pointer;
}
.contact-form button:hover { background: #000; }
.form-status {
  margin: 0; padding: 1rem 1.2rem; border-radius: 10px;
  background: #eef7ee; border: 1px solid #cfe6cf; color: #245c2a; font-weight: 600;
}
.form-status.error { background: #fdecea; border-color: #f3c6bf; color: #8a2c1c; }
.contact-info p { margin: 0 0 0.4rem; }
.contact-info strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 1rem; }

/* ---------- Search overlay ---------- */
.search-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(15,15,15,0.45); backdrop-filter: blur(3px); }
.search-panel { background: #fff; max-height: 86vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.search-bar {
  position: sticky; top: 0; background: #fff; z-index: 1;
  display: flex; align-items: center; gap: 0.8rem;
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem clamp(1rem,4vw,2.5rem);
  border-bottom: 1px solid var(--line);
}
.search-bar svg { stroke: var(--ink-soft); flex: none; }
.search-input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 1.2rem; font-weight: 600; }
.search-close { background: none; border: none; cursor: pointer; font-family: inherit; font-weight: 700; color: var(--ink-soft); font-size: 0.95rem; }
.search-close:hover { color: var(--ink); }
.search-results { max-width: var(--maxw); margin: 0 auto; padding: 1.4rem clamp(1rem,4vw,2.5rem) 2.4rem; }
.search-hint { color: var(--ink-soft); }
.search-count { font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; margin: 0 0 1rem; }
.search-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.1rem; }

@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Company info / footer additions ---------- */
.company { font-style: normal; font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); }
.fcol-brand .company { color: var(--ink-soft); }
.company strong { color: var(--ink); }
.company a { color: var(--accent); }
.company-dpo { font-size: 0.82rem; color: var(--ink-soft); margin: 0.8rem 0 0; }
.linklike {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  font: inherit; color: var(--ink-soft); text-align: left; text-decoration: underline;
}
.fcol .linklike { display: block; padding: 0.32rem 0; }
.footer-legal .linklike { color: var(--ink-soft); }
.linklike:hover { color: var(--ink); }

/* ---------- Legal pages ---------- */
.page-meta {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; align-items: center; justify-content: space-between;
  margin-top: 1.2rem; font-size: 0.86rem; color: var(--ink-soft);
}
.meta-actions { display: inline-flex; gap: 1rem; align-items: center; }
.meta-actions a { color: var(--accent); font-weight: 600; }
.print-btn {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.9rem; font-family: inherit; font-weight: 700; font-size: 0.82rem; cursor: pointer;
}
.print-btn:hover { background: #f2f0ec; }
.toc { background: var(--tile); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 0 0 2rem; }
.toc h2 { font-size: 0.78rem !important; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 0.7rem !important; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.toc li { margin: 0.25rem 0; break-inside: avoid; }
.toc a { color: #2b2b2b; }
.toc a:hover { color: var(--accent); }
.legal-body section { scroll-margin-top: 90px; border-top: 1px solid var(--line); padding-top: 1.4rem; margin-top: 1.4rem; }
.legal-body section:first-of-type { border-top: none; padding-top: 0; margin-top: 0.5rem; }
.cancel-form { border-left: 3px solid var(--line); margin: 1rem 0; padding: 0.6rem 1.1rem; background: #fafafa; }
.cancel-form p { margin: 0.4rem 0; }
.table-wrap { overflow-x: auto; margin: 1rem 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cookie-table th, .cookie-table td { text-align: left; padding: 0.55rem 0.7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.cookie-table th { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.contact-box { background: var(--tile); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 2rem; }
.contact-box h2 { margin-top: 0 !important; }

/* ---------- Cookie consent banner ---------- */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
}
.cc-banner-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.2rem clamp(1rem,4vw,2.5rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.2rem 2rem; align-items: center;
}
.cc-text h2 { font-size: 1.1rem; margin: 0 0 0.4rem; }
.cc-text p { margin: 0 0 0.4rem; font-size: 0.9rem; color: #2b2b2b; }
.cc-text a { color: var(--accent); font-weight: 600; }
.cc-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-content: center; }
.cc-btn {
  font-family: inherit; font-weight: 800; font-size: 0.9rem; cursor: pointer;
  padding: 0.7rem 1.3rem; border-radius: 999px; border: 1px solid var(--ink); white-space: nowrap;
}
.cc-reject { background: #fff; color: var(--ink); }
.cc-reject:hover { background: #f2f0ec; }
.cc-custom { background: #fff; color: var(--ink); border-color: var(--line); }
.cc-custom:hover { background: #f2f0ec; }
.cc-accept { background: var(--ink); color: #fff; }
.cc-accept:hover { background: #000; }

/* ---------- Cookie dialog ---------- */
.cc-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(15,15,15,0.5); display: grid; place-items: center; padding: 1rem; }
.cc-overlay[hidden] { display: none; }
.cc-banner[hidden] { display: none; }
.cc-dialog { background: #fff; border-radius: 14px; max-width: 620px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.cc-dialog-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; }
.cc-dialog-head h2 { margin: 0; font-size: 1.3rem; }
.cc-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--ink-soft); padding: 0.3rem; }
.cc-close:hover { color: var(--ink); }
.cc-cats { padding: 0.5rem 1.5rem; }
.cc-cat { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.cc-cat:last-child { border-bottom: none; }
.cc-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cc-cat-head h3 { margin: 0; font-size: 1.02rem; }
.cc-cat p { margin: 0.4rem 0 0.5rem; font-size: 0.9rem; color: #2b2b2b; }
.cc-detail { font-size: 0.85rem; color: var(--accent); font-weight: 600; }
.cc-switch { display: inline-flex; align-items: center; gap: 0.6rem; cursor: pointer; }
.cc-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cc-track { width: 42px; height: 24px; border-radius: 999px; background: #cfcac1; position: relative; transition: background 0.18s; flex: none; }
.cc-track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform 0.18s; }
.cc-switch input:checked + .cc-track { background: var(--accent); }
.cc-switch input:checked + .cc-track::after { transform: translateX(18px); }
.cc-switch input:focus-visible + .cc-track { outline: 2px solid var(--accent); outline-offset: 2px; }
.cc-switch.locked .cc-track { background: var(--ink); opacity: 0.5; }
.cc-state { font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); min-width: 64px; }
.cc-dialog-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 1.2rem 1.5rem; border-top: 1px solid var(--line); position: sticky; bottom: 0; background: #fff; }
.cc-dialog-actions .cc-btn { flex: 1; text-align: center; min-width: 130px; }

/* ---------- Print ---------- */
@media print {
  #site-header, #site-footer, .cc-banner, .cc-overlay, .meta-actions, .toc, .note { display: none !important; }
  body { font-size: 12pt; }
  .page { max-width: none; padding: 0; }
  .legal-body section { break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
}

@media (max-width: 640px) {
  .cc-banner-inner { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
}

/* ---------- Klikbart kort (link) ---------- */
a.card { text-decoration: none; color: inherit; }
a.card:hover .card-name { text-decoration: underline; text-underline-offset: 2px; }
.filters .filter { text-decoration: none; }

/* ---------- Produktside (PDP) ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.crumbs a { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink); }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.pdp-media { background: var(--tile); border-radius: var(--radius); aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden; }
.pdp-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-media .card-icon { width: 46%; color: #2a2723; opacity: 0.55; }
.pdp-info { padding-top: 0.4rem; }
.pdp-badge { display: inline-block; background: var(--ink); color: #fff; font-size: 0.8rem; font-weight: 800; padding: 0.32rem 0.7rem; border-radius: 6px; margin-bottom: 0.9rem; }
.pdp-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin: 0 0 0.7rem; }
.pdp-price { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.1rem; }
.pdp-price .was { color: var(--sale); font-weight: 600; text-decoration: line-through; margin-left: 0.5rem; font-size: 1.05rem; }
.pdp-meta { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; }
.pdp-meta .card-rating { font-size: 0.95rem; }
.pdp-iconbtn { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: transform 0.12s; }
.pdp-iconbtn:hover { transform: scale(1.06); }
.pdp-iconbtn.wish.active svg { fill: var(--sale); stroke: var(--sale); }
.pdp-desc { color: #2b2b2b; line-height: 1.7; margin: 0 0 1.4rem; }
.pdp-spec { list-style: none; padding: 0; margin: 0 0 1.6rem; border-top: 1px solid var(--line); }
.pdp-spec li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.pdp-spec li span:first-child { color: var(--ink-soft); }
.pdp-add { width: 100%; background: var(--ink); color: #fff; border: none; cursor: pointer; font-family: inherit; font-weight: 800; font-size: 1.02rem; padding: 1rem 1.2rem; border-radius: 999px; transition: background 0.15s; }
.pdp-add:hover { background: #000; }
.pdp-trust { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.pdp-missing { padding: 3rem 0; text-align: center; }
.pdp-missing a { color: var(--accent); }
@media (max-width: 820px) { .pdp-grid { grid-template-columns: 1fr; } .pdp-media { max-width: 460px; } }

/* ---------- Kategoriside ---------- */
.cat-hero #category-switch { margin-top: 1.2rem; }

/* ---------- Ønskeliste-panel ---------- */
.wish-overlay { position: fixed; inset: 0; z-index: 115; background: rgba(15,15,15,0.5); display: grid; justify-items: end; }
.wish-overlay[hidden] { display: none; }
.wish-panel { background: #fff; width: min(460px, 100%); height: 100%; overflow-y: auto; box-shadow: -16px 0 50px rgba(0,0,0,0.25); }
.wish-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; }
.wish-head h2 { margin: 0; font-size: 1.2rem; }
.wish-body { padding: 1.3rem 1.4rem; }
.wish-body .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.wish-empty { color: var(--ink-soft); line-height: 1.6; }
