:root{
  --bg:#0b0b0f;
  --surface:#111117;
  --surface2:#15151d;
  --text:#f2f4f8;
  --muted:#a3a9b1;
  --border:rgba(255,255,255,.10);
  --shadow:0 12px 40px rgba(0,0,0,.45);

  --brand:#B71420;
  --wa:#25D366;
  --radius:18px;

  --max:1120px;
  --sticky-h:96px;
  --header-h:72px;
}

*{
  box-sizing:border-box;
  min-width:0;
}

html,
body{
  height:100%;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.02),
      rgba(255,255,255,.02) 1px,
      transparent 1px,
      transparent 60px
    ),
    var(--bg);
  color:var(--text);
  padding-bottom:calc(var(--sticky-h) + 18px);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* ========= HEADER / NAV ========= */
.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(7,8,9,.58);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
  transition:transform .22s ease, background .22s ease;
}

.nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  min-height:var(--header-h);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  flex:1 1 auto;
  min-width:0;
}

.brand__mark{
  width:40px;
  height:40px;
  border-radius:12px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  flex:0 0 auto;
}

.brand__mark img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand__text{
  min-width:0;
}

.brand__name{
  display:block;
  font-weight:800;
  letter-spacing:.06em;
  line-height:1.1;
}

.brand__tagline{
  display:block;
  font-size:12px;
  color:var(--muted);
  line-height:1.2;
  margin-top:2px;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:14px;
  flex:0 0 auto;
}

.nav__links a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  opacity:.92;
  transition:opacity .15s ease, color .15s ease;
}

.nav__links a:hover{
  opacity:1;
}

.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  flex:0 0 auto;
}

.nav__toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:var(--text);
  border-radius:2px;
  opacity:.9;
}

/* ========= BUTTONS ========= */
.btn{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:
    transform .15s ease,
    filter .15s ease,
    background .15s ease,
    border-color .15s ease;
  user-select:none;
  text-align:center;
  white-space:nowrap;
}

.btn:active{
  transform:translateY(1px);
}

.btn:hover{
  background:rgba(255,255,255,.10);
}

.btn--sm{
  padding:10px 14px;
  font-size:13px;
}

.btn--ghost{
  background:rgba(255,255,255,.04);
}

.btn--primary{
  background:var(--brand);
  border-color:rgba(255,255,255,.12);
}

.btn--primary:hover{
  filter:brightness(1.06);
}

.btn--whatsapp{
  background:var(--wa);
  border-color:rgba(0,0,0,.12);
  color:#fff;
}

.btn--whatsapp:hover{
  filter:brightness(1.03);
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 7px;
  border-radius:999px;
  font-size:12px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
}

/* ========= MAIN / HERO ========= */
.main{
  min-height:60vh;
}

.hero{
  padding:28px 0 18px;
}

.hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:16px;
  align-items:start;
}

.h1{
  margin:0 0 10px;
  font-weight:800;
  font-size:clamp(28px, 3.2vw, 44px);
  line-height:1.08;
}

.lead{
  margin:0 0 14px;
  color:rgba(255,255,255,.86);
  line-height:1.65;
  max-width:880px;
}

.hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.pill{
  font-size:12px;
  color:rgba(255,255,255,.88);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;
  border-radius:999px;
}

.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* ========= CARD / TOOLBAR ========= */
.card,
.sidebar-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card{
  padding:14px;
}

.sidebar-card{
  padding:14px;
}

.card__title,
.sidebar-card__title{
  font-weight:900;
  font-size:15px;
  margin-bottom:12px;
  color:#fff;
}

.note{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
}

.search input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  color:var(--text);
  outline:none;
}

/* ========= MENU LAYOUT ========= */
.menu{
  padding:8px 0 34px;
}

.menu-layout{
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.menu-sidebar{
  position:sticky;
  top:calc(var(--header-h) + 10px);
  align-self:start;
}

.menu-content{
  min-width:0;
}

.menu-toolbar{
  margin-bottom:18px;
}

/* ========= CATEGORY NAV ========= */
.catnav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.catbtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  font:inherit;
  font-size:.95rem;
  font-weight:600;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    font-size .18s ease,
    padding .18s ease;
}

.catbtn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  font-size:1.02rem;
  padding-left:16px;
}

.catbtn.is-active{
  background:rgba(183,20,32,.18);
  border-color:rgba(183,20,32,.5);
  font-size:1.05rem;
  font-weight:800;
  padding-left:18px;
  color:#fff;
}

.sidebar-reset{
  width:100%;
  margin-top:12px;
}

/* ========= CATEGORY / ITEMS ========= */
.category{
  margin-bottom:44px;
  scroll-margin-top:120px;
}

.category__title{
  margin:24px 0 14px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,.40);
  font-weight:900;
  font-size:20px;
  letter-spacing:.4px;
  color:rgba(255,255,255,.92);
}

.category-hero{
  position:relative;
  height:150px;
  border-radius:18px;
  overflow:hidden;
  margin:24px 0 16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  box-shadow:var(--shadow);
}

.category-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.category-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.10),
    rgba(0,0,0,.72)
  );
}

.category-hero__content{
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:2;
}

.category-hero__title{
  margin:0;
  font-size:22px;
  font-weight:900;
  line-height:1.15;
  color:#fff;
}

.category-hero__desc{
  margin:6px 0 0;
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.88);
}

.items{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.item{
  display:grid;
  grid-template-columns:minmax(0,1fr) 150px;
  gap:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(0,0,0,.22);
  overflow:hidden;
}



.item:hover{
  border-color:rgba(255,255,255,.14);
}

.item__main{
  min-width:0;
}

.item__top{
  display:block;
}

.item__name{
  margin:0 0 6px;
  font-weight:800;
  font-size:14px;
  line-height:1.45;
  word-break:break-word;
}

.item__no{
  opacity:.84;
}

.item__desc{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
  word-break:break-word;
}

.item__desc + .item__desc{
  margin-top:4px;
}

.item__desc--en{
  opacity:.92;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:4px;
  margin-top:8px;
}

.badge-num,
.badge-num.is-strong{
  min-width:18px;
  height:18px;
  padding:0 4px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.64rem;
  font-weight:600;
  line-height:1;
  text-align:center;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.68);
  border:1px solid rgba(255,255,255,.08);
}

.item__right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}

.item__price{
  font-weight:900;
  white-space:nowrap;
  font-size:15px;
}

.item__add{
  width:100%;
}

/* ========= STICKYBAR ========= */
.stickybar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:40;
  background:rgba(11,11,15,.88);
  border-top:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.stickybar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}

.stickybar__left{
  min-width:0;
}

.stickybar__title{
  font-weight:800;
  line-height:1.2;
}

.stickybar__sub{
  font-size:12px;
  color:var(--muted);
  line-height:1.35;
}

/* ========= MODAL ========= */
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.64);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9998;
}

.modal{
  width:min(760px, 100%);
  max-height:86vh;
  overflow:auto;
  background:#101017;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.modal__header{
  position:sticky;
  top:0;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#101017;
}

.modal__title{
  font-weight:900;
  font-size:16px;
}

.modal__sub{
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
}

.modal__body{
  padding:14px 16px;
}

.modal__footer{
  position:sticky;
  bottom:0;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding:14px 16px;
  border-top:1px solid rgba(255,255,255,.08);
  background:#101017;
}

.empty{
  padding:10px 0;
  color:var(--muted);
  font-size:13px;
}

/* ========= CART ========= */
.cartrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.10);
}

.cartrow:last-child{
  border-bottom:none;
}

.cartrow__info{
  min-width:0;
}

.cartrow__name{
  font-weight:800;
  line-height:1.4;
  word-break:break-word;
}

.cartrow__meta{
  font-size:12px;
  color:var(--muted);
}

.qty{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.iconbtn{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  font-weight:900;
}

.iconbtn:hover{
  background:rgba(255,255,255,.10);
}

.qty__num{
  min-width:22px;
  text-align:center;
  font-weight:900;
}

.totals{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
}

.formgrid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.field--full{
  grid-column:1 / -1;
}

.field label{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  color:var(--muted);
}

.field input,
.field select{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  color:var(--text);
  outline:none;
}

.field__hint{
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
  padding-top:6px;
}

/* FOOTER */
.site-footer{
  padding:52px 0 26px;
  background:linear-gradient(180deg, rgba(11,11,15,1), rgba(0,0,0,1));
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:30px;
}

.footer__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  gap:18px;
  padding:0 28px 22px;
  border-bottom:1px solid rgba(255,255,255,.10);
  align-items:start;
}

.footer__grid > .footer__col:nth-child(1),
.footer__grid > .footer__col:nth-child(2),
.footer__grid > .footer__col:nth-child(3){
  text-align:center;
}

.footer__title{
  margin:0 0 12px;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.footer__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.footer__list a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
}

.footer__list a:hover{
  color:rgba(255,255,255,.95);
}

.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top:18px;
}

.footer__small{
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.footer-link{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.footer-link:hover{
  color:rgba(255,255,255,.95);
  border-bottom-color:rgba(255,255,255,.28);
}

/* ========= LEGAL MODAL ========= */
.modal-legal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}

.modal-legal.is-open{
  display:block;
}

.modal-legal .modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.66);
  backdrop-filter:blur(14px);
  opacity:0;
  transition:opacity .25s ease;
}

.modal-legal.is-open .modal-backdrop{
  opacity:1;
}

.modal-legal .modal-dialog{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -46%) scale(.98);
  width:min(860px, calc(100% - 28px));
  max-height:min(78vh, 720px);
  overflow:auto;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(15,15,18,.96), rgba(10,10,12,.98));
  border-radius:28px;
  box-shadow:0 22px 70px rgba(0,0,0,.65);
  opacity:0;
  transition:transform .25s ease, opacity .25s ease;
  padding:20px 18px 18px;
}

.modal-legal.is-open .modal-dialog{
  opacity:1;
  transform:translate(-50%, -50%) scale(1);
}

.modal-legal .modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-size:18px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}

.modal-legal .modal-close:hover{
  background:rgba(255,255,255,.14);
  transform:scale(1.05);
}

.modal-legal .modal-head{
  margin-top:10px;
  padding:4px 6px 10px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.modal-legal .modal-title{
  margin:0;
  font-size:22px;
  letter-spacing:-0.01em;
}

.modal-legal .modal-subtitle{
  margin:6px 0 0;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.45;
}

.modal-legal .modal-body{
  padding:14px 6px 6px;
  color:rgba(255,255,255,.86);
  line-height:1.6;
  font-size:14px;
}

.dish-highlight{
  border-color:rgba(183,20,32,.6) !important;
  box-shadow:
    0 0 0 1px rgba(183,20,32,.35),
    0 0 30px rgba(183,20,32,.22),
    0 12px 28px rgba(0,0,0,.20);
  animation:dishPulse 1.6s ease;
}

@keyframes dishPulse{
  0%{
    transform:scale(1);
  }
  35%{
    transform:scale(1.015);
  }
  100%{
    transform:scale(1);
  }
}

/* ===== Add-to-cart Feedback ===== */
.item__add.is-added{
  background:#1f9d55;
  border-color:rgba(255,255,255,.18);
  color:#fff;
  transform:scale(1.02);
}

.stickybar.is-bump{
  animation:stickybarBump .45s ease;
}

@keyframes stickybarBump{
  0%{ transform:translateY(0); }
  35%{ transform:translateY(-3px); }
  100%{ transform:translateY(0); }
}

.badge.is-bounce,
#stickyCount.is-bounce,
#cartCount.is-bounce{
  animation:badgeBounce .45s ease;
}

@keyframes badgeBounce{
  0%{ transform:scale(1); }
  35%{ transform:scale(1.18); }
  60%{ transform:scale(.94); }
  100%{ transform:scale(1); }
}

.cart-toast{
  position:fixed;
  left:50%;
  bottom:calc(var(--sticky-h) + 18px);
  transform:translateX(-50%) translateY(16px);
  background:rgba(20,20,26,.96);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:12px 16px;
  font-size:13px;
  font-weight:700;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  z-index:120;
  transition:opacity .22s ease, transform .22s ease;
  white-space:nowrap;
  max-width:calc(100vw - 24px);
  overflow:hidden;
  text-overflow:ellipsis;
}

.cart-toast.is-visible{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

@media (max-width: 768px){
  .cart-toast{
    bottom:calc(var(--sticky-h) + 12px);
    font-size:12px;
    padding:11px 14px;
  }
}

/* =========================================================
   1200px – kleinere Laptops / MacBook / Split Screen Desktop
   ========================================================= */
@media (max-width: 1200px){
  :root{
    --max:1040px;
    --header-h:70px;
  }

  .container{
    width:min(var(--max), calc(100% - 36px));
  }

  .menu-layout{
    grid-template-columns:220px minmax(0,1fr);
    gap:22px;
  }

  .menu-sidebar{
    top:calc(var(--header-h) + 14px);
  }

  .item{
    grid-template-columns:minmax(0,1fr) 138px;
    gap:12px;
  }

  .catbtn{
    font-size:.92rem;
  }

  .catbtn:hover{
    font-size:.98rem;
  }

  .catbtn.is-active{
    font-size:1rem;
  }
}

/* ==========================================
   1024px – Tablet / iPad / kleiner Split View
   ========================================== */
@media (max-width: 1024px){
  :root{
    --sticky-h:92px;
    --header-h:68px;
  }

  .container{
    width:min(var(--max), calc(100% - 30px));
  }

  .hero{
    padding:22px 0 14px;
  }

  .lead{
    max-width:none;
  }

  .menu-layout{
    grid-template-columns:1fr;
    gap:18px;
  }

  .menu-sidebar{
    position:sticky;
    top:0;
    z-index:35;
  }

  .sidebar-card{
    padding:8px 0 6px;
    background:rgba(11,11,15,.96);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:0;
    border-left:none;
    border-right:none;
    box-shadow:none;
    overflow-x:auto;
  }

  .sidebar-card__title,
  .sidebar-reset{
    display:none;
  }

  .catnav{
    flex-direction:row;
    flex-wrap:nowrap;
    gap:8px;
    overflow-x:auto;
    padding:0 10px 6px;
    scrollbar-width:none;
  }

  .catnav::-webkit-scrollbar{
    display:none;
  }

  .catbtn{
    width:auto;
    white-space:nowrap;
    flex:0 0 auto;
    font-size:.9rem;
    padding:10px 13px;
  }

  .catbtn:hover{
    font-size:.9rem;
    padding-left:13px;
  }

  .catbtn.is-active{
    font-size:.92rem;
    padding-left:13px;
  }

  .menu-toolbar{
    margin-bottom:14px;
  }

  .category{
    scroll-margin-top:92px;
  }

  .item{
    grid-template-columns:minmax(0,1fr) 132px;
  }

  .footer__grid{
    grid-template-columns:1fr;
  }
}

/* ==========================================
   768px – großes Handy / kleines Tablet
   ========================================== */
@media (max-width: 768px){
  :root{
    --sticky-h:86px;
    --header-h:64px;
  }

  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .nav{
    gap:10px;
    padding:10px 0;
    min-height:var(--header-h);
  }

  .nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav__links{
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    width:min(360px, calc(100vw - 24px));
    padding:14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(11,11,15,.94);
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    z-index:60;
  }

  .nav__links--open{
    display:flex;
  }

  .nav__links a{
    padding:10px 10px;
    border-radius:12px;
  }

  .nav__links a:hover{
    background:rgba(255,255,255,.06);
  }

  .brand__tagline{
    display:none;
  }

  .hero{
    padding:18px 0 12px;
  }

  .h1{
    font-size:34px;
  }

  .lead{
    font-size:14px;
    line-height:1.6;
  }

  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero__actions .btn{
    width:100%;
  }

  .category{
    margin-bottom:34px;
    scroll-margin-top:84px;
  }

  .category__title{
    margin:18px 0 12px;
    font-size:18px;
  }

  .category-hero{
    height:140px;
    margin:18px 0 14px;
  }

  .category-hero__title{
    font-size:20px;
  }

  .category-hero__desc{
    font-size:12px;
  }

  .item{
    grid-template-columns:1fr;
    gap:10px;
    padding:12px;
    border-radius:14px;
  }

  .item__name{
    font-size:13.5px;
  }

  .item__desc{
    font-size:11.5px;
  }

  .item__right{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    width:100%;
  }

  .item__price{
    font-size:14px;
  }

  .item__add{
    width:auto;
    min-width:118px;
    padding:10px 14px;
    flex:0 0 auto;
  }

  .stickybar__inner{
    gap:10px;
  }

  .stickybar__title{
    font-size:14px;
  }

  .stickybar__sub{
    font-size:11px;
  }

  .stickybar .btn{
    padding:11px 14px;
    font-size:13px;
    white-space:nowrap;
  }

  .modal-backdrop{
    padding:10px;
    align-items:flex-end;
  }

  .modal{
    width:100%;
    max-height:92vh;
    border-radius:18px 18px 0 0;
  }

  .modal__header,
  .modal__body,
  .modal__footer{
    padding-left:14px;
    padding-right:14px;
  }

  .modal__footer{
    flex-direction:column-reverse;
  }

  .modal__footer .btn{
    width:100%;
  }

  .formgrid{
    grid-template-columns:1fr;
  }

  .field--full{
    grid-column:auto;
  }

  .cartrow{
    align-items:flex-start;
    flex-direction:column;
  }

  .qty{
    width:100%;
    justify-content:flex-start;
  }

  .footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .modal-legal .modal-dialog{
    width:calc(100% - 16px);
    border-radius:20px;
    padding:16px 14px 14px;
  }
}

/* ============================
   480px – kleines Handy
   ============================ */
@media (max-width: 480px){
  :root{
    --sticky-h:80px;
    --header-h:60px;
  }

  body{
    padding-bottom:calc(var(--sticky-h) + 14px);
  }

  .container{
    width:calc(100% - 20px);
  }

  .nav{
    padding:8px 0;
  }

  .brand{
    gap:10px;
  }

  .brand__mark{
    width:36px;
    height:36px;
    border-radius:10px;
  }

  .brand__name{
    font-size:13px;
  }

  .nav__toggle{
    width:40px;
    height:40px;
    border-radius:12px;
  }

  .nav__links{
    width:min(340px, calc(100vw - 20px));
    padding:12px;
  }

  .h1{
    font-size:28px;
  }

  .lead{
    font-size:13px;
  }

  .pill{
    font-size:11px;
    padding:7px 9px;
  }

  .card,
  .sidebar-card{
    border-radius:16px;
  }

  .catnav{
    padding:0 8px 6px;
  }

  .catbtn{
    font-size:.84rem;
    padding:8px 11px;
  }

  .catbtn:hover{
    font-size:.84rem;
    padding-left:11px;
  }

  .catbtn.is-active{
    font-size:.86rem;
    padding-left:11px;
  }

  .menu-toolbar{
    margin-bottom:12px;
  }

  .category{
    scroll-margin-top:78px;
  }

  .category-hero{
    height:126px;
  }

  .category-hero__title{
    font-size:18px;
  }

  .category-hero__desc{
    font-size:11px;
  }

  .item{
    padding:11px;
  }

  .item__name{
    font-size:13px;
  }

  .item__desc{
    font-size:11px;
  }

  .item__right{
    gap:8px;
  }

  .item__price{
    font-size:13.5px;
  }

  .item__add{
    min-width:108px;
    padding:9px 12px;
    font-size:12px;
  }

  .stickybar__inner{
    flex-direction:column;
    align-items:stretch;
  }

  .stickybar .btn{
    width:100%;
  }

  .stickybar__title{
    font-size:13px;
  }

  .stickybar__sub{
    font-size:11px;
  }

  .modal__title{
    font-size:15px;
  }

  .modal__sub{
    font-size:11px;
  }

  .iconbtn{
    width:32px;
    height:32px;
  }

  .footer__small{
    font-size:12px;
  }
}