:root{
  color-scheme:dark;
  --store-bg:#071018;
  --store-bg-deep:#04080d;
  --store-panel:rgba(14,24,35,.82);
  --store-panel-strong:#101d2a;
  --store-line:rgba(170,194,215,.14);
  --store-text:#f6f8fb;
  --store-muted:#a0b0bf;
  --store-accent:#ff6437;
  --store-accent-soft:#ff8c62;
  --store-good:#46d18f;
  --store-shadow:0 28px 80px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.store-body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at top left,rgba(255,100,55,.14),transparent 30rem),
    radial-gradient(circle at top right,rgba(70,209,143,.1),transparent 28rem),
    linear-gradient(180deg,var(--store-bg),var(--store-bg-deep) 72%);
  color:var(--store-text);
  font:15px/1.65 "Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}

.translate-control{
  position:fixed;
  z-index:1000;
  top:16px;
  right:18px;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:7px 12px;
  border:1px solid var(--store-line);
  border-radius:14px;
  background:rgba(7,16,24,.9);
  box-shadow:0 12px 34px rgba(0,0,0,.3);
  backdrop-filter:blur(16px);
}

.translate-control > span{
  color:var(--store-muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.translate-control .goog-te-gadget{
  color:transparent;
  height:28px;
  font-size:0;
}

.translate-control .goog-te-gadget-simple{
  display:flex;
  align-items:center;
  min-height:28px;
  padding:3px 8px;
  border:0;
  border-radius:9px;
  background:#142330;
}

.translate-control .goog-te-gadget-simple span{
  color:var(--store-text) !important;
  font-size:12px;
  font-weight:700;
}

.translate-control .goog-te-gadget-icon{display:none}

.store-hero{
  position:relative;
  min-height:clamp(420px,56vw,760px);
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom:1px solid var(--store-line);
  background:var(--shop-banner,linear-gradient(135deg,#182635,#0a121b)) center/cover no-repeat;
}

.store-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(100deg,rgba(3,7,10,.96),rgba(3,7,10,.72) 48%,rgba(3,7,10,.35) 100%),
    linear-gradient(0deg,var(--store-bg-deep),transparent 42%);
}

.store-hero-overlay{
  position:absolute;
  inset:0;
  opacity:.34;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:38px 38px;
}

.store-hero-inner,
.store-main,
.store-footer{
  width:min(1500px,calc(100% - 56px));
  margin:0 auto;
}

.store-hero-inner{
  position:relative;
  z-index:1;
  padding:88px 0 58px;
}

.store-brand{
  display:flex;
  gap:22px;
  align-items:center;
}

.store-logo{
  width:96px;
  height:96px;
  border-radius:22px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 60px rgba(0,0,0,.42);
}

.store-mark{
  width:84px;
  height:84px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:linear-gradient(135deg,var(--store-accent-soft),#b33616);
  font-size:26px;
  font-weight:900;
  box-shadow:0 18px 55px rgba(255,100,55,.28);
}

.store-kicker{
  font-size:12px;
  letter-spacing:.26em;
  color:#ff9f7d;
  font-weight:800;
}

.store-hero h1{
  margin:6px 0 0;
  max-width:12ch;
  font-size:clamp(42px,6.2vw,92px);
  line-height:.97;
  letter-spacing:-.055em;
}

.store-intro{
  max-width:860px;
  margin:26px 0 0;
  color:#d4dce5;
  font-size:clamp(17px,1.6vw,21px);
}

.store-summary{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
  align-items:center;
}

.store-summary span,
.store-summary a{
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(10,18,28,.58);
  backdrop-filter:blur(12px);
  font-size:13px;
}

.store-summary a{
  border-color:rgba(255,100,55,.46);
  background:rgba(255,100,55,.14);
  font-weight:800;
}

.store-main{
  padding:56px 0 76px;
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin:0 0 26px;
  padding:14px 18px;
  border:1px solid var(--store-line);
  border-radius:16px;
  background:rgba(255,255,255,.04);
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs-current,
.breadcrumbs-sep{
  color:var(--store-muted);
  font-size:13px;
}

.breadcrumbs a{
  color:#ffab8c;
  font-weight:700;
}

.breadcrumbs-current{
  color:var(--store-text);
  font-weight:800;
}

.breadcrumbs-sep{
  color:rgba(255,255,255,.28);
}

.breadcrumbs-inline{
  margin-bottom:30px;
}

.category-nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 34px;
}

.category-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:var(--store-text);
  transition:transform .18s,border-color .18s,background .18s;
}

.category-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(255,100,55,.45);
  background:rgba(255,100,55,.1);
}

.category-chip span{
  font-size:13px;
  font-weight:800;
}

.category-chip strong{
  display:grid;
  place-items:center;
  min-width:24px;
  height:24px;
  padding:0 7px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#ffb195;
  font-size:11px;
  font-weight:900;
}

.category-section + .category-section{
  margin-top:42px;
}

.category-section{
  padding-top:6px;
}

.category-header{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin:0 0 18px;
  padding:0 2px;
}

.category-header h2{
  margin:6px 0 0;
  font-size:32px;
  line-height:1;
  letter-spacing:-.04em;
}

.category-header > span{
  padding:8px 12px;
  border:1px solid var(--store-line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--store-muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,340px));
  gap:24px;
  justify-content:start;
}

.product-card{
  overflow:hidden;
  border:1px solid var(--store-line);
  border-radius:24px;
  background:linear-gradient(180deg,rgba(18,31,44,.96),rgba(12,22,31,.98));
  box-shadow:var(--store-shadow);
  transition:transform .2s,border-color .2s,box-shadow .2s;
}

.product-card:hover{
  transform:translateY(-5px);
  border-color:rgba(255,255,255,.2);
  box-shadow:0 32px 90px rgba(0,0,0,.34);
}

.product-card-link{
  display:block;
}

.product-image-wrap{
  position:relative;
  aspect-ratio:4/3;
  background:#08111a;
  overflow:hidden;
}

.product-image-wrap::before,
.product-image-wrap::after{
  content:"";
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  width:13%;
  background:#08111a;
  pointer-events:none;
}

.product-image-wrap::before{left:0}
.product-image-wrap::after{right:0}

.product-image-fill{
  position:absolute;
  inset:-2px;
  z-index:0;
  background:
    radial-gradient(circle at center,rgba(255,100,55,.12),transparent 50%),
    linear-gradient(135deg,#0d1822,#08111a);
}

.product-image{
  position:absolute;
  inset:0;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  background:#08111a;
  transition:transform .32s;
  padding:0;
}

.product-card:hover .product-image{transform:scale(1.03)}

.product-placeholder{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:grid;
  place-content:center;
  text-align:center;
  background:
    radial-gradient(circle at center,rgba(255,100,55,.18),transparent 42%),
    linear-gradient(135deg,#182636,#08111a);
}

.product-placeholder span{
  font-size:58px;
  font-weight:950;
  letter-spacing:-.08em;
}

.product-placeholder small{
  color:var(--store-muted);
  letter-spacing:.14em;
}

.availability{
  position:absolute;
  z-index:3;
  left:14px;
  top:14px;
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
  backdrop-filter:blur(12px);
}

.availability.available{
  background:rgba(34,155,97,.9);
  color:#effff6;
}

.availability.unavailable{
  background:rgba(42,47,55,.88);
  color:#cad0d7;
}

.product-body{padding:22px}

.product-meta{
  font-size:11px;
  color:#97a5b3;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.product-body h2{
  margin:7px 0 10px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.03em;
}

.product-body p{
  margin:0;
  color:#b9c4ce;
  min-height:52px;
}

.product-footer{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(170,194,215,.1);
}

.product-footer strong{
  font-size:26px;
  white-space:nowrap;
  letter-spacing:-.03em;
}

.group-price{
  margin-top:2px;
  color:var(--store-good);
  font-size:12px;
  font-weight:800;
  line-height:1.35;
}

.store-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 15px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--store-accent-soft),#cf431b);
  font-size:13px;
  font-weight:850;
  text-align:center;
  box-shadow:0 16px 35px rgba(255,100,55,.2);
}

.store-button.secondary{
  background:rgba(255,255,255,.05);
  color:var(--store-text);
  box-shadow:none;
}

.store-button.disabled{
  pointer-events:none;
  background:#25313d;
  color:#92a0ad;
  box-shadow:none;
}

.product-actions{
  padding:0 22px 22px;
}

.store-empty{
  width:min(720px,calc(100% - 36px));
  margin:12vh auto;
  text-align:center;
  padding:46px;
  border:1px solid var(--store-line);
  border-radius:28px;
  background:var(--store-panel);
  box-shadow:var(--store-shadow);
}

.store-empty .store-mark{margin:0 auto 18px}
.store-empty h1,.store-empty h2{margin:0 0 8px}
.store-empty p{color:var(--store-muted)}

.store-footer{
  display:flex;
  gap:18px;
  justify-content:space-between;
  padding:26px 0 40px;
  border-top:1px solid var(--store-line);
  color:var(--store-muted);
}

.store-footer strong{color:var(--store-text)}

.product-page-shell{
  width:min(1400px,calc(100% - 48px));
  margin:0 auto;
  padding:48px 0 72px;
}

.product-detail-hero{
  display:grid;
  grid-template-columns:minmax(320px,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:stretch;
}

.product-detail-media,
.detail-panel{
  border:1px solid var(--store-line);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(18,31,44,.96),rgba(12,22,31,.98));
  box-shadow:var(--store-shadow);
}

.product-detail-media{
  position:relative;
  min-height:560px;
  overflow:hidden;
}

.product-detail-media::before,
.product-detail-media::after{
  content:"";
  position:absolute;
  z-index:3;
  top:0;
  bottom:0;
  width:13%;
  background:#08111a;
  pointer-events:none;
}

.product-detail-media::before{left:0}
.product-detail-media::after{right:0}

.product-detail-media-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center,rgba(255,100,55,.18),transparent 40%),
    linear-gradient(135deg,#132332,#08111a);
}

.detail-placeholder{
  z-index:1;
}

.product-detail-image{
  position:absolute;
  inset:0;
  z-index:2;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  padding:0;
}

.product-detail-copy{
  display:grid;
  align-content:center;
  gap:18px;
  padding:20px 0;
}

.back-link{
  color:#ffab8c;
  font-weight:700;
}

.product-detail-copy h1{
  margin:0;
  font-size:clamp(42px,5vw,84px);
  line-height:.96;
  letter-spacing:-.055em;
}

.product-detail-lead{
  margin:0;
  max-width:58ch;
  color:#d3dce6;
  font-size:18px;
}

.detail-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.detail-pills span{
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(10,18,28,.56);
  color:#dbe4ed;
  font-size:13px;
}

.detail-price-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
}

.detail-price-row strong{
  font-size:36px;
  letter-spacing:-.04em;
}

.detail-share-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  padding-top:4px;
}

.detail-share-label{
  color:var(--store-muted);
  font-size:13px;
  font-weight:700;
}

.facebook-share-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:44px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  background:#1877f2;
  color:#fff;
  font-size:13px;
  font-weight:850;
  box-shadow:0 14px 34px rgba(24,119,242,.24);
  transition:transform .18s,filter .18s,box-shadow .18s;
}

.facebook-share-button:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
  box-shadow:0 18px 40px rgba(24,119,242,.32);
}

.facebook-share-button:focus-visible{
  outline:3px solid rgba(255,255,255,.75);
  outline-offset:3px;
}

.facebook-share-button svg{
  width:20px;
  height:20px;
  flex:0 0 auto;
  fill:currentColor;
}

.product-detail-body{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  margin-top:26px;
}

.detail-panel{
  padding:24px;
}

.detail-panel h2{
  margin:0 0 14px;
  font-size:22px;
}

.detail-panel p{
  margin:0;
  color:#c6d0db;
}

.detail-specs{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:10px 14px;
  margin:0;
}

.detail-specs dt{
  color:var(--store-muted);
}

.detail-specs dd{
  margin:0;
}

@media (min-width:1600px){
  .product-grid{
    grid-template-columns:repeat(4,minmax(280px,340px));
  }
}

@media (max-width:900px){
  .store-hero-inner,
  .store-main,
  .store-footer{
    width:min(100% - 34px,1500px);
  }
  .store-hero{
    min-height:400px;
  }
  .product-page-shell{
    width:min(100% - 32px,1400px);
  }
  .product-detail-hero,
  .product-detail-body{
    grid-template-columns:1fr;
  }
  .product-detail-media{
    min-height:440px;
  }
  .category-header{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:640px){
  .translate-control{
    top:10px;
    right:10px;
    max-width:calc(100% - 20px);
  }
  .translate-control > span{display:none}
  .store-hero{
    min-height:350px;
  }
  .store-hero-inner,
  .store-main,
  .store-footer{
    width:min(100% - 24px,1500px);
  }
  .store-hero-inner{
    padding:64px 0 42px;
  }
  .store-brand{
    align-items:flex-start;
    gap:16px;
  }
  .store-logo,
  .store-mark{
    width:64px;
    height:64px;
    border-radius:16px;
  }
  .store-hero h1{
    font-size:40px;
  }
  .store-intro{
    font-size:16px;
  }
  .product-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .product-footer{
    flex-direction:column;
    align-items:stretch;
  }
  .product-actions{
    padding:0 18px 18px;
  }
  .store-footer{
    display:grid;
    gap:2px;
  }
  .store-empty{
    padding:30px 22px;
  }
  .product-page-shell{
    width:min(100% - 22px,1400px);
    padding:24px 0 48px;
  }
  .breadcrumbs li{
    font-size:12px;
  }
  .breadcrumbs{
    padding:12px 14px;
  }
  .category-nav{
    gap:10px;
    margin-bottom:26px;
  }
  .category-chip{
    width:100%;
    justify-content:space-between;
  }
  .product-detail-copy h1{
    font-size:40px;
  }
  .category-header h2{
    font-size:26px;
  }

  .detail-share-row{
    align-items:stretch;
    flex-direction:column;
  }

  .facebook-share-button{
    width:100%;
  }
  .product-detail-media{
    min-height:320px;
  }
  .product-detail-image{
    padding:0;
  }
  .detail-specs{
    grid-template-columns:1fr;
  }
}

/* Marketplace-Link in der Shop-Übersicht */
.product-actions{display:flex;gap:.7rem;flex-wrap:wrap;align-items:center}
.product-actions .store-button{flex:1 1 170px;text-align:center}
.marketplace-button{white-space:nowrap}
