:root{
      --bg:#fcf7ed;
      --card:#ffffff;
      --muted:#7a7a7a;
      --text:#141414;
      --accent:#7d221f;
      --accent2:#ebbb3e;
      --shadow: 0 10px 30px rgba(0,0,0,.08);
      --radius:18px;
      --chip:#f3f3f3;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background:var(--bg);
      color:var(--text);
    }
    a{color:inherit; text-decoration:none}
    .wrap{
      width: 100%;
      max-width: none;
      margin: 0;                
      padding-left: 22px;
      padding-right: 22px;
      padding-top: 0px;
      padding-bottom: 0px;
    }

    .topbar{
      position:sticky;
      top: 0;
      z-index: 1000;
      background: var(--bg);
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;

      border-bottom: 1px solid rgba(0,0,0,.08);
      box-shadow: 0 6px 18px rgba(0,0,0,.05);
    }
    .topbar-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding-left:5px;
      padding-top:5px;
      padding-bottom:5px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-logo{
      width:100px;height:auto;
    }
    .brand-text{min-width:0}
    .brand-title{
      font-weight:800;
      letter-spacing:.3px;
      line-height:1.05;
      display:flex;
      gap:6px;
      align-items:baseline;
      flex-wrap:wrap;
    }
    .brand-title .name{font-size:32px}
    .brand-title .bravo{font-size:32px; color:var(--accent); font-weight:900}
    .brand-sub{
      margin-top:3px;
      color:var(--muted);
      font-size:18px;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    @media (max-width:520px){
      .brand{
        display:flex;
        align-items:center;
        gap:12px;
        min-width:0;
      }
      .brand-logo{
        width:70px;height:auto;
      }
      .brand-text{min-width:0}
      .brand-title{
        font-weight:800;
        letter-spacing:.3px;
        line-height:1.05;
        display:flex;
        gap:6px;
        align-items:baseline;
        flex-wrap:wrap;
      }
      .brand-title .name{font-size:18px}
      .brand-title .bravo{font-size:18px; color:var(--accent); font-weight:900}
      .brand-sub{
        margin-top:3px;
        color:var(--muted);
        font-size:11px;
        white-space:nowrap;
        text-overflow:ellipsis;
      }
    }

    .actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex: 0 0 auto;
      padding-right: 18px;
    }
    .pill-btn{
      position:relative;
      width:42px;height:42px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(0,0,0,.06);
      box-shadow: var(--shadow);
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .icon-btn{
      position:relative;
      width:42px;height:42px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(0,0,0,.06);
      box-shadow: var(--shadow);
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .icon{width:18px;height:18px; display:block}

 
    .tabs{
      display: flex;
      gap: 10px;

      overflow-x: auto;        
      overflow-y: hidden;
      white-space: nowrap;

      -webkit-overflow-scrolling: touch; 
      scrollbar-width: none; 

      padding: 6px 5px 10px;
    }
    .tabs::-webkit-scrollbar{
      display: none;
    }
    .tab{
      border:1px solid rgba(0,0,0,.08);
      background:#fff;
      color:#151515;
      font-weight:800;
      padding:8px 14px;
      border-radius:999px;
      cursor:pointer;
      flex: 0 0 auto;
    }
    .tab.active{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      color:#fff;
      border-color: transparent;
      background-clip: padding-box;
    }


    .tabs.tabs-header{
      padding:10px 24px 14px;
      margin:0;
      background: var(--bg);
      border-top: 1px solid rgba(0,0,0,.06);
      border-bottom: 1px solid rgba(0,0,0,.12);
    }
    @media (max-width:520px){
      .tabs.tabs-header{ padding:8px 18px 12px; }
    }


    .hero{
      text-align:center;
      margin:26px 0 18px;
    }
    .hero h1{
      margin:0;
      font-size:32px;
      font-weight:900;
      letter-spacing:.2px;
    }
    .hero h1 .accent{color:var(--accent)}
    .hero .underline{
      width:58px;height:4px;
      border-radius:999px;
      margin:10px auto 10px;
      background: var(--accent);
    }
    .hero p{
      margin:0;
      color:var(--muted);
    }

 
    .section{
      margin-top:0px;
      margin-bottom:-30px;
      padding-bottom:10px;
    }
    .section-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      font-size:18px;
      margin:10px 0 10px;
    }
    .section-title::before{
      content:"";
      width:4px;
      height:20px;
      border-radius:999px;
      background: var(--accent);
      display:inline-block;
      transform: translateY(3px);
    }


.section-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:transparent;
  border:0;
  cursor:pointer;
  text-align:left;
  z-index: 5;
}
.section-body{
  overflow:hidden;
  max-height:0;
  transition:max-height .25s ease;
}
.section.open .section-body{ max-height:10000px; }
.chev{
  display:inline-block;
  transition:transform .2s ease;
  opacity:.75;
  font-weight:900;
}
.section.open .chev{ transform:rotate(180deg); }
   
    .grid{
      display:grid;
      gap:14px;
    }
    .card{
      background: #ffffff;
      border:1px solid rgba(0,0,0,.06);
      border-radius: var(--radius);
      padding:14px;
      position:relative;
      overflow:hidden;
      display: flex;
      flex-direction: column;
    }
    .card-inner{
      display:grid;
      grid-template-columns: 1fr auto;
      gap:12px;
      align-items:start;
    }
    .meta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:6px;
      min-width:0;
    }
    .id-pill{
      font-weight:900;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      background:#f4f4f4;
      border:1px solid rgba(0,0,0,.06);
      color:#222;
      flex:0 0 auto;
    }
    .item-title{
      margin:0;
      font-weight:900;
      font-size:15px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 52ch;
    }
    .desc{
      margin:0;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.35;
    }

    .price{
      font-weight:900;
      color: var(--accent);
      font-size:18px;
      white-space:nowrap;
      padding-top:2px;
    }
    .add-wrap{
      display:flex;
      justify-content:flex-end;
      margin-top:10px;
    }
    .add{
      border:none;
      cursor:pointer;
      border-radius: 14px;
      padding:11px 16px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      color:#fff;
      font-weight:900;
      letter-spacing:.3px;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .add .plus{
      width:18px;height:18px;
      border-radius:6px;
      display:grid;
      place-items:center;
      background: rgba(255,255,255,.18);
    }

    .sizes{
      margin-top:10px;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .chip{
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(0,0,0,.10);
      font-weight:800;
      font-size:12.5px;
      cursor:pointer;
      user-select:none;
    }
    .chip.active{
      background:#fff3ea;
      border-color: rgba(255,75,31,.35);
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    .float-stack{
      position:fixed;
      right:18px;
      bottom:18px;
      display:flex;
      flex-direction:column;
      gap:10px;
      z-index:999;
    }
    .fab{
      width:54px;height:54px;
      border-radius:999px;
      border: none;
      cursor:pointer;
      box-shadow: 0 16px 34px rgba(0,0,0,.18);
      display:grid;
      place-items:center;
      color:#fff;
    }
    .fab.cart{background:#111827;}
    .fab.phone{background:#111827;}
    .fab svg{width:22px;height:22px}

    .drawer-backdrop{
      position:fixed;
      inset:0;
      background: rgba(0,0,0,.35);
      opacity:0;
      pointer-events:none;
      transition: .2s ease;
      z-index:2000;
    }
    .drawer{
      position:fixed;
      top:0;
      right:0;
      height:100%;
      width:min(420px, 92vw);
      background:#fff;
      border-left:1px solid rgba(0,0,0,.08);
      transform: translateX(110%);
      transition:.25s ease;
      z-index:2001;
      display:flex;
      flex-direction:column;
    }
    .drawer.open{transform: translateX(0)}
    .drawer-backdrop.open{
      opacity:1;
      pointer-events:auto;
    }
    .drawer-head{
      padding:16px 16px 10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-bottom:1px solid rgba(0,0,0,.06);
    }
    .drawer-title{
      font-weight:900;
      font-size:32px;
    }
    .drawer-close{
      width:38px;height:38px;
      border-radius:999px;
      border:1px solid rgba(0,0,0,.08);
      background:#fff;
      cursor:pointer;
      display:grid;
      place-items:center;
    }
    .drawer-body{
      padding:14px 16px;
      overflow:auto;
      flex:1;
    }
    .cart-empty{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.5;
      margin:0;
    }
    .cart-list{
      display:grid;
      gap:10px;
      margin-top:12px;
    }
    .cart-item{
      border:1px solid rgba(0,0,0,.08);
      border-radius:14px;
      padding:10px 12px;
      display:grid;
      grid-template-columns: 1fr auto;
      gap:10px;
      align-items:center;
      background:#fff;
    }
    .cart-item .t{
      font-weight:900;
      font-size:13.5px;
      margin:0;
    }
    .cart-item .s{
      margin:3px 0 0;
      color:var(--muted);
      font-size:12px;
    }
    .cart-item .p{
      font-weight:900;
      color:var(--accent);
      white-space:nowrap;
    }

    .cart-ctrl{
      margin-top:8px;
      display:flex;
      gap:8px;
      align-items:center;
      flex-wrap:wrap;
    }
    .cbtn{
      border:1px solid rgba(0,0,0,.10);
      background:#fff;
      border-radius:12px;
      padding:6px 10px;
      font-weight:900;
      font-size:12.5px;
      cursor:pointer;
      transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
      box-shadow:0 10px 18px rgba(0,0,0,.06);
    }
    .cbtn:active{ transform: scale(.97); filter: brightness(.98); }
    .cbtn.danger{
      border-color: rgba(239,68,68,.35);
      background: rgba(239,68,68,.10);
      color:#b91c1c;
    }
    .cqty{
      min-width:26px;
      text-align:center;
      font-weight:900;
    }

    .drawer-foot{
      border-top:1px solid rgba(0,0,0,.06);
      padding:12px 16px 16px;
      display:grid;
      gap:10px;
    }
    .row{
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-weight:900;
    }
    .muted{color:var(--muted); font-weight:800}
    .btns{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .small-btn{
      flex:1;
      min-width:140px;
      border:none;
      border-radius:14px;
      padding:12px 12px;
      font-weight:900;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      box-shadow: 0 12px 26px rgba(0,0,0,.08);
    }
    .small-btn.call{background:#1f9d55; color:#fff;}    
    .small-btn.clear{background:#ef4444; color:#fff;}    
    .small-btn.copy{background:#9ca3af; color:#fff;}    
    .small-btn svg{width:18px;height:18px}

    /* Responsive tweaks */
    @media (max-width:520px){
      .brand-sub{max-width:30ch}
      .hero h1{font-size:32px}
      .card-inner{grid-template-columns: 1fr}
      .price{justify-self:end}
      .add-wrap{justify-content:flex-start}
      
    }

    .card-footer{
      margin-top: auto; 
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

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

    .xqty{
      margin-left: 8px;
      font-weight: 900;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 999px;
      background: #f3f3f3;
      border: 1px solid rgba(0,0,0,.08);
    }

    :where(button, .tab, .chip){
      -webkit-tap-highlight-color: transparent;
    }

    :where(.pill-btn,.icon-btn,.tab,.add,.chip,.fab,.drawer-close,.small-btn,.qty-btn){
      transition: transform .08s ease, filter .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
    }

    @media (hover:hover){
      :where(.pill-btn,.icon-btn,.tab,.add,.chip,.fab,.drawer-close,.small-btn,.qty-btn):hover{
        transform: translateY(-1px);
        filter: brightness(1.02);
        box-shadow: 0 18px 34px rgba(0,0,0,.14);
      }
    }

    :where(.pill-btn,.icon-btn,.tab,.add,.chip,.fab,.drawer-close,.small-btn,.qty-btn):active,
    :where(.pill-btn,.icon-btn,.tab,.add,.chip,.fab,.drawer-close,.small-btn,.qty-btn).pressed{
      transform: translateY(0) scale(.98);
      filter: brightness(.98);
      box-shadow: 0 10px 18px rgba(0,0,0,.10);
    }

    :where(.pill-btn,.icon-btn,.tab,.add,.chip,.fab,.drawer-close,.small-btn,.qty-btn):focus-visible{
      outline: 3px solid rgba(255,75,31,.35);
      outline-offset: 2px;
    }

    @media (hover:hover){
      .tab:hover{ border-color: rgba(0,0,0,.18); }
      .chip:hover{ border-color: rgba(255,75,31,.35); background:#fff7f2; }
    }

    @media (hover:hover){
      .add:hover{
        filter: brightness(1.04);
      }
    }
    .add:active, .add.pressed{
      filter: brightness(.97);
    }

    .qty-btn{
      width:36px;
      height:36px;
      border-radius:12px;
      border:1px solid rgba(0,0,0,.10);
      background:#fff;
      font-weight:900;
      font-size:16px;
      line-height:1;
      display:grid;
      place-items:center;
      cursor:pointer;
      user-select:none;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }
    .qty-btn:disabled{
      opacity:.45;
      cursor:not-allowed;
      transform:none !important;
      box-shadow:none !important;
    }

    .add.flash{
      background: linear-gradient(90deg, #16a34a, #22c55e) !important; 
      box-shadow: 0 14px 28px rgba(22,163,74,.22) !important;
      filter: none !important;
    }

    @media (hover:hover){
      .icon-btn:hover{ border-color: rgba(0,0,0,.14); }
    }

    @media (hover:hover){
      .small-btn.call:hover{ box-shadow: 0 16px 30px rgba(31,157,85,.22); }
      .small-btn.clear:hover{ box-shadow: 0 16px 30px rgba(239,68,68,.22); }
      .small-btn.copy:hover{ box-shadow: 0 16px 30px rgba(156,163,175,.22); }
    }

    @media (min-width: 992px){
      .tabs {
        padding-right: 720px;
      }

      .drawer{
        transform: translateX(0) !important;
        width: 720px;
      }

      .homebutton {
        padding-right: 742px;
      }

      .drawer-backdrop{
        display:none !important;
      }

      .drawer-close{
        display:none !important;
      }

      .wrap{
        padding-right: 742px;
      }

      .site-footer{
        padding-right: 720px;
      }
    }

    .section-head{
      padding-bottom: 12px;
      margin-bottom: 16px;
      position: relative;
    }

    .section-head::after{
      content:"";
      position:absolute;
      left:50%;
      bottom:0;
      transform:translateX(-50%);
      top: calc(50% + 18px);

      width: 95%;          
      height: 1px;
      border-radius: 999px;

      background: #7b2a2a71;
    }

    .modal-backdrop{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.45);
      z-index: 3000;
    }

    .modal{
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 18px;
      z-index: 3001;
    }

    .modal-card{
      width: min(520px, 92vw);
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(0,0,0,.25);
      overflow: hidden;
    }

    .modal-head{
      position: relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(0,0,0,.06);
      z-index: 5;
    }

    .modal-title{
      font-weight: 900;
      font-size: 18px;
    }

    .modal-close{
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.10);
      background: #fff;
      cursor: pointer;
      font-weight: 900;
      position: relative;
      z-index: 20000;
    }

    .modal-body{
      padding: 14px 16px;
    }

    .modal-item{
      margin: 0 0 6px;
      font-weight: 900;
      font-size: 15px;
    }

    .modal-sub{
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .modal-foot{
      display:flex;
      gap:10px;
      padding: 12px 16px 16px;
      justify-content: flex-end;
    }

    .modal-btn{
      flex: 1;
      border: none;
      border-radius: 14px;
      padding: 12px 12px;
      font-weight: 900;
      cursor: pointer;
    }
  
    #addModal[hidden],
    #addModalBackdrop[hidden]{
      display: none !important;
    }

    .modal-label{
      display:block;
      font-weight:900;
      font-size:12.5px;
      color: var(--muted);
      margin-bottom: 8px;
      margin-top: 8px;
    }

    #extraInput{
      width: 100%;
      resize: vertical;
      min-height: 110px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      padding: 12px 12px;
      font: inherit;
      line-height: 1.35;
      outline: none;
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    #extraInput::placeholder{
      color: rgba(0,0,0,.38);
    }

    #extraInput:focus{
      border-color: rgba(255,75,31,.35);
      outline: 3px solid rgba(255,75,31,.20);
      outline-offset: 2px;
    }

    #sauceSelect{
      width: 100%;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      padding: 10px 12px;
      font: inherit;
      outline: none;
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    #sauceSelect:focus{
      border-color: rgba(255,75,31,.35);
      outline: 3px solid rgba(255,75,31,.20);
      outline-offset: 2px;
    }

    #meatSelect{
      width: 100%;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      padding: 10px 12px;
      font: inherit;
      outline: none;
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    #meatSelect:focus{
      border-color: rgba(255,75,31,.35);
      outline: 3px solid rgba(255,75,31,.20);
      outline-offset: 2px;
    }

    #baseSelect {
      width: 100%;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      padding: 10px 12px;
      font: inherit;
      outline: none;
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    #baseSelect:focus {
      border-color: rgba(255,75,31,.35);
      outline: 3px solid rgba(255,75,31,.20);
      outline-offset: 2px;
    }

    .section-title{
      display:flex;
      align-items:baseline;  
      gap:10px;
    }

    .section-sub{
      color: var(--muted);  
      font-size: 9px;    
      font-weight: 350;     
      line-height: 1.2;
      white-space: nowrap;
      opacity: .95;
    }
    
    html, body {
      height: 100%;
      margin: 0;
    }

    body {
      display: flex;
      flex-direction: column;
    }

    .wrap {
      flex: 1;
    }

    .price-row{
      display: flex;
      align-items: center;
      justify-content: flex-end;  
      gap: 8px;
    }


    .allergen-list{
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .allergen-badge{
      min-width: 16px;
      height: 16px;
      padding: 0 4px;

      display: inline-flex;
      align-items: center;
      justify-content: center;

      font-size: 10px;
      font-weight: 900;
      line-height: 1;

      border-radius: 4px;
      background: rgba(0,0,0,.06);
      color: var(--text);
    }

    #pizzaExtraList{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 12px;
    }

    .px-item{
      display:flex;
      align-items:center;
      gap:8px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    .px-item input{
      width: 18px;
      height: 18px;
    }
    .px-item span{
      font-size: 13px;
      font-weight: 800;
    }

    .tab-unterschrift {
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      font-size:18px;
      margin:0px 10px 10px;
      z-index: 50000;
    }

    #dressingSelect {
      width: 100%;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      padding: 10px 12px;
      font: inherit;
      outline: none;
      background: #fff;
      box-shadow: 0 10px 18px rgba(0,0,0,.06);
    }

    #dressingSelect:focus {
      border-color: rgba(255,75,31,.35);
      outline: 3px solid rgba(255,75,31,.20);
      outline-offset: 2px;
    }

.legend-wrap {
  margin: 40px auto 20px;
  max-width: 1200px;
  padding: 0 16px;
}

.legend-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

.legend-box {
  background: #fff7ec;
  border-radius: 4px;
  overflow: hidden;
}

.legend-head {
  background: #7b2d2b;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  padding: 10px 16px;
  font-family: inherit;
}

.legend-list {
  list-style: none;
  margin: 0;
  padding: 14px 18px;
}

.legend-list li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #222;
}

.legend-list li b {
  font-weight: 700;
}

.legend-wide .legend-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  .legend-grid {
    grid-template-columns: 1fr;
  }

  .legend-wide .legend-cols {
    grid-template-columns: 1fr;
  }

  .legend-head {
    font-size: 20px;
  }
}

.pb-cookie[hidden] { 
  display: none !important; 
}

.pb-cookie {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.pb-cookie-card {
  width: min(680px, 92vw);
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  overflow: hidden;
}

.pb-cookie-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: var(--bg);
}

.pb-cookie-title {
  font-weight: 900;
  font-size: 18px;
}

.pb-cookie-x {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.pb-cookie-text {
  margin: 0;
  padding: 14px 16px 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.5;
}

.pb-cookie-box {
  padding: 12px 16px 6px;
  display: grid;
  gap: 10px;
}

.pb-cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}

.pb-cookie-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pb-cookie-actions {
  padding: 12px 16px 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
}

.pb-cookie-btn {
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.pb-cookie-btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
}

.pb-cookie-btn.secondary {
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  color: var(--text);
}

@media (max-width: 520px) {
  .pb-cookie-actions { justify-content: stretch; }
  .pb-cookie-btn { flex: 1; }
}

.pb-switch{
  position: relative;
  width: 48px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}

.pb-switch input{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;           
}

.pb-slider{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.12);
  overflow: hidden;      
  transition: .18s ease;
  z-index: 1;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.12);
}


.pb-slider::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: .18s ease;
  z-index: 1;              
}

/* Weißer Punkt */
.pb-slider::before{
  content:"";
  position:absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  transition: .18s ease;
  z-index: 2;               /* ÜBER dem Gradient */
}

/* ON */
.pb-switch input:checked + .pb-slider{
  border-color: transparent;
}

.pb-switch input:checked + .pb-slider::after{
  opacity: 1;
}

.pb-switch input:checked + .pb-slider::before{
  transform: translate(18px, -50%);
}

/* ===== Notwendig (immer aktiv, nicht klickbar) ===== */
.pb-switch.is-locked input{
  cursor: not-allowed;
}

/* Wichtig: locked soll IMMER wie ON aussehen */
.pb-switch.is-locked input:disabled + .pb-slider{
  border-color: transparent;
}

.pb-switch.is-locked input:disabled + .pb-slider::after{
  opacity: 1;               /* Gradient dauerhaft an */
}

.pb-switch.is-locked input:disabled + .pb-slider::before{
  transform: translate(18px, -50%); /* Punkt rechts */
}

.pb-cookie-actions {
  padding: 18px;
  text-align: right;
}

.pb-cookie-btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border: none;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: 0.2s ease;
}

.pb-cookie-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

