:root{
  --bg:#f3f3f3;
  --surface:#ffffff;
  --text:#111111;
  --muted:rgba(0,0,0,.58);
  --line:rgba(0,0,0,.08);
  --blue:#0078ff;
  --shadow:0 18px 46px rgba(0,0,0,.10);
  --shadow-soft:0 8px 20px rgba(0,0,0,.08);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-pill:999px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

img{
  max-width:100%;
  display:block;
}

button,
select,
input{
  font:inherit;
}

a{
  color:inherit;
  text-decoration:none;
}

/* =========================
   HEADER
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:300;
  padding:18px 26px 0;
  pointer-events:none;
}

.topbar-shell{
  max-width:1040px;
  margin:0 auto;
}

.topbar{
  min-height:52px;
  background:rgba(255,255,255,.97);
  border-radius:28px;
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 14px;
  pointer-events:auto;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.brand-link{
  flex-shrink:0;
}

.brand-badge{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:14px;
}

.brand-badge img{
  width:44px;
  height:44px;
  object-fit:contain;
}


.top-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.cart-button{
  border:none;
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.cart-button:hover{
  background:#000;
}

.cart-button span{
  display:inline-grid;
  place-items:center;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:12px;
  font-weight:700;
}

/* =========================
   PAGE
========================= */

.page-shop{
  width:100%;
  min-height:100vh;
}

/* =========================
   HERO
========================= */

.hero-stage{
  width:100%;
  padding:0 26px;
  margin-top:-14px;
}

.hero-frame{
  max-width:1240px;
  margin:0 auto;
}

.hero-artwork{
  width:100%;
  min-height:620px;
  border-radius:0 0 26px 26px;
  overflow:hidden;
  background:#ddd;
}

.hero-image{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  object-position:center;
}

/* =========================
   FILTERS
========================= */

.shop-filters-section{
  width:100%;
  padding:14px 26px 0;
}

..filter-wrap{
  max-width:1120px;
  margin:0 auto;
  display:flex;
  justify-content:center;
}

.filter-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.filter-chip{
  border:none;
  border-radius:999px;
  padding:10px 16px;
  background:#111;
  color:#fff;
  font-weight:700;
  font-size:15px;
  line-height:1;
  cursor:pointer;
  transition:transform .18s ease, opacity .18s ease, background .18s ease;
}

.filter-chip:hover{
  transform:translateY(-1px);
}

.filter-chip.active{
  background:#111;
  color:#fff;
}

.filter-chip:not(.active){
  opacity:.9;
}

/* =========================
   CLAIM
========================= */

.shop-claim-section{
  width:100%;
  padding:26px 26px 12px;
}

.shop-claim{
  max-width:1120px;
  margin:0 auto;
  text-align:center;
}

.claim-icon{
  margin:0 0 8px;
  font-size:30px;
  line-height:1;
}

.shop-claim h1{
  margin:0;
  font-size:clamp(28px, 3vw, 52px);
  line-height:1.04;
  font-weight:700;
}

/* =========================
   GRID
========================= */

.shop-grid-section{
  width:100%;
  padding:38px 26px 40px;
}

.product-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:46px 34px;
}

.product-card{
  background:transparent;
  border:none;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
  transition:transform .18s ease;
}

.product-card:hover{
  transform:translateY(-2px);
}

.product-image-wrap{
  position:relative;
  overflow:hidden;
  background:#ededed;
  border-radius:30px;
  aspect-ratio:16 / 9.6;
}

.product-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.product-card:hover .product-image{
  transform:scale(1.012);
}

.product-badge{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  background:rgba(255,255,255,.96);
  color:#111;
  border-radius:999px;
  padding:10px 14px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.26em;
  text-transform:uppercase;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.product-body{
  padding:16px 0 0;
}

.product-type{
  margin:0 0 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--muted);
}

.product-title{
  margin:0;
  font-size:26px;
  line-height:1.08;
  font-weight:700;
}

.product-meta{
  margin:10px 0 0;
  font-size:15px;
  line-height:1.5;
  color:rgba(0,0,0,.68);
  max-width:86%;
}

.product-footer{
  margin-top:14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.product-price{
  font-size:18px;
  line-height:1.1;
  font-weight:700;
  color:var(--blue);
  padding-top:4px;
}

.secondary-btn{
  border:none;
  border-radius:999px;
  padding:12px 18px;
  background:#111;
  color:#fff;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease;
}

.secondary-btn:hover{
  background:#000;
  transform:translateY(-1px);
}

/* =========================
   MODAL
========================= */

.modal.hidden{
  display:none;
}

.modal{
  position:fixed;
  inset:0;
  z-index:500;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.36);
}

.modal-panel{
  position:relative;
  width:min(1180px, calc(100vw - 50px));
  margin:42px auto;
  background:#fff;
  border-radius:34px;
  box-shadow:0 30px 70px rgba(0,0,0,.22);
  overflow:hidden;
  z-index:1;
}

.modal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:5;
}

.modal-content{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  min-height:650px;
}

.modal-image-wrap{
  background:#efefef;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.modal-image-slider{
  position:relative;
  flex:1;
  min-height:560px;
  background:#ececec;
}

.modal-image-slider img,
#modal-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.modal-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(17,17,17,.9);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:5;
}

.modal-nav-left{
  left:14px;
}

.modal-nav-right{
  right:14px;
}

.modal-nav:hover{
  background:#000;
}

.modal-thumbs{
  display:flex;
  gap:10px;
  padding:14px;
  background:#fff;
  overflow-x:auto;
  border-top:1px solid rgba(0,0,0,.06);
}

.modal-thumb{
  width:72px;
  height:72px;
  border-radius:12px;
  overflow:hidden;
  border:2px solid transparent;
  cursor:pointer;
  flex:0 0 auto;
  background:#f1f1f1;
  padding:0;
}

.modal-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.modal-thumb.active{
  border-color:#111;
}

.modal-info{
  padding:34px 30px 28px;
  display:flex;
  flex-direction:column;
}

.eyebrow{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--muted);
}

.modal-info h2,
.modal-info h3{
  margin:0;
  font-size:28px;
  line-height:1.08;
}

.modal-description{
  margin:24px 0 26px;
  line-height:1.6;
  color:rgba(0,0,0,.68);
  font-size:15px;
}

.option-group{
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-bottom:18px;
}

.option-group label{
  font-weight:700;
  font-size:15px;
}

.option-group select,
.option-group input{
  border:1px solid #d9d9d9;
  border-radius:18px;
  padding:15px 18px;
  background:#f3f3f3;
  min-height:52px;
}

.option-group select:focus,
.option-group input:focus{
  outline:none;
  border-color:#111;
  background:#fff;
}

.modal-price-row{
  margin:12px 0 28px;
  padding:18px 18px;
  border-radius:18px;
  background:#f1f1f1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:16px;
}

.modal-price-row strong{
  font-size:18px;
}

.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  padding:16px 22px;
  background:#111;
  color:#fff;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease;
}

.primary-btn:hover{
  background:#000;
  transform:translateY(-1px);
}

.full-width{
  width:100%;
}

/* =========================
   CART PANEL
========================= */

.cart-panel{
  position:fixed;
  top:0;
  right:0;
  width:400px;
  max-width:94vw;
  height:100vh;
  background:#fff;
  box-shadow:-10px 0 30px rgba(0,0,0,.16);
  z-index:700;
  padding:24px;
  overflow-y:auto;
}

.cart-panel.hidden{
  display:none;
}

.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.cart-header h2{
  margin:0;
  font-size:28px;
}

.cart-close{
  border:none;
  background:#111;
  color:#fff;
  width:38px;
  height:38px;
  border-radius:50%;
  cursor:pointer;
}

.cart-items{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.cart-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border-radius:18px;
  background:#f3f3f3;
}

.cart-item strong{
  line-height:1.3;
}

.cart-item small{
  display:inline-block;
  line-height:1.45;
  color:rgba(0,0,0,.72);
}

.cart-empty{
  color:rgba(0,0,0,.5);
}

.cart-item button{
  border:none;
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:700;
}

.cart-footer{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.1);
}

.cart-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
  gap:12px;
}

.checkout-btn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  padding:14px 18px;
  font-weight:700;
  background:#111;
  color:#fff;
  transition:background .2s ease, transform .2s ease, opacity .2s ease;
}

.checkout-btn:hover{
  background:#000;
}

.checkout-btn.is-disabled{
  opacity:.55;
  pointer-events:none;
}

/* =========================
   LARGE / MID
========================= */

@media (max-width: 1280px){
  .hero-artwork{
    min-height:560px;
  }

  .hero-image{
    min-height:560px;
  }

  .product-grid{
    gap:44px 30px;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px){
  .site-header{
    padding:14px 18px 0;
  }

  .hero-stage,
  .shop-filters-section,
  .shop-claim-section,
  .shop-grid-section{
    padding-left:18px;
    padding-right:18px;
  }

  .hero-artwork{
    min-height:460px;
  }

  .hero-image{
    min-height:460px;
  }

  .product-grid{
    grid-template-columns:1fr 1fr;
    gap:34px 22px;
  }

  .product-title{
    font-size:22px;
  }

  .modal-panel{
    width:min(1100px, calc(100vw - 30px));
    margin:26px auto;
  }

  .modal-content{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .modal-image-slider{
    min-height:360px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){
  .site-header{
    padding:12px 10px 0;
  }

  .topbar{
    min-height:48px;
    padding:8px 10px;
    border-radius:22px;
  }

  .brand-badge{
    width:36px;
    height:36px;
    font-size:13px;
  }

  .cart-button{
    padding:9px 14px;
    font-size:14px;
  }

  .hero-stage{
    padding:0 10px;
    margin-top:-10px;
  }

  .hero-artwork{
    min-height:280px;
    border-radius:0 0 20px 20px;
  }

  .hero-image{
    min-height:280px;
  }

  .shop-filters-section{
    padding:12px 10px 0;
  }

  .filter-wrap{
    justify-content:flex-start;
  }

  .filter-row{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    width:100%;
    padding-bottom:2px;
    scrollbar-width:none;
  }

  .filter-row::-webkit-scrollbar{
    display:none;
  }

  .filter-chip{
    flex:0 0 auto;
    padding:10px 14px;
    font-size:14px;
  }

  .shop-claim-section{
    padding:22px 10px 6px;
  }

  .claim-icon{
    font-size:26px;
  }

  .shop-claim h1{
    font-size:32px;
  }

  .shop-grid-section{
    padding:28px 10px 30px;
  }

  .product-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .product-image-wrap{
    border-radius:24px;
  }

  .product-body{
    padding-top:14px;
  }

  .product-title{
    font-size:22px;
  }

  .product-meta{
    max-width:100%;
    font-size:14px;
  }

  .product-footer{
    align-items:center;
  }

  .secondary-btn{
    padding:11px 16px;
    font-size:14px;
  }

  .modal{
    padding:10px;
  }

  .modal-panel{
    width:100%;
    margin:0;
    border-radius:24px;
    max-height:calc(100vh - 20px);
    overflow:auto;
  }

  .modal-image-slider{
    min-height:260px;
  }

  .modal-close{
    top:12px;
    right:12px;
    width:40px;
    height:40px;
    font-size:24px;
  }

  .modal-nav{
    width:38px;
    height:38px;
    font-size:22px;
  }

  .modal-nav-left{
    left:12px;
  }

  .modal-nav-right{
    right:12px;
  }

  .modal-thumbs{
    padding:10px;
  }

  .modal-thumb{
    width:60px;
    height:60px;
  }

  .modal-info{
    padding:20px 16px 18px;
  }

  .modal-info h2,
  .modal-info h3{
    font-size:24px;
  }

  .modal-description{
    margin:16px 0 18px;
    font-size:15px;
  }

  .option-group select,
  .option-group input{
    padding:13px 14px;
    min-height:48px;
  }

  .modal-price-row{
    padding:14px 16px;
  }

  .primary-btn{
    width:100%;
    min-height:50px;
  }

  .cart-panel{
    width:100%;
    max-width:100%;
    padding:18px 14px 24px;
  }

  .cart-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .cart-item button{
    align-self:flex-start;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){
  .site-header{
    padding:10px 8px 0;
  }

  .hero-stage{
    padding:0 8px;
  }

  .hero-artwork{
    min-height:230px;
  }

  .hero-image{
    min-height:230px;
  }

  .shop-filters-section,
  .shop-claim-section,
  .shop-grid-section{
    padding-left:8px;
    padding-right:8px;
  }

  .shop-claim h1{
    font-size:26px;
  }

  .product-title{
    font-size:20px;
  }

  .product-price{
    font-size:17px;
  }

  .modal-image-slider{
    min-height:220px;
  }

  .cart-header h2{
    font-size:24px;
  }

  .checkout-btn,
  .primary-btn,
  .secondary-btn{
    min-height:46px;
  }
}



/* =========================
   LEGAL LINKS
========================= */

.legal-links-section{
  width:100%;
  padding:30px 26px 54px;
}

.legal-links{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.legal-chip{
  border:none;
  border-radius:999px;
  padding:12px 18px;
  background:#111;
  color:#fff;
  font-weight:700;
  font-size:14px;
  line-height:1;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease;
}

.legal-chip:hover{
  background:#000;
  transform:translateY(-1px);
}

/* =========================
   LEGAL MODAL
========================= */

.legal-modal.hidden{
  display:none;
}

.legal-modal{
  position:fixed;
  inset:0;
  z-index:650;
}

.legal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.36);
}

.legal-panel{
  position:relative;
  width:min(980px, calc(100vw - 40px));
  margin:42px auto;
  background:#fff;
  border-radius:34px;
  box-shadow:0 30px 70px rgba(0,0,0,.22);
  overflow:hidden;
  z-index:1;
  max-height:calc(100vh - 84px);
  display:flex;
  flex-direction:column;
}

.legal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:5;
}

.legal-content{
  padding:34px 30px 28px;
  overflow:auto;
}

.legal-header{
  margin-bottom:18px;
  padding-right:64px;
}

.legal-header h2{
  margin:0;
  font-size:30px;
  line-height:1.08;
}

.legal-body{
  font-size:15px;
  line-height:1.7;
  color:rgba(0,0,0,.78);
}

.legal-body h3{
  margin:24px 0 10px;
  font-size:20px;
  line-height:1.2;
  color:#111;
}

.legal-body p{
  margin:0 0 14px;
}

.legal-body ul{
  margin:0 0 16px 18px;
  padding:0;
}

.legal-body li{
  margin:0 0 8px;
}

.legal-body strong{
  color:#111;
}

.legal-box{
  padding:16px 18px;
  background:#f5f5f5;
  border-radius:18px;
  margin:14px 0 18px;
}

@media (max-width: 768px){
  .legal-links-section{
    padding:26px 10px 36px;
  }

  .legal-links{
    gap:10px;
  }

  .legal-chip{
    font-size:14px;
    padding:11px 15px;
  }

  .legal-modal{
    padding:10px;
  }

  .legal-panel{
    width:100%;
    margin:0;
    border-radius:24px;
    max-height:calc(100vh - 20px);
  }

  .legal-close{
    top:12px;
    right:12px;
    width:40px;
    height:40px;
    font-size:24px;
  }

  .legal-content{
    padding:20px 16px 18px;
  }

  .legal-header{
    padding-right:54px;
    margin-bottom:14px;
  }

  .legal-header h2{
    font-size:24px;
  }

  .legal-body{
    font-size:15px;
  }
}

/* Produkt Kategorien */

.product-type-section{
  width:100%;
  margin-top:18px;
}

.product-type-filter{
  display:flex;
  justify-content:center;
  gap:10px;
}

.type-chip{
  border:none;
  border-radius:999px;
  padding:8px 16px;
  background:#111;
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  cursor:pointer;
}

.type-chip:hover{
  background:#000;
}

.type-chip.active{
  background:#111;
}
