:root{
  --bg:#0b0c10;
  --panel:#111319;
  --panel2:#0f1116;
  --text:#f5f7ff;
  --muted:#b8bfd6;
  --brand:#ffb400; /* mango */
  --brand2:#ff3b30; /* chilli */
  --brand3:#18c56e; /* leaf */
  --stroke:rgba(255,255,255,.08);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

/* ===== Theme Song Button ===== */
.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #c4161c, #ff7a00);
  color: #fff;
  box-shadow: 0 10px 25px rgba(196, 22, 28, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* subtle shine effect */
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: left 0.6s ease;
}

.theme-btn:hover::before {
  left: 120%;
}

.theme-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.45);
}

.theme-btn:active {
  transform: scale(0.96);
}

/* playing state */
.theme-btn.playing {
  background: linear-gradient(135deg, #222, #c4161c);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* mobile */
@media (max-width: 768px) {
  .theme-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 16px;
  }
}


/* ===== Small Theme Song Button ===== */
.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #c4161c, #ff7a00);
  color: #fff;
  box-shadow: 0 6px 14px rgba(196, 22, 28, 0.28);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* subtle shine */
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
}

.theme-btn:hover::before {
  left: 120%;
}

.theme-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.35);
}

.theme-btn:active {
  transform: scale(0.96);
}

/* playing state */
.theme-btn.playing {
  background: linear-gradient(135deg, #1a1a1a, #c4161c);
}

/* mobile tweak */
@media (max-width: 768px) {
  .theme-btn {
    font-size: 11px;
    padding: 9px 14px;
  }
}


/* ===== Ultra Small Theme Song Button ===== */
.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #c4161c, #ff7a00);
    color: #fff;
    box-shadow: 0 3px 8px rgba(196, 22, 28, 0.25);
    transition: all 0.2s ease;
}

/* hover */
.theme-btn:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.35);
}

/* active */
.theme-btn:active {
    transform: scale(0.95);
}

/* playing state */
.theme-btn.playing {
    background: linear-gradient(135deg, #111, #c4161c);

    
}









*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(255,180,0,.22), transparent 55%),
    radial-gradient(900px 600px at 80% 30%, rgba(255,59,48,.20), transparent 55%),
    radial-gradient(700px 500px at 50% 100%, rgba(24,197,110,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{width:min(1120px, 92vw); margin:0 auto}
.btn{
  display:inline-flex; align-items:stretch; justify-content:center;
  gap:.55rem;
  padding:.85rem 1.05rem;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, filter .15s ease;
  user-select:none;
  font-weight:700;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18); filter:brightness(1.05)}
.btn:active{transform:translateY(0px) scale(.99)}
.btn.primary{
  border-color:rgba(255,180,0,.35);
  background: linear-gradient(180deg, rgba(255,180,0,.32), rgba(255,59,48,.12));
}
.btn.whatsapp{
  border-color:rgba(24,197,110,.35);
  background: linear-gradient(180deg, rgba(24,197,110,.25), rgba(255,255,255,.03));
}
.pill{
  display:inline-flex; align-items:stretch; gap:.5rem;
  padding:.35rem .7rem;
  border:1px solid var(--stroke);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:600;
  font-size:.9rem;
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(8,9,12,.55);
  border-bottom:1px solid var(--stroke);
}
.nav{
  display:flex; align-items:stretch; justify-content:space-between;
  padding:.85rem 0;
  gap:1rem;
}
.brand{
  display:flex; align-items:stretch; gap:.7rem; min-width: 220px;
}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow: var(--shadow); background:#000}
.brand .title{line-height:1}
.brand .title strong{display:block; font-size:.95rem; letter-spacing:.3px}
.brand .title span{max-width: 180px; display:block; font-size:.7rem; color:var(--muted)
  white-space: normal;
}
.navlinks{
  display:flex; align-items:stretch; gap:1.1rem;
}
.navlinks a{
  color:var(--muted);
  font-weight:650;
  font-size:.95rem;
  position:relative;
  padding:.25rem .1rem;
}
.navlinks a::after{
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border-radius:999px;
  transition: width .2s ease;
}
.navlinks a:hover{color:var(--text)}
.navlinks a:hover::after{width:100%}
.nav-actions{display:flex; gap:.6rem; align-items:center}

.mobile-toggle{display:none}

.hero{
  padding: 3.4rem 0 1.6rem;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:2rem;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  line-height:1.05;
  margin:.7rem 0 1rem;
  letter-spacing:-.02em;
}
.gradient-text{
  background: linear-gradient(90deg, var(--brand), #ffd36b 35%, var(--brand2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p{
  color:var(--muted);
  font-size:1.07rem;
  line-height:1.6;
  margin:0 0 1.2rem;
}
.hero-cta{display:flex; flex-wrap:wrap; gap:.7rem; align-items:center}
.hero-badges{display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.2rem}
.card{
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-stage{
  position:relative;
  padding: 1rem;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:.6rem;
}
.product-stage .frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: #07080b;
  flex:1;
  display:grid;
  place-items:center;
}
.product-stage .frame img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.stage-controls{
  display:flex; gap:.6rem; justify-content:center;
  padding:.2rem 0 0;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.dot.active{background: linear-gradient(90deg, var(--brand), var(--brand2)); border-color:transparent}

.section{padding: 2.8rem 0}
.section h2{
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  margin:0 0 .8rem;
}
.section p.lead{margin:0 0 1.2rem; color:var(--muted); line-height:1.6}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:1rem}
.feature{
  padding: 1.1rem 1.1rem 1rem;
  position:relative;
  overflow:hidden;
}
.feature .icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(255,180,0,.25), rgba(255,59,48,.10));
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:.7rem;
}
.feature h3{margin:.2rem 0 .35rem; font-size:1.05rem}
.feature p{margin:0; color:var(--muted); line-height:1.55}

.variant{
  padding:1.15rem;
  display:flex; flex-direction:column; gap:.75rem;
  transition: transform .18s ease, border-color .18s ease;
}
.variant:hover{transform: translateY(-2px); border-color:rgba(255,255,255,.18)}
.variant .top{display:flex; align-items:stretch; justify-content:space-between; gap:.75rem}
.badge{
  font-weight:800; font-size:.8rem;
  padding:.25rem .6rem; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.badge.hot{border-color:rgba(255,59,48,.35); color:#ffd1cf}
.badge.spicy{border-color:rgba(255,180,0,.35); color:#ffe3a3}
.badge.garlic{border-color:rgba(255,255,255,.2); color:#e8ebff}
.badge.original{border-color:rgba(24,197,110,.35); color:#bff5da}
.variant h3{margin:0; font-size:1.05rem}
.variant ul{margin:.1rem 0 0; padding-left:1.1rem; color:var(--muted); line-height:1.6}
.pricebox{
  display:flex; align-items:flex-end; justify-content:space-between; gap:1rem;
  padding: 1rem 1.15rem;
}
.pricebox strong{font-size:2.2rem}
.pricebox span{color:var(--muted)}
.small{font-size:.92rem; color:var(--muted); line-height:1.5}

.gallery{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:1rem;
  align-items:stretch;
}
.gallery .shot{
  overflow:hidden; border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background:#07080b;
  position:relative;
}
.gallery .shot img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery .shot:hover img{transform: scale(1.04); filter:saturate(1.08)}
.gallery .shot .label{
  position:absolute; left:14px; bottom:14px;
  padding:.4rem .7rem;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:#fff; font-weight:700; font-size:.9rem;
  backdrop-filter: blur(10px);
}

.order-wrap{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:1rem;
  align-items:start;
}
.form{
  padding: 1.15rem;
}
.form .row{display:grid; grid-template-columns: 1fr 1fr; gap:.8rem}
.form label{display:block; font-size:.9rem; color:var(--muted); margin:0 0 .35rem}
.input{
  width:100%;
  padding:.85rem .9rem;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
.input:focus{border-color: rgba(255,180,0,.35); box-shadow: 0 0 0 4px rgba(255,180,0,.08)}
.form .actions{display:flex; flex-wrap:wrap; gap:.7rem; margin-top: .9rem}
.note{
  margin-top:.7rem;
  padding:.75rem .85rem;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  line-height:1.5;
}

.faq{
  padding:1.15rem;
}
.accordion{display:flex; flex-direction:column; gap:.7rem; margin-top:.7rem}
.q{
  width:100%;
  text-align:left;
  padding:.85rem .9rem;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
  color:var(--text);
  cursor:pointer;
  font-weight:750;
  display:flex; align-items:stretch; justify-content:space-between; gap:.8rem;
}
.a{
  display:none;
  padding: .75rem .9rem 0.2rem;
  color:var(--muted);
  line-height:1.6;
}
.item.open .a{display:block}
.item.open .q{border-color:rgba(255,255,255,.18)}

footer{
  border-top:1px solid var(--stroke);
  padding: 2rem 0;
  color:var(--muted);
}
.footer-grid{
  display:grid; grid-template-columns: 1.2fr .8fr .8fr;
  gap:1rem;
}
footer strong{color:var(--text)}
hr.sep{border:none; border-top:1px solid var(--stroke); margin:1.1rem 0}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10,12,16,.82);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding:.7rem .95rem;
  box-shadow: var(--shadow);
  display:flex; gap:.6rem; align-items:stretch;
  opacity:0; pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 120;
}
.toast.show{opacity:1; pointer-events:auto; transform: translateX(-50%) translateY(-2px)}
.toast b{color:var(--text)}
.kbd{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono"; font-size:.9rem; padding:.15rem .35rem; border-radius:8px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05)}

.floating-actions{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  flex-direction:column;
  gap:.65rem;
  z-index: 110;
}
.fab{
  width: 52px; height: 52px;
  border-radius: 999px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(8,9,12,.65);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease;
}
.fab:hover{transform: translateY(-2px); filter:brightness(1.08)}
.fab svg{width:22px; height:22px}

.reveal{opacity:1; transform:none; transition: opacity .6s ease, transform .6s ease}
.reveal.in{opacity:1; transform: translateY(0)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap:1.3rem}
  .order-wrap{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .navlinks{display:none}
  .mobile-toggle{display:inline-flex}
}


.btn.mini{padding:.45rem .7rem; border-radius:12px; font-weight:700;}

/* Quotes slider */
.quotes-card{padding:1rem}
.quotes-top{display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:.7rem}
.quotes-slide{display:none}
.quotes-slide:first-child{display:block}
.quotes-frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#07080b;
  display:block;
  max-height: none;
}
.quotes-frame img{
  width:100%;
  height:auto;
  display:block;
}
.quotes-controls{display:flex; align-items:center; justify-content:center; gap:.8rem; padding:.8rem 0 .2rem}
.quotes-dots{display:flex; gap:.55rem; flex-wrap:wrap; justify-content:center}
.qdot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.qdot.active{background: linear-gradient(90deg, var(--brand), var(--brand2)); border-color:transparent}
@media (max-width: 900px){
  .quotes-frame{aspect-ratio: 4/3;}
  .quotes-top{flex-direction:column; align-items:flex-start}
}



/* Music button */
.music-btn{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.75rem .9rem;
  border-radius: 999px;
  background: rgba(17,19,25,.85);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  cursor:pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.music-btn:hover{transform: translateY(-1px)}
.music-btn:active{transform: translateY(0)}
.music-btn .music-label{font-weight:800; font-size:.9rem; opacity:.92}
.music-btn #musicIcon{font-size:1rem}

/* Modal popup */
.modal{position:fixed; inset:0; display:none; z-index:70}
.modal.show{display:block}
.modal-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.62)}
.modal-card{
  position:relative;
  width:min(560px, calc(100% - 28px));
  margin: 10vh auto;
  background: rgba(17,19,25,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-close{
  position:absolute;
  right:12px;
  top:12px;
  width:38px; height:38px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  cursor:pointer;
}
.modal-badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .65rem;
  border-radius: 999px;
  background: rgba(255,180,0,.12);
  border:1px solid rgba(255,180,0,.25);
  color: #ffd37a;
  font-weight:800;
  font-size:.85rem;
  margin-bottom:.6rem;
}
.modal-card h3{margin:.2rem 0 .4rem; font-size:1.3rem}
.modal-card p{margin:.0 0 .9rem; color: var(--muted); line-height:1.45}
.modal-actions{display:flex; gap:.6rem; flex-wrap:wrap}

/* Extra mobile responsiveness */
@media (max-width: 680px){
  .hero-grid{grid-template-columns: 1fr !important}
  .hero-media{min-height:auto}
  .music-btn{right:12px; bottom:12px; padding:.7rem .85rem}
  .modal-card{margin: 12vh auto}
  .quotes-top{flex-direction:column; align-items:flex-start}
}
@media (max-width: 420px){
  .music-btn .music-label{display:none}
}


/* Hero music button */
.pill-music{margin-left:.5rem; display:inline-flex; align-items:center; gap:.45rem; padding:.42rem .7rem; border-radius:999px; border:1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.25); color: var(--text); font-weight:800; cursor:pointer; transition: transform .15s ease, border-color .15s ease, background .15s ease}
.pill-music:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.30); background: rgba(0,0,0,.35)}
.pill-music:active{transform: translateY(0)}
@media (max-width: 560px){.pill{flex-wrap:wrap}.pill-music{width:100%; justify-content:center; margin-left:0; margin-top:.5rem}}
