:root{
  --bg:#F5F1E8;
  --ink:#1E1E1E;
  --coffee:#6B4F3A;
  --olive:#7A8C66;
  --gold:#C6A75E;
  --card:#FFFFFF;
  --line:rgba(30,30,30,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:-0.01em;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px 60px;
}

.hero{
  position:relative;
  height:min(78vh,720px);
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(198,167,94,.28), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(122,140,102,.22), transparent 55%),
    linear-gradient(120deg, rgba(0,0,0,.45), rgba(0,0,0,.15)),
    url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=1800&q=80');
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  align-items:flex-end;
  padding:28px 18px;
}

.hero__content{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding:22px 18px;
  box-shadow: var(--shadow);
}

.brand{
  font-family:"Cormorant Garamond", serif;
  font-size:42px;
  letter-spacing:0.12em;
}
.tagline{
  margin-top:6px;
  opacity:.92;
  font-weight:300;
}
.hero__actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}
.hero__note{
  margin-top:12px;
  font-size:13px;
  opacity:.85;
}

.toolbar{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}
.search input{
  width:min(420px, 92vw);
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  outline:none;
  background:rgba(255,255,255,.6);
}
.search input:focus{border-color: rgba(198,167,94,.75);}

.chips{
  display:flex;
  gap:8px;
  overflow:auto;
  padding-bottom:6px;
  max-width:100%;
}
.chip{
  white-space:nowrap;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
  color:var(--ink);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  cursor:pointer;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
}
.chip:hover{transform:translateY(-1px)}
.chip--active{
  background:rgba(198,167,94,.20);
  border-color: rgba(198,167,94,.70);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
  margin-top:18px;
}

.card{
  grid-column: span 12;
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  cursor:pointer;
  transition: transform .08s ease, border-color .2s ease;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.card:hover{transform:translateY(-1px); border-color: rgba(198,167,94,.55);}
.card__left{min-width:0}
.card__title{font-weight:500}
.card__meta{
  margin-top:4px;
  font-size:12px;
  opacity:.75;
}
.card__price{
  font-weight:500;
  color:var(--coffee);
  white-space:nowrap;
}

@media (min-width:720px){
  .card{grid-column: span 6;}
}
@media (min-width:980px){
  .card{grid-column: span 4;}
}

.btn{
  border:none;
  border-radius:999px;
  padding:12px 14px;
  font-weight:500;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn--primary{background:#111; color:#fff;}
.btn--ghost{background:rgba(255,255,255,.18); color:#fff; border:1px solid rgba(255,255,255,.22);}
.btn--wa{background: var(--olive); color:#fff;}
.iconbtn{
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  cursor:pointer;
}

.modal{position:fixed; inset:0; display:none; z-index:50;}
.modal[aria-hidden="false"]{display:block;}
.modal__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.45);}
.modal__card{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(560px, 92vw);
  background:var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
}
.modal__close{position:absolute; right:10px; top:10px; background:rgba(255,255,255,.85)}
.modal__img{
  height:170px;
  background:
    radial-gradient(800px 240px at 30% 40%, rgba(198,167,94,.28), transparent 60%),
    radial-gradient(600px 220px at 75% 10%, rgba(122,140,102,.22), transparent 60%),
    linear-gradient(120deg, rgba(0,0,0,.12), rgba(0,0,0,.02));
}
.modal__body{padding:16px;}
.modal__title{font-size:18px; font-weight:600}
.modal__desc{margin-top:6px; font-size:13px; opacity:.78}
.row{margin-top:14px; display:flex; align-items:center; justify-content:space-between; gap:12px;}
.label{font-size:13px; opacity:.8}
.seg{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end;}
.seg button{
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
}
.seg button.active{
  border-color: rgba(198,167,94,.70);
  background:rgba(198,167,94,.18);
}
.qty{display:flex; align-items:center; gap:10px;}
.qty__val{min-width:26px; text-align:center; font-weight:600;}
.modal__footer{
  margin-top:16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.price{font-weight:600; color:var(--coffee);}

.drawer{position:fixed; inset:0; display:none; z-index:60;}
.drawer[aria-hidden="false"]{display:block;}
.drawer__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.40);}
.drawer__panel{
  position:absolute;
  right:0; top:0; bottom:0;
  width:min(420px, 92vw);
  background:var(--card);
  border-left:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.drawer__header{
  padding:14px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.drawer__title{font-weight:600}
.drawer__content{padding:14px; overflow:auto; flex:1}
.lineitem{
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.lineitem__top{display:flex; justify-content:space-between; gap:10px;}
.lineitem__name{font-weight:500}
.lineitem__meta{margin-top:4px; font-size:12px; opacity:.75}
.lineitem__actions{margin-top:8px; display:flex; align-items:center; gap:8px;}
.small{font-size:12px; opacity:.75; margin-top:10px;}
.drawer__footer{padding:14px; border-top:1px solid var(--line);}
.total{display:flex; justify-content:space-between; margin-bottom:10px;}

.footer{padding:26px 18px; border-top:1px solid rgba(30,30,30,.10);}
.footer__inner{max-width:1100px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;}
.footer__brand{font-family:"Cormorant Garamond", serif; font-size:18px; letter-spacing:.08em;}
.footer__fineprint{font-size:12px; opacity:.75;}

/* Destaques */
.highlights{margin-top:6px;}
.sectionTitle h2{
  font-family:"Cormorant Garamond", serif;
  letter-spacing:.06em;
  margin:0;
}
.sectionTitle p{margin:6px 0 0; opacity:.75; font-size:13px;}
.highlightRow{
  display:flex;
  gap:12px;
  overflow:auto;
  padding:14px 0 6px;
}
.hCard{
  min-width:240px;
  max-width:240px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  cursor:pointer;
  transition: transform .08s ease, border-color .2s ease;
}
.hCard:hover{transform:translateY(-1px); border-color: rgba(198,167,94,.55);}
.hCard__img{
  height:104px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.hCard__img::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.35));
}
.hCard__body{padding:12px;}
.hCard__title{font-weight:600;}
.hCard__meta{margin-top:4px; font-size:12px; opacity:.75;}
.hCard__price{margin-top:10px; color:var(--coffee); font-weight:600;}


.card__head{display:flex; align-items:center; gap:10px; min-width:0;}
.thumb{
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: radial-gradient(80px 80px at 30% 30%, rgba(198,167,94,.22), transparent 60%),
              radial-gradient(70px 70px at 70% 20%, rgba(122,140,102,.18), transparent 60%);
  background-size:cover;
  background-position:center;
  flex:0 0 auto;
}
