/* ===== SPEISEKARTE CLEAN PREMIUM V1 ===== */

.shop-categories-page{
  padding:22px 0 80px;
  background:radial-gradient(circle at top, rgba(120,0,0,.16), transparent 34%), #050505;
  color:#fff;
}

.shop-categories-page .wrap{
  width:min(920px, calc(100% - 30px));
  margin:0 auto;
}

/* Topbar */

.shop-topbar-premium{
  position:sticky;
  top:calc(var(--dynamic-header-height, 140px) + 8px);
  z-index:80;
  margin:0 0 26px;
  padding:12px;
  border-radius:22px;
  background:rgba(8,10,14,.92);
  border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 35px rgba(0,0,0,.35);
}

.shop-topbar-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.shop-ui-label{
  display:block;
  margin:0 0 6px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#ff4b58;
}

.shop-search-input,
.shop-category-select{
  width:100%;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:#10141d;
  color:#fff;
  padding:0 12px;
  font-size:13px;
  outline:none;
}

/* Highlights */

.shop-featured{
  margin:0 0 28px;
}

.shop-featured-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin:0 0 12px;
}

.shop-featured-head h2{
  margin:0;
  font-size:30px;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:900;
}

.shop-featured-head span{
  color:rgba(255,255,255,.55);
  font-size:13px;
  font-weight:700;
}

.shop-featured-scroll{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scrollbar-width:none;
  scroll-snap-type:x mandatory;
}

.shop-featured-scroll::-webkit-scrollbar{
  display:none;
}

.shop-featured-card{
  flex:0 0 min(320px, 82vw);
  scroll-snap-align:start;
  padding:20px;
  border-radius:22px;
  text-decoration:none;
  color:#fff;
  background:
    radial-gradient(circle at top left, rgba(255,64,75,.12), transparent 38%),
    linear-gradient(180deg,#101827 0%,#070c14 100%);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:0 16px 38px rgba(0,0,0,.30);
}

.shop-featured-badge{
  display:inline-flex;
  height:26px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:#ef3f4c;
  color:#fff;
  font-size:11px;
  font-weight:900;
  margin-bottom:12px;
}

.shop-featured-body h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:900;
}

.shop-featured-desc{
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.45;
}

.shop-featured-price{
  margin-top:14px;
  font-size:21px;
  font-weight:900;
}

.shop-featured-arrow{
  display:none;
}

/* Accordion */

.shop-sections{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.shop-category-section{
  scroll-margin-top:calc(var(--dynamic-header-height, 140px) + 95px);
}

.shop-category-head{
  width:100%;
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:10px;
  padding:12px 2px;
  border:0;
  background:transparent;
  color:#fff;
  text-align:left;
  cursor:pointer;
}

.shop-category-head h2{
  margin:0;
  min-width:0;
  font-size:21px;
  line-height:1.12;
  letter-spacing:-.035em;
  font-weight:900;
  white-space:normal;
}

.shop-category-head span{
  color:rgba(255,255,255,.55);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.shop-category-head::after{
  content:"⌄";
  color:rgba(255,255,255,.55);
  font-size:18px;
  transition:.18s ease;
}

.shop-category-section.is-collapsed .shop-category-head::after{
  transform:rotate(-90deg);
}

.shop-category-section.is-collapsed .shop-list{
  display:none;
}

/* Product list */

.shop-list{
  display:grid;
  gap:8px;
}

.shop-list-item{
  display:block;
  padding:14px 15px;
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(180deg,#0e1521 0%,#070c14 100%);
  border:1px solid rgba(255,255,255,.055);
}

.shop-list-content{
  display:grid;
  grid-template-columns:1fr auto;
  gap:5px 12px;
  align-items:start;
}

.shop-list-content h3{
  margin:0;
  min-width:0;
  font-size:16px;
  line-height:1.22;
  letter-spacing:-.015em;
  font-weight:800;
}

.shop-list-price{
  color:#fff;
  font-size:15px;
  font-weight:900;
  white-space:nowrap;
}

.shop-list-desc{
  grid-column:1 / -1;
  color:rgba(255,255,255,.58);
  font-size:12.5px;
  line-height:1.4;
}

/* Desktop refinement */

@media(min-width:900px){
  .shop-categories-page{
    padding-top:34px;
  }

  .shop-topbar-grid{
    grid-template-columns:1fr 260px;
  }

  .shop-featured-head h2{
    font-size:38px;
  }

  .shop-category-head h2{
    font-size:26px;
  }

  .shop-list-item{
    padding:16px 18px;
  }

  .shop-list-content h3{
    font-size:18px;
  }
}

/* ===== CLEAN V1 WIDTH FIX ===== */

.shop-categories-page{
  padding-top:18px;
}

.shop-categories-page > .wrap{
  width:min(760px, calc(100% - 28px));
  max-width:760px;
}

.shop-topbar-premium{
  top:calc(var(--dynamic-header-height, 150px) + 6px);
}

.shop-featured{
  margin-top:22px;
}

.shop-sections{
  margin-top:18px;
}

@media(max-width:700px){
  .shop-categories-page > .wrap{
    width:calc(100% - 26px);
    max-width:none;
  }

  .shop-featured-card{
    flex-basis:100%;
  }

  .shop-featured-head h2{
    font-size:32px;
  }

  .shop-category-head h2{
    font-size:22px;
  }

  .shop-list-item{
    padding:16px;
  }
}

/* ===== REMOVE ACCORDION / FIX HUGE GAPS ===== */

.shop-category-section.is-collapsed .shop-list{
  display:grid;
}

.shop-category-head{
  pointer-events:none;
  cursor:default;
}

.shop-category-head::after{
  display:none;
}

.shop-sections{
  gap:26px;
}

.shop-category-section{
  padding:0;
  margin:0;
}

.shop-category-head{
  padding:0 0 10px;
}

.shop-list{
  display:grid;
  gap:8px;
}

.shop-featured{
  margin-bottom:30px;
}

/* ===== PREMIUM HEADINGS + HIGHLIGHT V2 ===== */

.shop-featured-head{
  margin-bottom:14px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,.055);
}

.shop-featured-head h2{
  font-size:24px;
  font-weight:850;
  letter-spacing:-.03em;
}

.shop-featured-head span{
  font-size:12px;
  color:rgba(255,255,255,.46);
}

.shop-featured-card{
  flex-basis:100%;
  padding:18px;
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(255,60,72,.10), transparent 34%),
    linear-gradient(180deg,#101725,#080d15);
  border:1px solid rgba(255,255,255,.075);
}

.shop-featured-badge{
  height:23px;
  padding:0 10px;
  font-size:10px;
  margin-bottom:10px;
  background:rgba(239,63,76,.92);
}

.shop-featured-body h3{
  font-size:18px;
  line-height:1.15;
  font-weight:800;
  margin-bottom:6px;
}

.shop-featured-desc{
  font-size:12px;
  color:rgba(255,255,255,.56);
}

.shop-featured-price{
  margin-top:12px;
  font-size:18px;
  font-weight:850;
}

/* Category headings */

.shop-category-head{
  padding:18px 0 9px;
  border-bottom:1px solid rgba(255,255,255,.04);
}

.shop-category-head h2{
  font-size:19px;
  font-weight:850;
  letter-spacing:-.025em;
  line-height:1.15;
  color:#f7f3ee;
}

.shop-category-head span{
  font-size:11px;
  color:rgba(255,255,255,.45);
}

/* Product cards more elegant */

.shop-list-item{
  padding:13px 15px;
  border-radius:14px;
  background:linear-gradient(180deg,#0b111c,#070b12);
}

.shop-list-content h3{
  font-size:15px;
  font-weight:760;
}

.shop-list-price{
  font-size:14px;
}

.shop-list-desc{
  font-size:12px;
  color:rgba(255,255,255,.52);
}

/* ===== FEATURED SPACING FIX ===== */

.shop-featured{
  margin-top:4px;
  margin-bottom:22px;
}

.shop-featured-head{
  margin-bottom:10px;
}

.shop-featured-head h2{
  font-size:23px;
}

.shop-featured-card{
  padding:16px 17px;
}

.shop-featured-badge{
  background:rgba(239,63,76,.82);
}

/* ===== REMOVE TOP GAP BEFORE FEATURED ===== */

.shop-topbar-premium{
  margin-bottom:14px !important;
}

.shop-featured{
  margin-top:0 !important;
}

.shop-featured-head{
  margin-top:0 !important;
}

.shop-categories-page{
  padding-top:10px !important;
}

.shop-categories-page .wrap{
  display:flex !important;
  flex-direction:column !important;
  gap:0 !important;
}

/* ===== REAL SPACING FIX ===== */

.shop-topbar-premium{
  margin-bottom:10px !important;
}

.shop-featured{
  margin:0 0 14px !important;
  padding:0 !important;
}

.shop-featured-head{
  margin:0 0 8px !important;
  padding:0 !important;
  align-items:center !important;
}

.shop-featured-head h2{
  margin:0 !important;
  line-height:1 !important;
}

.shop-featured-head span{
  margin:0 !important;
}

.shop-sections{
  margin-top:0 !important;
  gap:18px !important;
}

.shop-category-section{
  margin:0 !important;
  padding:0 !important;
}

.shop-category-head{
  padding:0 0 8px !important;
  margin:0 !important;
}

