:root{
  --bg:#0d0d0d;
  --panel:#111111;
  --panel2:#0f0f0f;
  --border:#222222;
  --border2:#2a2a2a;
  --text:#f1f1f1;
  --muted:#888888;
  --muted2:#aaaaaa;
  --orange:#f59e0b;
  --gold:#f59e0b;
  --red:#ef4444;
  --blue:#3b82f6;
  --green:#10b981;
  --shadow: 0 8px 32px rgba(0,0,0,.55);
  --shadow-amber: 0 8px 32px rgba(245,158,11,.18);
  --radius:12px;
  --placeholder-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Crect width='100%25' height='100%25' fill='%23111111'/%3E%3Cpath d='M80 560 L260 380 L380 500 L520 340 L720 520 L720 700 L80 700 Z' fill='%23f59e0b' fill-opacity='0.15'/%3E%3Ccircle cx='260' cy='260' r='90' fill='%23f59e0b' fill-opacity='0.2'/%3E%3Ctext x='50%25' y='50%25' fill='%23555555' font-family='Arial' font-size='36' text-anchor='middle' dominant-baseline='middle'%3EIntet billede%3C/text%3E%3C/svg%3E");
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans";
  background: radial-gradient(900px 500px at 10% -5%, rgba(245,158,11,.10), transparent 55%),
              radial-gradient(700px 400px at 90% 0%, rgba(239,68,68,.07), transparent 55%),
              var(--bg);
  color:var(--text);
}


a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 18px}
.section{padding:48px 0}
.section--alt{background: linear-gradient(180deg, transparent, rgba(18,26,46,.55)); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}


.page-pokemon .page-head{
  margin-bottom:24px;
}
.page-pokemon .shop-layout{
  display:grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap:24px;
  align-items:start;
}
.page-pokemon .filters{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.page-pokemon .filters h3{
  margin:0 0 6px;
}
.page-pokemon .toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(18,26,46,.55);
}
.page-pokemon .product-card__body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.page-pokemon .product-card__title{
  margin:0;
}
.page-pokemon .product-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.stock{
  font-size:12px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(52,211,153,.35);
  background: rgba(16,185,129,.15);
  color:#34d399;
}
.stock--out{
  border-color: rgba(248,113,113,.4);
  background: rgba(239,68,68,.15);
  color:#f87171;
}
.page-pokemon .seo-box{
  margin-top:22px;
  padding:16px;
}

@media (max-width: 900px){
  .page-pokemon .shop-layout{
    grid-template-columns: 1fr;
  }
}

.page-product .product-layout{
  display:grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap:24px;
  align-items:start;
}
.page-product .product-media{
  padding:16px;
  position:sticky;
  top:88px;
}
.page-product .product-image{
  height:460px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.page-product .product-info{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.page-product .product-info h1{
  margin:0;
  font-size:clamp(28px, 3vw, 38px);
}
.page-product .product-buy{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.page-product .product-buy__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.page-product .price--xl{
  font-size:28px;
  font-weight:900;
  color:var(--gold);
}
.page-product .accordion{
  padding:6px 0;
}
.page-product .accordion details{
  border-top:1px solid var(--border);
  padding:12px 14px;
}
.page-product .accordion details:first-of-type{
  border-top:none;
}
.page-product .accordion summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}
.page-product .accordion summary::-webkit-details-marker{
  display:none;
}
.page-product .accordion summary::after{
  content:"+";
  float:right;
  color:var(--muted2);
}
.page-product .accordion details[open] summary::after{
  content:"−";
}
.page-product .accordion .content{
  margin-top:10px;
  color:var(--muted2);
  line-height:1.6;
}
.page-product .list{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:6px;
}
.page-product .section-head{
  margin-top:8px;
}
.page-product [data-related-grid]{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-product .product-card__body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.page-product .product-card__title{
  margin:0;
}
.page-product .product-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

@media (max-width: 1000px){
  .page-product [data-related-grid]{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .page-product .product-layout{
    grid-template-columns: 1fr;
  }
  .page-product .product-media{
    position:static;
  }
  .page-product .product-image{
    height:360px;
  }
}

@media (max-width: 600px){
  .page-product [data-related-grid]{
    grid-template-columns: 1fr;
  }
  .page-product .product-image{
    height:300px;
  }
}

.page-contact .page-head{
  margin-bottom:24px;
}
.page-payment .page-head{
  margin-bottom:24px;
}
.page-contact .contact-layout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:start;
}
.page-contact .contact-card{
  padding:20px;
  min-width:0;
}
.page-contact .contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
}
.page-contact .field{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:700;
}
.page-payment .field{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:700;
}
.page-contact .field input,
.page-contact .field textarea,
.page-contact .field select{
  width:100%;
  max-width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(11,16,32,.6);
  color:var(--text);
  font: inherit;
}
.page-payment .field input{
  width:100%;
  max-width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(11,16,32,.6);
  color:var(--text);
  font: inherit;
}
.page-contact .field input::placeholder,
.page-contact .field textarea::placeholder{
  color:rgba(229,231,235,.6);
}
.page-payment .field input::placeholder{
  color:rgba(229,231,235,.6);
}
.page-contact .form-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.page-payment .form-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}
.page-payment .contact-form{
  gap:16px;
}
.page-payment h3{
  margin:6px 0 2px;
}
.page-contact .contact-info{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}
.page-contact .contact-info h3{
  margin:0;
}
.page-contact .info-list{
  display:grid;
  gap:12px;
}
.page-contact .info-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  margin-bottom:4px;
}
.page-contact .contact-note{
  border-top:1px solid var(--border);
  padding-top:12px;
}

@media (max-width: 980px){
  .page-contact .contact-layout{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .page-contact .contact-layout{
    gap:16px;
  }
  .page-contact .form-actions{
    flex-direction:column;
    align-items:flex-start;
  }
  .page-contact .contact-card,
  .page-contact .contact-info{
    padding:16px;
  }
}

.top-banner{
  width:100%;
  border-bottom:1px solid var(--border);
  background: rgba(18,26,46,.65);
  overflow:hidden;
}
.top-banner img{
  display:block;
  width:100%;
  aspect-ratio: 16 / 9;
  height:auto;
  max-height: clamp(220px, 24vw, 420px);
  object-fit:cover;
  object-position:center;
}

@media (min-width: 1100px){
  .top-banner img{
    max-height: clamp(260px, 22vw, 520px);
  }
}

.grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card{
  background: rgba(17,17,17,.92);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow);
}

.muted{color:var(--muted)}
.small{font-size:12px}
.link{color:var(--muted2)}
.link:hover{color:var(--orange)}

.site-header{
  position:sticky;top:0;z-index:30;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:8px;
  font-weight:900; letter-spacing:.5px;
  text-decoration:none;
}
.brand-bolt{
  font-size:18px;
  color:var(--orange);
  line-height:1;
}
.brand-mark{font-size:19px; color:var(--text); letter-spacing:.02em;}
.brand-mark--alt{
  color:var(--orange);
  font-size:13px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:2px 7px;
  background: rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.25);
  border-radius:6px;
  margin-left:2px;
}

.nav{display:flex; gap:4px; flex-wrap:wrap}
.nav a{padding:8px 12px; border-radius:10px; color:var(--muted2); font-weight:600; font-size:14px; transition:color .15s,background .15s;}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.05)}
.nav a.active{color:var(--orange); background: rgba(245,158,11,.10); border:1px solid rgba(245,158,11,.2)}
.muted-link{opacity:.9}

.nav-toggle{display:none}
.nav-toggle-btn{
  display:none;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(18,26,46,.75);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
}
.nav-toggle-btn:hover{border-color: rgba(255,138,0,.5)}

.header-actions{display:flex; gap:10px; align-items:center}
.icon-btn{
  position:relative;
  border:1px solid var(--border);
  background: rgba(18,26,46,.75);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.cart-pop{
  animation: cart-pop .35s ease;
}
.cart-pop .badge{
  animation: badge-pop .35s ease;
}
@keyframes cart-pop{
  0%{transform: scale(1)}
  40%{transform: scale(1.08)}
  100%{transform: scale(1)}
}
@keyframes badge-pop{
  0%{transform: scale(1)}
  35%{transform: scale(1.2)}
  100%{transform: scale(1)}
}
.icon-btn:hover{border-color: rgba(255,138,0,.5)}
.badge{
  position:absolute; top:-6px; right:-6px;
  background: var(--orange);
  color:#0b1020;
  border-radius:999px;
  padding:2px 6px;
  font-weight:900;
  font-size:12px;
  border:2px solid var(--bg);
}

.hero{
  padding:56px 0 18px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.hero-copy{
  padding:24px 0;
}
.hero h1{font-size:44px; margin:0 0 10px}
.hero p{margin:0 0 18px; color:var(--muted2); font-size:16px; line-height:1.5}

.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, opacity .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--small{padding:10px 12px; border-radius:12px; font-weight:900}
.btn--full{width:100%}

.btn--primary{background: linear-gradient(135deg, #fbbf24, var(--orange)); color:#0d0d0d; font-weight:900;}
.btn--primary:hover{box-shadow: var(--shadow-amber);}
.btn--blue{background: linear-gradient(135deg, #60a5fa, var(--blue)); color:#fff}
.btn--red{background: linear-gradient(135deg, #f87171, var(--red)); color:#fff}
.btn--success{background: linear-gradient(135deg, #34d399, #10b981); color:#022015}
.btn--ghost{background: transparent; border-color: var(--border2); color: var(--muted2)}
.btn--ghost:hover{border-color: rgba(245,158,11,.4); color:var(--text);}


.usp-row{display:flex; gap:10px; flex-wrap:wrap}
.usp{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(18,26,46,.65);
  font-weight:800;
  color:rgba(229,231,235,.95)
}
.usp-ico{filter: drop-shadow(0 6px 12px rgba(0,0,0,.35))}

.hero-card{
  padding:16px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(18,26,46,.9), rgba(15,23,42,.75));
  border:1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.hero-card__top{display:flex; gap:8px; margin-bottom:12px}
.pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:5px 11px;
  border-radius:999px;
  border:1px solid rgba(245,158,11,.25);
  background: rgba(245,158,11,.10);
  font-weight:800;
  font-size:11px;
  letter-spacing:.04em;
  color:var(--orange);
}
.pill--gold{
  border-color: rgba(245,158,11,.3);
  background: rgba(245,158,11,.12);
  color:var(--gold);
}
.pill--red{
  border-color: rgba(239,68,68,.3);
  background: rgba(239,68,68,.12);
  color:var(--red);
}
.pill--green{
  border-color: rgba(16,185,129,.3);
  background: rgba(16,185,129,.12);
  color:var(--green);
}
.pill--purple{
  border-color: rgba(139,92,246,.3);
  background: rgba(139,92,246,.12);
  color:#a78bfa;
}
.hero-card__grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:10px;
}
.mini-product{
  display:flex; gap:10px;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(11,16,32,.45);
}
.mini-img{
  width:44px; height:44px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(255,138,0,.25), rgba(59,130,246,.18));
  border:1px solid rgba(255,255,255,.06);
}
.mini-title{font-weight:900; font-size:12px}
.mini-price{color:var(--gold); font-weight:900; font-size:12px}

.news-section .section-head{
  margin-bottom:18px;
}
.news-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.news-section{
  position:relative;
}
.news-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(13,13,13,.72);
}
.news-section .container{
  position:relative;
  z-index:1;
}
.news-controls{
  display:flex;
  gap:8px;
}
.news-carousel{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: minmax(320px, 1fr);
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}
.news-carousel::-webkit-scrollbar{
  height:8px;
}
.news-carousel::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.12);
  border-radius:999px;
}
.news-card{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  scroll-snap-align:start;
}
.news-card__img{
  height:220px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background-size:cover;
  background-position:center;
}
.news-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.news-card h3{
  margin:0;
}

@media (min-width: 900px){
  .news-carousel{
    grid-auto-columns: minmax(380px, 1fr);
  }
  .news-card__img{
    height:260px;
  }
}

.mini-img,
.product-card__img,
.cat__img,
.preorder-card__img,
.product-image{
  background-image: var(--placeholder-img);
  background-size: cover;
  background-position: center;
}

.product-card__img{
  display:block;
  height:180px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cat__img{
  height:120px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
}

.preorder-card__img{
  height:160px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
}

.product-image{
  height:380px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cart{
  position:fixed;
  inset:0;
  z-index:200;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.cart.is-open{
  opacity:1;
  pointer-events:auto;
}
.cart__backdrop{
  position:absolute;
  inset:0;
  background: rgba(4,8,16,.6);
}
.cart__panel{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(380px, 92vw);
  background: rgba(18,26,46,.95);
  border-left:1px solid var(--border);
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.cart__items{
  display:flex;
  flex-direction:column;
  gap:12px;
  overflow:auto;
  padding-right:6px;
  max-height:55vh;
}
.cart__footer{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.cart__total{
  margin-top:6px;
}
.cart-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(11,16,32,.45);
}
.cart-item__info{display:flex; flex-direction:column; gap:6px}
.cart-item__title{font-weight:800}
.cart-item__price{color:var(--gold); font-weight:900}
.cart-item__actions{
  display:flex;
  align-items:center;
  gap:6px;
}
.qty-btn,
.remove-btn{
  border:1px solid rgba(255,255,255,.1);
  background: rgba(18,26,46,.75);
  color:var(--text);
  border-radius:10px;
  padding:6px 8px;
  cursor:pointer;
  font-weight:800;
}
.remove-btn{color:#ffb4a2}
.qty-value{min-width:18px; text-align:center; font-weight:900}
.cart-empty{padding:12px; text-align:center}

.checkout-items{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:12px;
}
.checkout-item{
  display:grid;
  grid-template-columns: 64px 1fr auto auto;
  gap:12px;
  align-items:center;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(11,16,32,.45);
}
.checkout-item__img{
  width:64px;
  height:64px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background-image: var(--placeholder-img);
  background-size: cover;
  background-position: center;
}
.checkout-item__title{font-weight:800}
.checkout-item__price{color:var(--gold); font-weight:900}
.checkout-item__actions{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
}
.checkout-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  font-weight:900;
}

/* ── Product card name ── */
.product-card__title{
  margin:0;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  color:var(--text);
}
.product-card__body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.product-card__meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
}
.price{
  color:var(--orange);
  font-weight:900;
  font-size:17px;
}

/* ── Hero redesign ── */
.hero-tagline{
  font-size: clamp(38px, 5vw, 64px);
  font-weight:900;
  line-height:1;
  margin:0 0 16px;
  letter-spacing:-.02em;
}
.hero-tagline span{color:var(--orange);}
.hero-sub{
  font-size:16px;
  color:var(--muted2);
  line-height:1.6;
  margin:0 0 24px;
  max-width:460px;
}

/* ── Section heading ── */
.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-bottom:24px;
  gap:12px;
}
.section-head h2{
  margin:0;
  font-size:clamp(20px, 2.5vw, 28px);
  font-weight:900;
  letter-spacing:-.01em;
}
.section-head .section-link{
  font-size:13px;
  color:var(--orange);
  font-weight:700;
  white-space:nowrap;
}
.section-head .section-link:hover{text-decoration:underline;}

/* ── Amber accent bar on cards ── */
.card--featured{
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 0 0 1px rgba(245,158,11,.15), var(--shadow);
}

/* ── SEO box ── */
.seo-box{
  padding:20px 24px;
  line-height:1.7;
  color:var(--muted);
  font-size:14px;
}
.seo-box p{margin:0 0 12px}
.seo-box p:last-child{margin:0}

/* ── Footer amber bar ── */
.footer-amber-bar{
  height:3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.site-footer{
  margin-top:32px;
  padding:28px 0 0;
  border-top:1px solid var(--border);
  background: linear-gradient(180deg, rgba(17,17,17,.4), rgba(13,13,13,.95));
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-brand{
  font-weight:900;
  letter-spacing:.5px;
  font-size:18px;
  color:var(--orange);
  margin-bottom:8px;
}
.footer-inner{
  padding-bottom:28px;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{
  padding:6px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(18,26,46,.6);
  color:var(--text);
  font-weight:700;
}
.footer-links a:hover{
  color:var(--orange);
  border-color: rgba(255,138,0,.35);
}

@media (max-width: 860px){
  .container{padding:0 20px}
  .header-inner{
    flex-wrap:wrap;
    padding:18px 20px;
  }
  .hero-inner{grid-template-columns: 1fr}
  .hero-card{order:2}
  .hero-copy{order:1}
  .nav-toggle-btn{display:inline-flex; order:2}
  .header-actions{order:3; margin-left:auto}
  .nav{
    display:none;
    width:100%;
    margin-top:10px;
    flex-direction:column;
    padding:16px 12px;
    border:1px solid var(--border);
    border-radius:12px;
    background: rgba(18,26,46,.85);
  }
  .nav a{
    width:100%;
    padding:10px 14px;
  }
  .nav-toggle:checked ~ .nav{display:flex}
}

@media (max-width: 600px){
  .container{padding:0 28px}
  .header-inner{padding:22px 22px}
  .nav-toggle-btn,
  .icon-btn{
    padding:12px 14px;
  }
  .top-banner{
    padding:0 28px;
    margin-top:10px;
  }
  .top-banner img{
    border-radius:14px;
  }
  .hero{padding:40px 0 12px}
  .section{padding:40px 0}
  .page-contact .page-head{margin-bottom:18px}
  .news-carousel{
    grid-auto-columns: 80%;
    justify-content:start;
    padding-left:10%;
    padding-right:10%;
    scroll-padding-left:10%;
    scroll-padding-right:10%;
    gap:16px;
  }
  .news-card{
    scroll-snap-align:center;
  }
}

/* ═══════════════════════════════════════════
   ADDITIONS — One Piece, Preorders, Fragt,
   Retur, Cookie Banner, SEO improvements
   ═══════════════════════════════════════════ */

/* ── One Piece page (mirrors pokemon/anime) ── */
.page-onepiece .page-head { margin-bottom:24px; }
.page-onepiece .shop-layout {
  display:grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap:24px;
  align-items:start;
}
.page-onepiece .filters {
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.page-onepiece .filters h3 { margin:0 0 6px; }
.page-onepiece .toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(18,26,46,.55);
}
.page-onepiece .product-card__body {
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.page-onepiece .product-card__title { margin:0; }
.page-onepiece .product-card__meta {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.page-onepiece [data-products-grid] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-onepiece .seo-box { margin-top:22px; padding:16px; }

@media (max-width: 900px) {
  .page-onepiece [data-products-grid] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-onepiece .shop-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-onepiece [data-products-grid] { grid-template-columns: 1fr; }
}


/* ── Info pages (fragt, retur) ── */
.page-info .page-head { margin-bottom:28px; }
.info-layout {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:stretch;
}
.info-card {
  background: rgba(17,17,17,.92);
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
}
.info-card h3 {
  margin:0 0 16px;
  font-size:16px;
  font-weight:800;
  color:var(--orange);
  display:flex;
  align-items:center;
  gap:8px;
}
.info-card ul, .info-card ol {
  margin:0;
  padding-left:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:var(--muted2);
  font-size:14px;
  line-height:1.6;
}
.info-table {
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.info-table th, .info-table td {
  padding:10px 14px;
  border:1px solid var(--border);
  text-align:left;
}
.info-table th {
  background: rgba(245,158,11,.08);
  color:var(--orange);
  font-weight:800;
}
.info-table tr:nth-child(even) td {
  background: rgba(255,255,255,.02);
}
.info-highlight {
  background: rgba(245,158,11,.07);
  border:1px solid rgba(245,158,11,.2);
  border-radius:12px;
  padding:16px 20px;
  font-size:14px;
  color:var(--muted2);
  line-height:1.6;
  margin:20px 0;
}
.info-highlight strong { color:var(--text); }

@media (max-width: 860px) {
  .info-layout { grid-template-columns: 1fr; }
}

/* ── Cookie banner ── */
.cookie-banner {
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:55;
  background: rgba(15,15,15,.97);
  border-top:1px solid rgba(245,158,11,.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding:16px 20px;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,.6);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.is-hidden {
  transform: translateY(110%);
}
.cookie-banner__icon {
  font-size:24px;
  flex-shrink:0;
}
.cookie-banner__text {
  flex:1;
  min-width:200px;
  font-size:13px;
  color:var(--muted2);
  line-height:1.55;
}
.cookie-banner__text a {
  color:var(--orange);
  text-decoration:underline;
}
.cookie-banner__text strong { color:var(--text); }
.cookie-banner__actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  flex-shrink:0;
}

/* ── Page head (universal) ── */
.page-head {
  padding: 36px 0 0;
}
.page-head h1 {
  margin:0 0 8px;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight:900;
  letter-spacing:-.02em;
}
.page-head p {
  margin:0;
  color:var(--muted2);
  font-size:15px;
  max-width:560px;
  line-height:1.6;
}

/* ── Filter inputs ── */
.filter-input {
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(11,16,32,.6);
  color:var(--text);
  font:inherit;
  font-size:13px;
}
.filter-input:focus {
  outline:none;
  border-color: rgba(245,158,11,.4);
}
.filter-checkbox {
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  font-size:13px;
  color:var(--muted2);
}
.filter-checkbox input[type=checkbox] {
  accent-color:var(--orange);
  width:16px; height:16px;
  cursor:pointer;
}
.filter-label {
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  margin-bottom:6px;
}
.filter-select {
  padding:8px 10px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(11,16,32,.6);
  color:var(--text);
  font:inherit;
  font-size:13px;
  cursor:pointer;
}
.filter-select:focus { outline:none; border-color:rgba(245,158,11,.4); }

/* ── Toolbar results count ── */
.results-count {
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}
.results-count strong { color:var(--muted2); }

/* ── Rifbound page (mirrors pokemon) ── */
.page-rifbound .page-head { margin-bottom:24px; }
.page-rifbound .shop-layout {
  display:grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap:24px;
  align-items:start;
}
.page-rifbound .filters {
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.page-rifbound .toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(18,26,46,.55);
}
.page-rifbound [data-products-grid] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .page-rifbound [data-products-grid] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-rifbound .shop-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-rifbound [data-products-grid] { grid-template-columns: 1fr; }
}


/* ── MobilePay badge ── */
.mobilepay-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:10px;
  border:1px solid rgba(89,148,255,.3);
  background: rgba(89,148,255,.08);
  color:#93b4ff;
  font-size:13px;
  font-weight:800;
}
.payment-icons {
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:10px;
}
.payment-icon {
  padding:5px 10px;
  border-radius:8px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

/* ── Trust bar ── */
.trust-bar {
  background: rgba(17,17,17,.65);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:12px 0;
}
.trust-bar__inner {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
.trust-item {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:var(--muted2);
}
.trust-item__ico { font-size:16px; }

/* ── Grid categories enhanced ── */
.grid--cats {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:16px;
}
.cat {
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(17,17,17,.8);
  transition: border-color .15s, transform .15s;
  text-decoration:none;
}
.cat:hover {
  border-color: rgba(245,158,11,.35);
  transform: translateY(-2px);
}
.cat__title {
  font-weight:800;
  font-size:13px;
  text-align:center;
  color:var(--text);
}

/* ── Empty state ── */
.empty-state {
  text-align:center;
  padding:48px 20px;
  color:var(--muted);
}
.empty-state__icon { font-size:36px; margin-bottom:12px; }
.empty-state p { margin:0; font-size:14px; line-height:1.6; }

/* ── Product detail improvements ── */
.product-tags {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.tag {
  padding:4px 10px;
  border-radius:8px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size:12px;
  color:var(--muted2);
  font-weight:700;
}

/* ── Notification toast ── */
.toast {
  position:fixed;
  bottom:80px;
  right:20px;
  z-index:60;
  background: rgba(17,17,17,.95);
  border:1px solid rgba(245,158,11,.3);
  border-radius:12px;
  padding:12px 18px;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(20px);
  opacity:0;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events:none;
  max-width:280px;
}
.toast.is-visible {
  transform: translateY(0);
  opacity:1;
}

/* ── Lazy-load image fade ── */
.lazy-img {
  opacity:0;
  transition: opacity .3s ease;
}
.lazy-img.is-loaded { opacity:1; }

/* ── Amber glow on featured cards ── */
.product-card:hover {
  border-color: rgba(245,158,11,.2);
  transform: translateY(-2px);
  transition: border-color .15s, transform .15s;
}
.product-card {
  transition: border-color .15s, transform .15s;
}

/* ── Back link ── */
.back-link {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
  padding:8px 0;
}
.back-link:hover { color:var(--orange); }
.back-link::before { content:"←"; }

/* ── Divider ── */
.divider {
  height:1px;
  background: var(--border);
  margin:24px 0;
}

/* ── USP icons on product page ── */
.product-usps {
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(11,16,32,.3);
}
.product-usp-item {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--muted2);
}
.product-usp-item span:first-child { font-size:16px; }

/* ═══════════════════════════════════════════
   FIGMA V2 — New & updated components
   ═══════════════════════════════════════════ */

/* ── Announcement bar ── */
.announcement-bar {
  width:100%;
  background: linear-gradient(90deg, rgba(245,158,11,.12), rgba(239,68,68,.06), rgba(245,158,11,.12));
  border-bottom:1px solid rgba(245,158,11,.2);
  padding:9px 18px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  color:var(--muted2);
  letter-spacing:.01em;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.announcement-bar strong { color:var(--text); }



/* ── Footer columns ── */
.footer-col-title {
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
  margin-bottom:14px;
}
.footer-col-links {
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-col-links a {
  font-size:14px;
  font-weight:600;
  color:var(--muted2);
  transition:color .15s;
}
.footer-col-links a:hover { color:var(--orange); }
.footer-about {
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
  margin-top:6px;
  max-width:220px;
}

/* ═══════════════════════════════════════════
   PRODUCT PAGE V2 — pp-* component scope
   ═══════════════════════════════════════════ */

/* ── Main wrapper ── */
.pp-main {
  padding: 12px 0 64px;
}

/* ── Breadcrumb ── */
.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0 20px;
  flex-wrap: wrap;
}
.pp-breadcrumb a {
  color: var(--muted);
  transition: color .12s;
}
.pp-breadcrumb a:hover { color: var(--orange); }
.pp-bc-sep { color: var(--border2); }
.pp-bc-current { color: var(--muted2); font-weight: 600; }

/* ── Two-column layout ── */
.pp-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: 32px;
  align-items: start;
}

/* ── Left: Media ── */
.pp-media {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pp-image-card {
  padding: 20px;
  background: rgba(15,15,15,.9);
  border: 1px solid rgba(245,158,11,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
  transition: border-color .2s, box-shadow .2s;
}
.pp-image-card:hover {
  border-color: rgba(245,158,11,.28);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), var(--shadow-amber);
}
.pp-image {
  height: 440px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: var(--placeholder-img);
}
.pp-usps {
  margin-top: 0;
}

/* ── Right: Info ── */
.pp-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badges */
.pp-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 26px;
}
.pp-cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: var(--muted2);
}

/* Title */
.pp-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* Subtitle */
.pp-subtitle {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* Price + stock row */
.pp-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pp-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -.02em;
  line-height: 1;
}
/* Stock pill variants (used via data-pp-stock) */
.pp-stock {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.pp-stock--ok {
  border: 1px solid rgba(52,211,153,.35);
  background: rgba(16,185,129,.12);
  color: #34d399;
}
.pp-stock--low {
  border: 1px solid rgba(251,191,36,.4);
  background: rgba(245,158,11,.12);
  color: #fbbf24;
}
.pp-stock--out {
  border: 1px solid rgba(248,113,113,.4);
  background: rgba(239,68,68,.12);
  color: #f87171;
}

/* Buy box */
.pp-buy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(15,15,15,.8);
  border: 1px solid rgba(255,255,255,.07);
}
.pp-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pp-qty-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pp-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
}
.pp-qty-btn {
  background: rgba(255,255,255,.04);
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background .12s, color .12s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pp-qty-btn:hover {
  background: rgba(245,158,11,.15);
  color: var(--orange);
}
.pp-qty-btn:active { background: rgba(245,158,11,.25); }
.pp-qty-input {
  width: 52px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border2);
  border-right: 1px solid var(--border2);
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  height: 40px;
  outline: none;
  -moz-appearance: textfield;
}
.pp-qty-input::-webkit-inner-spin-button,
.pp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.pp-add-btn {
  height: 52px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 12px;
  letter-spacing: .02em;
}
.pp-add-btn:not(:disabled):hover {
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.pp-add-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* Accordion */
.pp-accordion {
  padding: 4px 0;
  background: rgba(15,15,15,.7);
  border: 1px solid rgba(255,255,255,.06);
}
.pp-accordion details {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.pp-accordion details:first-of-type { border-top: none; }
.pp-accordion summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  list-style: none;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  color: var(--muted2);
  transition: color .12s;
}
.pp-accordion summary:hover { color: var(--text); }
.pp-accordion details[open] summary { color: var(--text); }
.pp-accordion summary::-webkit-details-marker { display: none; }
.pp-accordion summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}
.pp-accordion details[open] summary::after {
  content: "−";
}
.pp-accordion .content {
  padding: 0 18px 16px;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.65;
}
.pp-accordion .list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

/* Related products */
.pp-related { margin-top: 4px; }
.pp-related-head {
  margin: 0 0 16px;
}
.pp-related-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}
.pp-related [data-related-grid] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* SEO box */
.pp-seo {
  margin-top: 40px;
  padding: 20px;
}

/* ── Responsive: tablet ── */
@media (max-width: 960px) {
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pp-media {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .pp-usps {
    align-self: center;
  }
  .pp-related [data-related-grid] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 640px) {
  .pp-image { height: 300px; }
  .pp-media {
    grid-template-columns: 1fr;
  }
  .pp-usps { display: none; }  /* bar already in announcement */
  .pp-title { font-size: 26px; }
  .pp-price { font-size: 28px; }
  .pp-related [data-related-grid] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .pp-related [data-related-grid] {
    grid-template-columns: 1fr;
  }
}
