/* RESET & BASE */
*{box-sizing:border-box;margin:0;padding:0;}
body{font-family:'Inter',sans-serif;background:#f5f7fa;color:#222;line-height:1.6;text-align:center;}
img{max-width:100%;height:auto;display:block;}

/* HEADER */
.index_header{position:relative;background-image:url("images/background_one.png");background-size:cover;background-position:center;min-height:80vh;display:flex;flex-direction:column;align-items:center;justify-content:center;}
.index_header::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.35);}
#riversoljax_logo{position:relative;z-index:2;max-width:420px;margin-top:3rem;}
#riversoljax_slogan{position:relative;z-index:2;max-width:600px;margin-top:1rem;}

/* SECTIONS */
section{max-width:1100px;margin:auto;padding:4rem 2rem;}
section h1{font-size:2.5rem;margin-bottom:1rem;}
section h2{font-size:2rem;margin-bottom:1rem;}
main section:first-of-type p{max-width:700px;margin:auto;font-size:1.1rem;}

/* MEAL PREP SECTION */
.meal_prep_section{background:white;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.08);padding:3.5rem 2.5rem;}
.meal_prep_intro{max-width:640px;margin:0 auto 2rem;font-size:1.05rem;color:#555;line-height:1.7;}

/* NOTE BANNER */
.menu_note_banner{background:#f0fdf4;border:1px solid #b6f0c8;border-radius:10px;padding:.75rem 1.25rem;font-size:.82rem;color:#2d6a4f;display:flex;gap:.6rem;align-items:flex-start;max-width:860px;margin:0 auto 2.5rem;line-height:1.6;text-align:left;}

/* PLAN CARDS ROW */
.menu_plans_row{display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem;}
.menu_plan_card{background:#f8fdf8;border:1.5px solid #c8efcd;border-radius:14px;padding:1.8rem 1.5rem 1.5rem;flex:1 1 200px;max-width:260px;min-width:180px;position:relative;transition:transform .22s ease,box-shadow .22s ease;}
.menu_plan_card:hover{transform:translateY(-6px);box-shadow:0 16px 36px rgba(0,0,0,.1);}
.plan_popular_tag{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:#3aab5c;color:white;font-size:.72rem;font-weight:700;letter-spacing:.8px;padding:.25rem .85rem;border-radius:20px;white-space:nowrap;text-transform:uppercase;}
.plan_badge{font-size:1.25rem;font-weight:700;margin-bottom:1rem;text-align:center;}
.plan_macros{display:flex;flex-direction:column;gap:.35rem;margin-bottom:1.2rem;}
.plan_macros span{background:#e8f9ed;color:#2d6a4f;font-size:.8rem;font-weight:500;padding:.3rem .7rem;border-radius:6px;text-align:center;}
.plan_prices{border-top:1px solid #ddf0e0;padding-top:1rem;display:flex;flex-direction:column;gap:.5rem;}
.plan_price_row{display:flex;justify-content:space-between;align-items:center;}
.plan_qty{font-size:.85rem;color:#666;}
.plan_cost{font-size:1.05rem;font-weight:700;color:#1a6b35;}

/* INGREDIENTS GRID */
.menu_ingredients_grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;border-top:1px solid #e8f3e9;padding-top:2.5rem;}
.ingredient_col{background:white;border:1px solid #d4eeda;border-radius:12px;padding:1.4rem 1.2rem;}
.ingredient_col_title{font-size:1rem;font-weight:700;color:#1a6b35;margin-bottom:1rem;border-bottom:2px solid #90EE90;padding-bottom:.5rem;}
.ingredient_list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.45rem;}
.ingredient_list li{font-size:.88rem;color:#333;padding:.3rem .6rem;border-radius:6px;transition:background .15s;}
.ingredient_list li::before{content:"·";color:#3aab5c;font-weight:700;margin-right:.5rem;}
.ingredient_note{margin-top:1rem;font-size:.8rem;color:#555;font-style:italic;line-height:1.5;border-top:1px solid #d4eeda;padding-top:.8rem;}

/* MOBILE MEAL PREP */
@media(max-width:768px){
  .menu_ingredients_grid{grid-template-columns:1fr;}
  .menu_plans_row{flex-direction:column;align-items:center;}
  .menu_plan_card{max-width:100%;width:100%;}
  .meal_prep_section{padding:2rem 1.2rem;}
}

/* PLAN TITLE */
.order_page_title{background:#90EE90;color:#222;border-radius:12px;padding:3rem 2rem;margin-top:3rem;box-shadow:0 10px 25px rgba(0,0,0,.08);}
.order_page_title h2{font-size:3rem;margin-bottom:1rem;}
.order_page_title p{max-width:700px;margin:auto;color:#222;}

/* PLAN CARDS */
.select_your_meal_plan{display:flex;justify-content:space-between;gap:2rem;flex-wrap:wrap;margin-top:2rem;}
.meal_card{background:white;padding:2rem;border-radius:12px;flex:1 1 220px;min-width:220px;max-width:250px;text-decoration:none;color:#222;box-shadow:0 10px 25px rgba(0,0,0,.08);transition:transform .25s ease,box-shadow .25s ease;cursor:pointer;}
.meal_card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(0,0,0,.15);}
.select_your_meal_plan h3{font-size:1.5rem;margin-bottom:.7rem;}
.select_your_meal_plan p{margin:.4rem 0;}

/* MODALS */
.modal{display:none;position:fixed;z-index:999;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgba(0,0,0,0.5);animation:fadeIn .3s;}
.modal-content{background-color:white;margin:10% auto;padding:2rem;border-radius:12px;width:90%;max-width:400px;text-align:center;position:relative;box-shadow:0 10px 30px rgba(0,0,0,.2);transform:translateY(-20px);opacity:0;animation:slideDown 0.3s forwards;}


/* BUTTONS */
#submitUpload, #doneInfo, #agreeBtn{background:#90EE90;border:none;padding:.7rem 1.5rem;border-radius:6px;font-weight:600;cursor:not-allowed;margin-top:1rem;color: black;}
#submitUpload:enabled, #doneInfo:enabled, #agreeBtn:enabled{cursor:pointer;}

/* CONTACT OPTIONS */
.contactOptions{display:flex;gap:1rem;justify-content:center;margin-top:1rem;flex-wrap:wrap;}
.contactOption{background:#ececec;border:none;padding:.6rem 1.2rem;border-radius:6px;cursor:pointer;font-weight:500;flex:1 1 100px; color: black;}
.contactOption:hover{background:#90EE90;}

/* CLOSE BUTTON */
.closeModal{position:absolute;top:10px;right:12px;background:none;border:none;font-size:1.6rem;cursor:pointer;color:#444;}

.closeModal:hover{
opacity:.6;
}

/* FOOTER */
.index_footer{
    display:flex;
    flex-direction:column;
    align-items:center;
    background:#90EE90;
    padding:2.5rem 1.5rem;
    margin-top:3rem;
    text-align:center;
}

/* LOGO */
.index_footer img{
    max-width:180px;
    margin-bottom:.5rem;
}

/* BRAND TEXT */
.footer_brand{
    font-size:.9rem;
    font-weight:500;
    opacity:.8;
    margin-bottom:1rem;
}

/* DIVIDER */
.index_footer hr{
    width:100%;
    max-width:500px;
    border:none;
    border-top:1px solid rgba(0,0,0,0.15);
    margin:1.5rem 0;
}

/* DISCLAIMER BOX */
.food_disclaimer{
    max-width:600px;
    font-size:.8rem;
    line-height:1.5;
    color:#333;
}

/* DISCLAIMER TITLE */
.food_disclaimer h3{
    font-size:.95rem;
    font-weight:600;
    margin-bottom:.5rem;
    text-transform:uppercase;
    letter-spacing:.5px;
    opacity:.8;
    opacity:.75;
    font-style:italic;
}

/* PARAGRAPHS */
.food_disclaimer p{
    margin-bottom:.5rem;
    font-style:italic;
    opacity:.75;
    
}

/* LAST NOTE (styled differently) */
.clean_note{
    margin-top:.7rem;
    font-style:italic;
}

.footer_links{
    margin-top:1.5rem;
    font-size:.8rem;
    display:flex;
    gap:.6rem;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}

.footer_links a{
    color:#222;
    text-decoration:none;
    opacity:.7;
    transition:opacity .2s ease, transform .2s ease;
}

.footer_links a:hover{
    opacity:1;
    text-decoration:underline;
}

.footer_links span{
    opacity:.5;
}




/* ANIMATIONS */
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes slideDown{from{transform:translateY(-20px);opacity:0;}to{transform:translateY(0);opacity:1;}}

/* MOBILE */
@media(max-width:768px){
#riversoljax_logo{max-width:260px;margin-top:2rem;}
#riversoljax_slogan{max-width:320px;}
.meal_prep_layout{flex-direction:column;align-items:center;}
.select_your_meal_plan{flex-direction:column;align-items:center;}
.order_page_title h2{font-size:2rem;}

/* INPUTS */
.inputField{width:100%;padding:.7rem;margin-top:.7rem;border:1px solid #ccc;border-radius:6px;font-family:'Inter',sans-serif;}

/* FILE LABEL */
.custom-file-upload input[type="file"]{display:none;}
#fileLabel{display:inline-block;padding:.7rem 1.5rem;background:#ececec;color:#222;border-radius:6px;cursor:pointer;font-weight:500;margin-top:1rem;transition:opacity .2s;}
#fileLabel:hover{opacity:.8;}

/* MOBILE INPUT ZOOM FIX */
input, select, textarea{
font-size:16px;
}
}




.cart-icon-container {
    position: fixed;
    top: 15px; /* distance from top */
    right: 20px; /* distance from right */
    
    width: 60px; /* bigger circle */
    height: 60px;

    background: lightblue; /* circle background */
    border-radius: 50%;

    display: flex;
    align-items: center;  /* vertical centering */
    justify-content: center; /* horizontal centering */
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

.cart-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

/*  HOVER EFFECT */
.cart-icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.cart-icon-container:hover .cart-icon {
    transform: scale(1.15) rotate(-5deg);
}

/*  CART COUNT BADGE */
.cart-count {
    display: none; /* hide initially */
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b3b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 7px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.staff-access {
    width: 10px;
    height: 10px;
    opacity: 0;
    display: block;
    align-self: flex-end;
    margin-left: auto;
}



.contact_bar {
  background: white;
  padding: 2rem 2rem;
  max-width: 1100px;
  margin: 2rem auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  margin-bottom: 3rem;
}

.contact_bar_grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  gap: 0.3rem;
  flex: 1 1 160px;
  padding: 1rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact_item:hover {
  background: #f0fdf4;
  transform: translateY(-4px);
}

.contact_icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact_label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

.contact_value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  text-align: center;
}

/* ── WALK-IN SECTION SHELL ── */
.walkin_section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
 
.walkin_section > h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #222;
}
 
.walkin_subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
}
 
/* ── PICKUP BADGE + SCHEDULE ROW ── */
.walkin_header_row {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
 
.walkin_pickup_badge_wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1.5px solid #d4eeda;
}
 
.walkin_pickup_badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  color: black;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.13);
}
 
.walkin_schedule_card {
  background: #f8fdf8;
  border: 1.5px solid #c8efcd;
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  width: 100%;
  max-width: 380px;
}
 
.walkin_schedule_title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a6b35;
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1.5px solid #d4eeda;
}
 
.walkin_schedule_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
 
.walkin_schedule_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  padding: 0.28rem 0;
}
 
.sched_day {
  font-weight: 600;
  color: #333;
}
 
.sched_time {
  color: #555;
  font-weight: 400;
}
 
.sched_closed .sched_day {
  color: #aaa;
}
 
.sched_closed_label {
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 50px;
}
 
@media (max-width: 640px) {
  .walkin_schedule_card {
    max-width: 100%;
    width: 100%;
  }
}
 
/* ── TABS ── */
.walkin_tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
 
.walkin_tab {
  background: white;
  border: 1.5px solid #ddd;
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}
 
.walkin_tab.active {
  background: #90EE90;
  border-color: #90EE90;
  color: #222;
  font-weight: 600;
}
 
/* ── PANELS ── */
.walkin_panel { display: none; }
.walkin_panel.active { display: block; }
 
/* ── CATEGORY BADGE ── */
.walkin_badge {
  display: inline-block;
  background: #90EE90;
  color: #222;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1.8rem;
}
 
/* ── ITEM CARDS GRID ── */
.walkin_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
 
/* ── INDIVIDUAL ITEM CARD ── */
.walkin_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
 
.walkin_img_slot {
  width: 100%;
  background: #f0faf0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
/* Real photo once you add it */
.walkin_card_photo {
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
}
 
.walkin_card_body {
  padding: 1.2rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
 
.walkin_card_name {
  font-size: 1.12rem;
  font-weight: 700;
  color: #222;
  margin-top: auto;
  margin-bottom: 0.4rem;
}
 
.walkin_card_desc {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
 
.walkin_card_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.8rem;
  margin-top: auto;
}
 
.walkin_card_price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
}
 
.walkin_card_tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f0faf0;
  color: #3a8a3a;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid #c3e8c3;
}
 
/* ── BUILD YOUR BOWL ── */
.bowl_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
 
@media (max-width: 768px) {
  .bowl_layout { grid-template-columns: 1fr; }
}
 
/* Photo + economic left column */
 
.bowl_photo_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
 
/* IMAGE SLOT for bowl — same swap pattern as above */
.bowl_img_slot {
  width: auto;
  background: #f0faf0;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.bowl_photo_caption {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.86rem;
  color: #666;
  line-height: 1.6;
}
 
/* Economic card */
.economic_card {
  background: #90EE90;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
}
 
.economic_card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}
 
.economic_card p {
  font-size: 0.86rem;
  color: #333;
  line-height: 1.6;
}
 
.economic_price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
  white-space: nowrap;
}
 
/* Steps card (right column) */
.bowl_steps_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  padding: 1.8rem;
  text-align: left;
}
 
.bowl_steps_card > h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.6rem;
}
 
.bowl_step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid #f0f0f0;
}
 
.bowl_step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
 
.bowl_step_num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #90EE90;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
}
 
.bowl_step_title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.45rem;
}
 
.bowl_step_desc {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.65;
}
 
.protein_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
 
.protein_chip {
  background: #f5f7fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.77rem;
  font-weight: 500;
  color: #444;
}
 
.protein_chip strong {
  color: #2a7a2a;
  font-weight: 700;
}
 
/* ── DRINKS ── */
.drinks_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
 
.drink_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
 

.drink_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.13);
}

 
/* IMAGE SLOT for drinks */
.drink_img_slot {
  width: 100%;
  height: 150px;
  background: #f0faf0;
  border-bottom: 1.5px dashed #90EE90;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.drink_img_slot span {
  font-size: 0.75rem;
  color: #aacfaa;
  letter-spacing: 0.06em;
}
 
.drink_card_body {
  padding: 1.1rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
 
.drink_card_name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.35rem;
}
 
.drink_card_desc {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}
 
.drink_card_price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-top: auto;
  margin-bottom: 0.75rem;
}
 
/* ── CLEAN NOTE BAR ── */
.walkin_note {
  margin-top: 2.5rem;
  padding: 1rem 1.4rem;
  background: white;
  border-radius: 10px;
  border-left: 4px solid #90EE90;
  font-size: 0.85rem;
  color: #555;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  line-height: 1.6;
}

.walkin_section {
  background: white;
  padding: 2rem 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  margin-bottom: 3rem;
}

/* ══════════════════════════════════════════════════════
   WALK-IN ORDER BUTTON ON CARDS
   ══════════════════════════════════════════════════════ */
.walkin_order_btn {
  display: block;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.walkin_order_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0,0,0,0.18);
}

/* ── Bowl build buttons ── */
.bowl_build_btns {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.bowl_build_btn {
  flex: 1;
  min-width: 140px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bowl_build_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0,0,0,0.18);
}
.bowl_build_btn_eco {
  background: linear-gradient(135deg, #b8860b, #7a5800);
}

/* ── Drink qty controls ── */
.drink_qty_row {
  display: none;    
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0.85rem;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;      
}
.drink_qty_btn {
  background: #f4f4f4;
  border: none;
  padding: 0.45rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: #333;
  transition: background 0.15s;
  line-height: 1;
}
.drink_qty_btn:hover { background: #e0e0e0; }
.drink_qty_count {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  padding: 0.45rem 0.5rem;
  background: #fff;
  border-left: 1.5px solid #d0d0d0;
  border-right: 1.5px solid #d0d0d0;
  min-width: 36px;
}

/* Add button shown by default; hides once drink is added */
.drink_add_btn {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.drink_add_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0,0,0,0.18);
}

/* ══════════════════════════════════════════════════════
   MODAL OVERLAY & SHELL
   ══════════════════════════════════════════════════════ */
.wi_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wi_overlay.active {
  opacity: 1;
  pointer-events: all;
}
.wi_modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 2rem 1.8rem;
  width: 94%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  animation: wiSlideUp 0.28s ease;
}
.wi_modal::-webkit-scrollbar { display: none; }  /* Chrome/Safari */
@keyframes wiSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.wi_close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: background 0.15s;
}
.wi_close:hover { background: #e0e0e0; }

/* ── Modal content ── */
.wi_title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.4rem;
  padding-right: 2rem;
}
.wi_section {
  margin-bottom: 1.4rem;
}
.wi_section_label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.wi_section_note {
  font-size: 0.78rem;
  font-weight: 500;
  color: #888;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.4rem;
}
.wi_options_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wi_option_btn {
  padding: 0.5rem 0.95rem;
  border: 1.8px solid #d8d8d8;
  border-radius: 30px;
  background: #fafafa;
  color: #333;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wi_option_btn:hover:not(:disabled) {
  border-color: #4CAF50;
  background: #f0faf0;
}
.wi_option_btn.selected {
  background: #4CAF50;
  border-color: #4CAF50;
  color: #fff;
  font-weight: 600;
}
.wi_option_btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.wi_extra_charge {
  font-size: 0.78rem;
  opacity: 0.75;
}
.wi_price_chip {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0,0,0,0.06);
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
}
.wi_option_btn.selected .wi_price_chip {
  background: rgba(255,255,255,0.25);
}

/* ── Ingredients list ── */
.wi_ingredients_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.wi_ingredients_list li {
  font-size: 0.85rem;
  color: #777;
  background: #f5f5f5;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}

/* ── Fixed carb text ── */
.wi_fixed_carb {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  border-radius: 10px;
  display: inline-block;
}

/* ── Extras ── */
.wi_extras_list { display: flex; flex-direction: column; gap: 0.6rem; }
.wi_extra_row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.wi_extra_label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  font-weight: 500;
}
.wi_extra_check { width: 17px; height: 17px; accent-color: #4CAF50; cursor: pointer; }
.wi_extra_qty_wrap { display: flex; align-items: center; }
.wi_extra_qty_input {
  width: 64px;
  padding: 0.35rem 0.5rem;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  color: #222;
}

/* ── Footer ── */
.wi_footer {
  border-top: 1px solid #eee;
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wi_price_display {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.wi_add_btn {
  padding: 0.75rem 1.8rem;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wi_add_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}