:root{
  /* =========================
     ✅ LIGHT / LUXURY (WHITE)
     Background: white
     Text: black
     Buttons: gold
     ========================= */

  --bg:#ffffff;
  --bgSoft:#f7f7f9;

  --text:#0b0b0d;
  --muted: rgba(11,11,13,.62);

  --gold:#b48c46;
  --gold2:#e6c989;

  --card:#ffffff;
  --line: rgba(11,11,13,.10);

  --shadow: 0 14px 36px rgba(11,11,13,.10);
  --shadowSoft: 0 10px 26px rgba(11,11,13,.08);

  --radius: 18px;
  --radiusSm: 14px;

  --container: 1400px;

  /* Sticky offset used by JS */
  --stickyOffset: 0px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  color:var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  height:100%;
  background: var(--bg);
}

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

/* ✅ container */
.container{
  width:min(var(--container), calc(100% - 28px));
  margin:0 auto;
}

/* =========================
   HEADER
   ========================= */
.header{
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 0 12px;
}

/* ✅ Brand centered */
.brand{
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
  gap:10px;
}

.brand__logo{
  width: 150px;
  height: 150px;
  border-radius: 26px;
  object-fit:cover;
  border: 1px solid rgba(180,140,70,.28);
  background:#fff;
  box-shadow: 0 18px 55px rgba(11,11,13,.12);
}

.brand__title{
  margin:0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing:.3px;
  color: var(--text);
}

.brand__subtitle{
  margin:0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.25;
}

/* ✅ languages centered */
.lang{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap: wrap;
}

.lang__btn{
  border: 1px solid rgba(180,140,70,.30);
  background: linear-gradient(180deg, rgba(230,201,137,.22) 0%, rgba(180,140,70,.10) 100%);
  padding:8px 12px;
  border-radius: 12px;
  cursor:pointer;
  font-weight:900;
  color: var(--text);
  box-shadow: 0 10px 22px rgba(180,140,70,.10);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.lang__btn:hover{
  transform: translateY(-1px);
  border-color: rgba(180,140,70,.55);
  box-shadow: 0 14px 30px rgba(180,140,70,.16);
}
.lang__btn.is-active{
  border-color: rgba(180,140,70,.95);
  background: linear-gradient(180deg, rgba(230,201,137,.55) 0%, rgba(180,140,70,.22) 100%);
  box-shadow: 0 18px 40px rgba(180,140,70,.18);
}

/* =========================
   ✅ STICKY BAR (categories + notices only)
   ========================= */
#stickyBar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,140,70,.18);
  box-shadow: 0 14px 38px rgba(11,11,13,.10);
}

/* categories base */
.categories{ position: static; }

.categories__inner{
  display:grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap:10px;
  padding: 12px 0 14px;
}

/* Responsive categories */
@media (max-width: 980px){
  .categories__inner{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.catPill{
  width:100%;
  height:44px;
  padding:6px 10px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  line-height:1.12;

  background: #fff;
  border: 1px solid rgba(11,11,13,.10);
  box-shadow: var(--shadowSoft);
  color: var(--text);

  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow:hidden;
  text-overflow:ellipsis;
  text-align:center;

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.catPill:hover{
  transform: translateY(-2px);
  border-color: rgba(180,140,70,.55);
  box-shadow: 0 18px 45px rgba(11,11,13,.12);
}

.catPill.is-active{
  border-color: rgba(180,140,70,.95);
  background: linear-gradient(180deg, rgba(230,201,137,.28) 0%, rgba(180,140,70,.10) 100%);
  box-shadow: 0 22px 60px rgba(180,140,70,.16);
}

/* Notices */
.notices{
  background: transparent;
  border-top: 1px solid rgba(11,11,13,.08);
  padding:10px 0 12px;
}

.notices__inner{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.notice{
  margin:0;
  width:100%;
  text-align:center;
  font-size:13px;
  line-height:1.45;
  font-weight:900;
  letter-spacing:.15px;

  color: rgba(11,11,13,.78);
  padding:10px 12px;
  border-radius:14px;

  border: 1px solid rgba(180,140,70,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(180,140,70,.06) 100%);
  box-shadow: var(--shadowSoft);
}

/* =========================
   MAIN
   ========================= */
.main{
  padding: 18px 0 28px;
  padding-top: calc(var(--stickyOffset) + 10px);
  background: transparent;
}

/* Make section headers stop below the sticky bar */
.section{
  margin: 18px 0 26px;
  scroll-margin-top: calc(var(--stickyOffset) + 12px);
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.section__title{
  margin:0;
  font-size:18px;
  font-weight: 900;
  color: var(--text);
}

.section__subtitle{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

/* =========================
   GRID
   ✅ Desktop + Mobile: 4 per row
   ========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}

/* ✅ Mobile: still 4 per row (requested) */
@media (max-width: 680px){
  .grid{ gap: 9px; }
}

/* very small phones */
@media (max-width: 360px){
  .grid{ gap: 7px; }
}

/* =========================
   CARD
   ========================= */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  cursor:pointer;
  box-shadow: var(--shadowSoft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(180,140,70,.28);
}

.card__img{
  width:100%;
  height:230px;
  object-fit:cover;
  background: var(--bgSoft);
  border-bottom: 1px solid rgba(11,11,13,.08);
  transition: transform .22s ease, filter .22s ease;
  transform-origin:center;
}

.card:hover .card__img,
.card:focus .card__img,
.card:focus-within .card__img{
  transform: scale(1.10);
  filter: contrast(1.04) saturate(1.06);
}

/* Soft + Alcohol -> contain */
.card--soft .card__img,
.card--alcohol .card__img{
  height:260px;
  object-fit:contain;
  background:#fff;
  padding:12px;
}
.card--soft:hover .card__img,
.card--alcohol:hover .card__img{
  transform: scale(1.06);
  filter: contrast(1.03) saturate(1.05);
}

.card__body{
  padding:12px 12px 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.card__title{
  margin:0;
  font-size:15px;
  font-weight:900;
  text-align:center;
  color: var(--text);
}

/* Gluten free note under item name */
.card__gluten{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  color: rgba(180,140,70,.95);
  text-align:center;
  letter-spacing:.2px;
}
@media (max-width:560px){
  .card__gluten{ font-size:11px; }
}

/* ✅ PRICE: gold button style */
.card__price{
  width: 100%;
  background: linear-gradient(180deg, rgba(230,201,137,.70) 0%, rgba(180,140,70,.28) 100%);
  border: 1px solid rgba(180,140,70,.42);
  color: var(--text);
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  padding: 12px 10px;
  border-radius: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 26px rgba(180,140,70,.14);
}
.card__hint{
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

/* ✅ Mobile compact sizes (still 4 per row) */
@media (max-width: 680px){
  .card{ border-radius: 14px; }
  .card__body{ padding: 8px 8px 10px; gap: 6px; }

  .card__title{
    font-size: 11.2px;
    line-height: 1.15;
    letter-spacing: .12px;

    display:-webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow:hidden;
    min-height: calc(11.2px * 1.15 * 2);
  }

  .card__price{
    font-size: 11px;
    padding: 8px 6px;
    border-radius: 12px;
  }

  .card__img{
    height: 98px;
    object-fit: cover;
    background: var(--bgSoft);
  }
}

@media (max-width: 360px){
  .card__img{ height: 88px; }
  .card__title{ font-size: 10.8px; }
  .card__price{ font-size: 10.6px; padding: 7px 6px; }
}

/* =========================
   WhatsApp Floating (Gold)
   ========================= */
.whatsapp{
  position:fixed;
  bottom:16px;
  left:16px;
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;

  color: var(--text);
  background: linear-gradient(180deg, rgba(230,201,137,.85) 0%, rgba(180,140,70,.30) 100%);
  border: 1px solid rgba(180,140,70,.45);
  border-radius: 999px;
  padding:12px 14px;
  box-shadow: 0 16px 38px rgba(180,140,70,.18);
  z-index:50;
}

.whatsapp__icon{
  width:32px;height:32px;
  display:grid;place-items:center;
  border-radius:999px;
  border: 1px solid rgba(180,140,70,.55);
  font-weight:900;
  background: rgba(255,255,255,.55);
}
.whatsapp__text{ font-weight:900; }

@media (max-width: 560px){
  .main{ padding-bottom: 90px; }
}

/* =========================
   MODAL
   ========================= */
.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:80;
}
.modal.is-open{display:flex}

.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
}

.modal__card{
  position:relative;
  width:min(860px, calc(100% - 28px));
  background:#fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(11,11,13,.12);
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.modal.is-open .modal__card{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__close{
  position:absolute;
  top:10px;
  inset-inline-end:10px;
  width:40px;height:40px;
  border-radius: 14px;
  border: 1px solid rgba(11,11,13,.12);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  color: var(--text);
}

/* ✅ Image BEFORE text */
.modal__content{
  display:flex;
  flex-direction: row;
  align-items: stretch;
}

.modal__image{
  width:100%;
  object-fit:contain;
  background:#fff;
  max-height: 300px;
  flex: 1 1 55%;
  order: 0;
}

.modal__info{
  padding:18px 18px 22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex: 1 1 45%;
  order: 1;
}

.modal__title{
  margin:0;
  font-size:22px;
  font-weight:900;
  color: var(--text);
}

.modal__price{
  font-weight:900;
  font-size:16px;
  color: rgba(180,140,70,.95);
}

.modal__desc{
  margin:0;
  color: rgba(11,11,13,.72);
  line-height:1.6;
  font-size:14px;
  text-align:center;
  font-weight: 800;
}

/* Mobile modal */
@media (max-width: 820px){
  .modal__content{ flex-direction: column; }
  .modal__image{ max-height: 210px; width: 100%; }
}

/* =========================
   Variant buttons (Gold)
   ========================= */
.variantButtons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 10px;
  justify-content:center;
}

.variantBtn{
  border: 1px solid rgba(180,140,70,.35);
  background: linear-gradient(180deg, rgba(230,201,137,.22) 0%, rgba(180,140,70,.10) 100%);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(180,140,70,.10);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.variantBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(180,140,70,.65);
  box-shadow: 0 16px 30px rgba(180,140,70,.16);
}

.variantBtn.is-active{
  border-color: rgba(180,140,70,.95);
  background: linear-gradient(180deg, rgba(230,201,137,.60) 0%, rgba(180,140,70,.18) 100%);
  box-shadow: 0 18px 40px rgba(180,140,70,.18);
}

@media (max-width: 560px){
  .variantBtn{ width: 100%; text-align:center; }
}

/* =========================
   REVIEWS
   ========================= */
.reviews{
  margin: 22px 0 10px;
  padding: 16px 0 4px;
  border-top: 1px solid rgba(11,11,13,.10);
}

.reviews__slider{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}

.reviews__nav{
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid rgba(180,140,70,.35);
  background: linear-gradient(180deg, rgba(230,201,137,.22) 0%, rgba(180,140,70,.10) 100%);
  color: var(--text);
  cursor:pointer;
  font-size:26px;
  line-height:1;
  display:grid;place-items:center;
  box-shadow: 0 10px 22px rgba(180,140,70,.10);
}

.reviews__viewport{
  flex:1;
  overflow:hidden;
  border-radius: 20px;
  border: 1px solid rgba(11,11,13,.10);
  background: #fff;
  box-shadow: var(--shadowSoft);
}

.reviews__track{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}

.review{ min-width:100%; padding:16px 16px 18px; }
.review__name{ font-weight:900; margin:0 0 6px; color: var(--text); }
.review__text{ margin:0; color: var(--muted); line-height:1.6; }

.reviews__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}

.dot{
  width:9px;height:9px;
  border-radius:999px;
  border: 1px solid rgba(11,11,13,.14);
  background: rgba(11,11,13,.08);
  cursor:pointer;
}
.dot.is-active{
  border-color: rgba(180,140,70,.95);
  background: rgba(180,140,70,.55);
}

/* =========================
   FOOTER (White + Gold)
   ========================= */
.footer{
  margin-top: 28px;
  border-top: 1px solid rgba(180,140,70,.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

.footer__grid{
  padding: 22px 0 16px;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap:18px;
}
@media (max-width: 980px){ .footer__grid{grid-template-columns: 1fr 1fr;} }
@media (max-width: 560px){ .footer__grid{grid-template-columns: 1fr;} }

.footer__logo{
  width:64px;height:64px;
  border-radius: 18px;
  border: 1px solid rgba(180,140,70,.28);
  object-fit:cover;
  box-shadow: 0 16px 45px rgba(11,11,13,.10);
}

.footer__tagline{
  margin:10px 0 12px;
  font-weight:900;
  color: var(--text);
}

.footer__social{ display:flex; gap:10px; flex-wrap:wrap; }

.social{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(180,140,70,.28);
  text-decoration:none;
  color: var(--text);
  font-weight:900;
  background: linear-gradient(180deg, rgba(230,201,137,.20) 0%, rgba(180,140,70,.08) 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 10px 22px rgba(180,140,70,.10);
  transition: transform .15s ease, border-color .15s ease;
}
.social:hover{
  transform: translateY(-2px);
  border-color: rgba(180,140,70,.60);
}

.footer__title{
  margin:0 0 10px;
  font-size:13px;
  font-weight:900;
  color: rgba(180,140,70,.95);
  letter-spacing:.35px;
  text-transform: uppercase;
}
.footer__title--mt{margin-top:14px}

.footer__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  color: var(--muted);
}

.footer__link{
  color: var(--text);
  text-decoration:none;
  font-weight:900;
}
.footer__link:hover{ color: rgba(180,140,70,.95); }

.footer__address{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

.map__wrap{
  border: 1px solid rgba(11,11,13,.10);
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadowSoft);
}

.map__wrap iframe{
  width:100%;
  height:220px;
  border:0;
}

.footer__bottom{
  border-top: 1px solid rgba(11,11,13,.08);
  padding:12px 0;
  color: rgba(11,11,13,.55);
  font-size:13px;
}

/* =========================
   ICONS helpers
   ========================= */
.u-visuallyHidden{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.social__text{ display:none; }
.icon{ width:22px; height:22px; display:block; }
.icon--social{ width:20px; height:20px; }
.icon--phone{ width:18px; height:18px; opacity:.95; }

/* ✅ Footer contact rows + phone formatting */
.footer__contactItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,11,13,.10);
  background: #fff;
  box-shadow: var(--shadowSoft);
}

.footer__phone{
  direction:ltr;
  unicode-bidi:isolate;
  white-space:nowrap;
  letter-spacing:.35px;
  font-weight:900;
  color: var(--text);
}

/* =====================================================
   ✅ MOBILE: categories row horizontal (still premium)
   ===================================================== */
@media (max-width: 560px){

  #stickyBar .categories__inner{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    gap:8px;
    padding:8px 6px;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
  }

  #stickyBar .catPill{
    flex:0 0 auto;
    width:auto;
    min-width:92px;
    height:30px;
    padding:0 12px;

    font-size:11px;
    font-weight:900;
    border-radius:999px;

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

    white-space:nowrap;
    line-height:1;
    -webkit-line-clamp: 1;
  }

  #stickyBar .notices{ padding:6px 0 8px; }
  #stickyBar .notice{
    font-size:10.8px;
    padding:7px 8px;
    line-height:1.2;
    border-radius:12px;
  }
}

/* =====================================================
   ✅ Touch devices: no aggressive hover zoom
   ===================================================== */
@media (hover: none), (pointer: coarse){
  .card:hover .card__img,
  .card:focus .card__img,
  .card:focus-within .card__img{
    transform: none !important;
    filter: none !important;
  }

  .card--soft:hover .card__img,
  .card--alcohol:hover .card__img{
    transform: none !important;
    filter: none !important;
  }
}
