:root{
  --pch:#874435;
  --pch2:#6E3A30;
  --bg:#F6F2EE;
  --text:#1A0F0D;
  --muted:#6B4A44;
  --card:#FFFFFF;
  --ring: rgba(135, 68, 53, .18);
  --border: rgba(78, 42, 38, .10);
  --chipActiveBg:#F0E2DB;
  --chipActiveBorder: rgba(135, 68, 53, .35);
}
html{ scroll-behavior:smooth }
body{
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid rgba(255,255,255,0);
  backdrop-filter: none;
}
.topbar.scrolled{
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 10px 30px rgba(2,6,23,.10);
}
.brand-logo{
  width:52px;height:52px;border-radius:12px;
  overflow:hidden;background:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
}
.brand-logo img{ width:100%; height:100%; object-fit:contain; }
.meta-dot{ width:5px;height:5px;border-radius:999px;background:#cbd5e1; display:inline-block; margin:0 .45rem }

/* Buttons */
.btn-pch{
  background:var(--pch);
  color:#fff;border:none;
  font-weight:700;border-radius:999px;
  padding:.45rem .8rem;font-size:14px;
  box-shadow:0 10px 24px rgba(135,68,53,.20);
}
.btn-pch:hover{ background:var(--pch2); color:#fff }
#viewOrderBtn{ display:flex; align-items:center; gap:10px; }
#viewOrderBtn .badge{ font-size:12px; padding:.35em .55em; }

/* Cover */
.cover{ height:320px; position:relative; overflow:hidden; border-bottom:1px solid var(--border); }
.cover img{ width:100%; height:100%; object-fit:cover; transform:scale(1.03) }
.cover::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,0) 100%);
}
.cover-card{
  position:absolute; left:50%; transform:translateX(-50%); bottom:16px;
  width:min(980px, calc(100% - 24px));
  background:#fff; border:1px solid var(--border); border-radius:18px;
  padding:14px 14px; box-shadow:0 18px 55px rgba(2,6,23,.12);
  display:flex; gap:12px; align-items:center;
}
.cover-title{ font-size:1.1rem; font-weight:900; margin:0 }
.cover-sub{ margin:0; color:var(--muted); font-size:.95rem }

/* Categories bar */
.cats{
  position:sticky; top:58px; z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.cat-row{
  display:flex; gap:.55rem; overflow:auto; padding:.65rem .25rem;
  scrollbar-width:none;
}
.cat-row::-webkit-scrollbar{ display:none }
.chip{
  white-space:nowrap;
  border-radius:999px;
  padding:.45rem .85rem;
  font-weight:800;
  border:1px solid rgba(15,23,42,.10);
  background:#fff; color:var(--text);
  text-decoration:none;
  transition:.15s;
  font-size:13px;
}
.chip:hover{ transform:translateY(-1px); box-shadow:0 10px 22px rgba(2,6,23,.08) }
.chip.active{
  background:var(--chipActiveBg);
  border-color:var(--chipActiveBorder);
  color:var(--pch2);
  box-shadow:0 10px 26px rgba(135,68,53,.12);
}

/* Section headers */
.section-title{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  scroll-margin-top: 130px;
}
.section-title h3{
  margin:0;
  font-size:1.1rem;
  font-weight:800;
  letter-spacing:.02em;
}

/* Product grid */
.product-slider{
  display:flex; flex-wrap:wrap; gap:14px;
  overflow-x:visible;
  padding:6px 0 12px;
}
.product-slide{ flex:0 0 calc((100% - 28px) / 3); }
@media (max-width: 992px){ .product-slide{ flex-basis: calc((100% - 14px) / 2); } }
@media (max-width: 576px){ .product-slide{ flex-basis: 100%; } }

/* Wolt-like compact card */
.item-card.compact{
  display:flex; align-items:stretch; justify-content:space-between;
  padding:16px; border-radius:16px;
  height:160px; gap:14px;
  background:var(--card);
  border:1px solid var(--border);
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  transition:.18s;
}
.item-card.compact:hover{
  transform:translateY(-2px);
  box-shadow: 0 20px 52px rgba(2,6,23,.10);
}
.item-card.compact .item-body{
  padding:0;
  display:flex; flex-direction:column; justify-content:space-between;
  flex:1; min-width:0;
}
.item-card.compact .item-name{
  font-size:16px; font-weight:900; margin:0;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden;
}
.item-card.compact .item-price{
  font-size:14px; font-weight:900; margin-top:10px; color:var(--pch);
}
.item-card.compact .item-img{
  width:42%; max-width:210px; min-width:170px;
  aspect-ratio: 1 / 1;
  border-radius:14px; overflow:hidden;
  position:relative; flex:0 0 auto;
  background:#f1f5f9;
}
.item-card.compact .item-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.plus-btn{
  position:absolute; top:10px; right:10px;
  width:36px; height:36px; border-radius:12px;
  border:none; background:#f6f2ee; color:#a46e5c;
  font-weight:1000; font-size:22px;
  display:grid; place-items:center;
  box-shadow:0 10px 22px rgba(2,6,23,.12);
}
@media (max-width: 576px){
  .item-card.compact{ padding:14px; min-height:140px; height:auto; }
  .item-card.compact .item-img{ min-width:140px; max-width:160px; width:44%; border-radius:12px; }
}

/* CART overlay + drawer */
#orderOverlay{
  position:fixed; inset:0;
  background:rgba(2,6,23,.55);
  opacity:0; pointer-events:none;
  transition:.25s; z-index:40;
}
#orderOverlay.active{ opacity:1; pointer-events:auto }

#orderDrawer{
  position:fixed; top:0; right:-460px;
  width:min(460px, 100%);
  height:100%;
  background:#fff;
  z-index:50;
  transition:.25s;
  display:flex; flex-direction:column;
  box-shadow:-24px 0 70px rgba(2,6,23,.20);
}
#orderDrawer.open{ right:0 }
.drawer-header{
  padding:14px 16px;
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
}
.drawer-title{ margin:0; font-weight:1000; font-size:1.02rem }
.drawer-body{ padding:16px; flex:1; overflow:auto }
.drawer-footer{
  padding:16px;
  border-top:1px solid var(--border);
  background:linear-gradient(180deg,#fff, #f8fafc);
}
.cart-row{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  margin-bottom:10px;
  display:flex;
  gap:12px;
  align-items:center;
}
.cart-thumb{
  width:52px;height:52px;border-radius:12px;
  overflow:hidden;border:1px solid rgba(15,23,42,.08);
  background:#f1f5f9; flex:0 0 auto;
}
.cart-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.cart-main{ flex:1; min-width:0; }
.cart-name{
  font-weight:900; font-size:14px; margin:0;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cart-each{ color:var(--muted); font-weight:700; font-size:12.5px; }
.qty{
  display:flex; align-items:center; gap:8px;
  background:#f1f5f9; border:1px solid var(--border);
  border-radius:999px; padding:5px 8px;
}
.qty button{
  width:24px;height:24px;border-radius:999px;
  border:none;background:#fff;font-weight:1000;
  box-shadow:0 6px 14px rgba(2,6,23,.08);
  font-size:14px; line-height:1;
}
.qty span{ min-width:16px; text-align:center; font-weight:900; font-size:13px; }
.small-muted{ color:var(--muted); font-weight:700; font-size:.92rem }
.summary-box{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid var(--border);
}
@media (max-width: 768px){
  #viewOrderBtn{
    position:fixed;
    left:50%; transform:translateX(-50%);
    bottom:16px;
    z-index:30;
  }
  .cats{ top:56px }
}
a:focus, button:focus{
  outline: none !important;
  box-shadow: 0 0 0 6px var(--ring) !important;
}

/* Checkout payment choices */
.pay-choice{
  border:1px solid rgba(15,23,42,.12);
  border-radius:14px;
  padding:12px 12px;
  background:#fff;
  cursor:pointer;
}
.pay-choice input{ cursor:pointer; }
.pay-choice:hover{ box-shadow:0 10px 22px rgba(2,6,23,.08); transform:translateY(-1px); transition:.15s; }
.pay-choice.disabled{ opacity:.6; pointer-events:none; background:#f8fafc; }

/* Footer */
.pch-footer{
  margin-top:70px;
  padding:28px 0;
  background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(246,242,238,.95));
  border-top:1px solid var(--border);
}
.footer-muted{ color:var(--muted); font-weight:700; font-size:13px; }
.footer-small{ color:#8B6B62; font-size:12px; font-weight:600; }
/* LOGIN BUTTON */

.btn-login{
  padding:7px 16px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  color:white;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  transition:.15s;
}

.btn-login:hover{
  background:var(--pch2);
  transform:translateY(-1px);
}


/* REGISTER BUTTON */

.btn-register{
  padding:7px 18px;
  border-radius:999px;
  background:var(--pch);
  color:white;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(135,68,53,.25);
  transition:.15s;
}

.btn-register:hover{
  background:var(--pch2);
  transform:translateY(-1px);
}


/* CART BUTTON */

.btn-cart{
  display:flex;
  align-items:center;
  gap:10px;
  padding:7px 14px;
  border-radius:999px;
  border:none;
  background:#111;
  color:#fff;
  font-weight:800;
}

.cart-count{
  background:#fff;
  color:#000;
  padding:2px 7px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}


/* USER MENU */

.user-menu{
  position:relative;
}

.user-avatar{
  width:36px;
  height:36px;
  border-radius:999px;
  background:var(--pch);
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.user-dropdown{
  position:absolute;
  right:0;
  top:45px;
  background:#fff;
  border-radius:12px;
  border:1px solid var(--border);
  box-shadow:0 14px 40px rgba(0,0,0,.15);
  display:none;
  min-width:180px;
  overflow:hidden;
}

.user-dropdown a{
  display:block;
  padding:11px 14px;
  text-decoration:none;
  color:#111;
  font-weight:600;
}

.user-dropdown a:hover{
  background:#f8fafc;
}

.user-menu:hover .user-dropdown{
  display:block;
}
/* Avatar Button */
.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    font-weight: 600;
    font-size: 16px;
    color: white;
    background: #6e3a30;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    min-width: 220px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Dropdown Items */
.dropdown-item {
    padding: 10px 18px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    font-size: 18px;
}

.dropdown-item:hover {
    background: #f3f4f6;
    padding-left: 22px;
}

/* Logout Hover */
.dropdown-item.text-danger:hover {
    background: rgba(220, 38, 38, 0.08);
}

/* Divider */
.dropdown-divider {
    margin: 6px 0;
}
.pay-card{
display:flex;
gap:12px;
align-items:center;
padding:12px;
border-radius:12px;
border:1px solid #e6e6e6;
cursor:pointer;
background:white;
}

.pay-card input{
margin-top:3px;
}

.pay-card:hover{
background:#f7f7f7;
}

.pay-card.disabled{
opacity:.6;
pointer-events:none;
}
.checkout-modal{
border-radius:20px;
overflow:hidden;
}

.checkout-side{
background:#f8fafc;
padding:32px;
border-left:1px solid rgba(0,0,0,.06);
}

.pay-box{
display:flex;
gap:12px;
align-items:flex-start;
border:1px solid #e6e6e6;
padding:14px;
border-radius:12px;
background:white;
margin-bottom:10px;
cursor:pointer;
}

.pay-box:hover{
border-color:#000;
}

.pay-box input{
margin-top:4px;
}

.pay-box.disabled{
opacity:.5;
pointer-events:none;
}

.btn-confirm{
background:#111;
color:white;
border:none;
padding:14px;
border-radius:12px;
font-weight:700;
font-size:16px;
}

.btn-confirm:hover{
background:#000;
}

.btn-cancel{
border:1px solid #e6e6e6;
background:white;
padding:12px;
border-radius:12px;
}
.checkout-modal{
border-radius:22px;
overflow:hidden;
}

.checkout-left{
padding:32px;
}

.checkout-right{
background:#f8fafc;
padding:32px;
border-left:1px solid rgba(0,0,0,.06);
}

.pay-card{
display:flex;
gap:12px;
align-items:flex-start;
border:1px solid #e6e6e6;
padding:14px;
border-radius:14px;
background:white;
cursor:pointer;
}

.pay-card:hover{
border-color:#000;
}

.pay-card input{
margin-top:4px;
}

.pay-card.disabled{
opacity:.5;
pointer-events:none;
}

.btn-confirm{
background:#111;
color:white;
border:none;
padding:15px;
border-radius:14px;
font-weight:800;
font-size:16px;
}

.btn-confirm:hover{
background:#000;
}

.btn-cancel{
border:1px solid #e6e6e6;
background:white;
padding:13px;
border-radius:14px;
font-weight:600;
}
.delivery-switch{
display:flex;
gap:10px;
}

.delivery-pill{
flex:1;
border:1px solid #eee;
border-radius:12px;
padding:10px;
display:flex;
align-items:center;
justify-content:center;
gap:6px;
cursor:pointer;
font-weight:600;
background:#fafafa;
transition:all .2s;
}

.delivery-pill input{
display:none;
}

.delivery-pill:hover{
border-color:#6e3a30;
}

.delivery-pill.active{
background:#6e3a30;
color:#fff;
border-color:#6e3a30;
}
.pay-card{
display:flex;
align-items:center;
gap:10px;
border:1px solid #eee;
border-radius:14px;
padding:14px;
cursor:pointer;
transition:all .2s;
}

.pay-card:hover{
border-color:#6e3a30;
background:#fafafa;
}

.pay-card input{
margin-right:6px;
}

.pay-card input:checked + div{
font-weight:700;
color:#6e3a30;
}
.checkout-right{
background:#fafafa;
border-left:1px solid #eee;
}

.checkout-right h5{
font-weight:700;
}

#checkoutTotalBig{
font-size:20px;
color:#6e3a30;
}
.btn-confirm{
background:#000;
color:#fff;
border-radius:14px;
padding:14px;
font-weight:700;
font-size:16px;
transition:all .2s;
}

.btn-confirm:hover{
background:#6e3a30;
}
.delivery-pill{
flex:1;
border:1px solid #eee;
border-radius:14px;
padding:12px;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
cursor:pointer;
font-weight:600;
background:#fafafa;
transition:all .25s ease;
transform:scale(1);
}

.delivery-pill:hover{
border-color:#6e3a30;
}

.delivery-pill.active{
background:#6e3a30;
color:#fff;
border-color:#6e3a30;
transform:scale(1.02);
box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.pay-card{
display:flex;
align-items:center;
gap:10px;
border:1px solid #eee;
border-radius:14px;
padding:14px;
cursor:pointer;
transition:all .2s ease;
}

.pay-card:hover{
border-color:#6e3a30;
background:#fafafa;
}

.pay-card.active{
border-color:#6e3a30;
background:#fff6f3;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}
@media (max-width: 768px){

.checkout-right{
position:sticky;
bottom:0;
background:#fff;
border-top:1px solid #eee;
padding-bottom:20px;
}

#checkoutTotalBig{
font-size:22px;
}

.btn-confirm{
position:sticky;
bottom:10px;
}

}
.btn-confirm{
background:#000;
color:#fff;
border-radius:16px;
padding:14px;
font-weight:700;
font-size:16px;
transition:all .2s ease;
}

.btn-confirm:hover{
background:#6e3a30;
transform:translateY(-1px);
}
/* TOPBAR BUTTONS */

.btn-login{
   padding:7px 18px;
  border-radius:999px;
  background:var(--pch);

  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(135,68,53,.25);
  transition:.15s;
}

.btn-register{
  background:#8b4b3a;
  color:white;
  border-radius:999px;
  padding:6px 14px;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
}

/* MOBILE FIX */

@media (max-width:768px){

  .topbar .container{
    gap:6px;
  }

  .btn-login,
  .btn-register{
    font-size:12px;
    padding:5px 10px;
  }

  .brand-logo img{
    width:32px;
  }

}

@media (max-width:480px){

  .btn-register{
    display:none;
  }

}
/* TOPBAR FIX */

.topbar .container{
  display:flex;
  align-items:center;
  gap:10px;
}

/* restaurant info mos u thy në dy rreshta */

.topbar .lh-sm{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* mos u shrink logo */

.brand-logo{
  flex-shrink:0;
}

/* login mos shty layout */

.btn-login,
.btn-register{
  flex-shrink:0;
}

/* MOBILE */

@media (max-width:768px){

  .topbar .lh-sm{
    max-width:140px;
  }

  .topbar strong{
    font-size:13px;
  }

  .topbar .small{
    font-size:11px;
  }

}
.btn-cart{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
z-index:999;
}
/* TOPBAR LAYOUT FIX */

.topbar .container{
display:flex;
align-items:center;
gap:10px;
}

/* restaurant info */

.restaurant-info{
display:flex;
flex-direction:column;
line-height:1.1;
overflow:hidden;
}

/* title */

.restaurant-info strong{
font-size:14px;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

/* subtitle */

.restaurant-info .small{
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

/* logo */

.brand-logo{
flex-shrink:0;
}

/* right side buttons */

.btn-login,
.btn-register{
flex-shrink:0;
}

/* MOBILE FIX */

@media (max-width:768px){

.topbar .container{
padding-left:10px;
padding-right:10px;
}

.restaurant-info{
max-width:140px;
}

.btn-login{
padding:4px 10px;
font-size:12px;
}

.btn-register{
display:none;
}

}


.pay-card{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  cursor:pointer;
  transition:.2s ease;
  background:#fff;
}

.pay-card:hover{
  border-color:#c9a295;
  box-shadow:0 10px 25px rgba(110,58,48,.08);
}

.pay-card.active{
  border-color:#6e3a30;
  background:#fff8f6;
  box-shadow:0 10px 25px rgba(110,58,48,.12);
}

.pay-card input{
  margin-top:4px;
}

.pay-card.disabled{
  opacity:.55;
  pointer-events:none;
}

.btn-confirm{
  border:none;
  border-radius:14px;
  padding:14px 18px;
  font-weight:700;
  background:linear-gradient(135deg,#6e3a30,#a86452);
  color:#fff;
}

.btn-cancel{
  border:none;
  border-radius:14px;
  padding:12px 18px;
  background:#f3f4f6;
  font-weight:600;
}
.pch-footer{
  padding: 28px 0 40px;
}

.footer-shell{
  background: linear-gradient(135deg, #6e3a30, #8b4a3c);
  color: #fff;
  border-radius: 28px;
  padding: 26px 28px;
  box-shadow: 0 18px 40px rgba(110,58,48,.18);
}

.footer-brand{
  font-size: 1.2rem;
  letter-spacing: .02em;
}

.footer-muted{
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  margin-top: 4px;
}

.footer-small{
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}

.footer-logo{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.footer-logo img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-links{
  margin-top: 4px;
}

.footer-link{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}

.footer-link:hover{
  color: #fff;
  background: rgba(255,255,255,.10);
}

.footer-badge{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
}

@media (max-width: 991.98px){
  .footer-shell{
    text-align: center;
  }
}
.topbar-premium{
  padding: 10px 0;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.topbar-shell{
  min-height: 76px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 24px;
  padding: 10px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.brand-logo-wrap{
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  min-width: 0;
}

.brand-logo-box{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6e3a30, #9a5a49);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(110,58,48,.22);
  flex-shrink: 0;
}

.brand-logo-box img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.restaurant-name{
  display: block;
  font-size: 1rem;
  letter-spacing: .02em;
  color: #241715;
}

.restaurant-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .86rem;
  color: #7a6d69;
  margin-top: 2px;
}

.premium-avatar{
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e3a30, #8e5242);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(110,58,48,.18);
}

.premium-login{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  background: rgba(255, 247, 244, .92);
  color: #6e3a30;
  border: 1px solid rgba(110, 58, 48, .10);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(110,58,48,.08);
  transition: all .2s ease;
}

.premium-login:hover{
  background: #fdf0eb;
  color: #6e3a30;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(110,58,48,.12);
}

.premium-cart{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px 12px 14px;
  background: linear-gradient(135deg, #6e3a30, #8a4b3d);
  color: #fff;
  box-shadow: 0 14px 26px rgba(110,58,48,.22);
}

.premium-cart .cart-label{
  font-weight: 700;
}

.premium-dropdown{
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.cover-premium{
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.cover-premium > img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20,12,10,.70), rgba(20,12,10,.18)),
    linear-gradient(to right, rgba(110,58,48,.20), rgba(0,0,0,0));
}

.premium-cover-card{
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.premium-cover-card .cover-title{
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.premium-cover-card .cover-sub{
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  margin-bottom: 16px;
}

.cover-meta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cover-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
}

@media (max-width: 767.98px){
  .topbar-shell{
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand-logo-box{
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .brand-logo-box img{
    width: 28px;
    height: 28px;
  }

  .restaurant-name{
    font-size: .94rem;
  }

  .restaurant-meta{
    font-size: .78rem;
  }

  .premium-cart{
    padding: 11px 14px;
  }

  .premium-cart .cart-label{
    display: none;
  }

  .cover-premium{
    min-height: 300px;
  }

  .premium-cover-card{
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 22px;
  }
}