*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  background:#7fb3a8;
  display:flex;
  justify-content:center;
}

/* APP */

.app{
  width:100%;
  max-width:430px;
  min-height:100vh;
  background:linear-gradient(180deg,#7fb3a8,#6ea79c);
  position:relative;
  overflow:hidden;
}

/* BACK BUTTON */

.back-btn{
  position:absolute;
  top:18px;
  left:18px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  background:rgba(255,255,255,0.92);
  color:#6b3b1f;
  padding:10px 14px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.back-btn:active{
  transform:scale(.97);
}

.back-btn:focus-visible{
  outline:2px solid rgba(255,79,163,0.6);
  outline-offset:3px;
}

/* HERO */

.hero{
  padding:60px 26px 40px;
  color:#4a2a14;
}

.badge{
  color:#ff4fa3;
  font-weight:700;
  font-size:.8rem;
  letter-spacing:2px;
  margin-bottom:10px;
}

.script{
  font-family:'Playfair Display', serif;
  font-size:2.2rem;
}

.title{
  font-size:4rem;
  font-weight:800;
  line-height:1;
}

.subtitle{
  margin-top:10px;
  font-size:.95rem;
  max-width:300px;
}

/* CATEGORY PILLS */

.categories{
  scroll-snap-type:x mandatory;
  display:flex;
  gap:10px;
  overflow-x:auto;
  margin:18px 0 10px;
  padding-bottom:6px;
}

.categories::-webkit-scrollbar{
  display:none;
}

.pill{
  cursor:pointer;
  scroll-snap-align:start;
  background:white;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  font-size:.85rem;
  white-space:nowrap;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

/* MENU */

.menu{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);
  border-radius:45px 45px 0 0;
  margin-top:20px;
  padding:28px 20px 130px;
  box-shadow:0 -20px 60px rgba(0,0,0,0.12);
}

.section{
  margin-bottom:38px;
}

.section-title{
  font-size:1.6rem;
  font-weight:800;
  color:#6b3b1f;
  margin-bottom:16px;
}

.card{
  background:white;
  border-radius:22px;
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:.25s;
}

.card:active{
  transform:scale(.97);
}

.name{
  font-weight:700;
}

.desc{
  font-size:.82rem;
  opacity:.7;
  margin-top:4px;
}

.price{
  font-weight:800;
  color:#6b3b1f;
  white-space:nowrap;
}

/* FLOAT BUTTON */

.order{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  max-width:380px;
  padding:18px;
  border:none;
  border-radius:20px;
  background:#6b3b1f;
  color:white;
  font-weight:800;
  font-size:1rem;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

/* DESKTOP PREVIEW */

@media(min-width:768px){
  body{
    background:#e6f2ef;
  }

  .app{
    margin:40px 0;
    border-radius:40px;
    box-shadow:0 40px 120px rgba(0,0,0,.25);
  }
}
