/* ================= WEBSITE CONTENT ABOVE LEAVES ================= */

body{
  position: relative;
  z-index: 1;   /* 👈 CONTENT ABOVE LEAVES */
}


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f5f5f5;
}

.page{
  max-width:1200px;
  margin:60px auto;
  padding:20px;
}

.banner{
  background:#111;
  color:#fff;
  padding:120px;
  border-radius:14px;
  margin-bottom:70px;
}

.center{
  text-align:center;
  margin:30px 0 20px;
}

.masala-types{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-bottom:25px;
}

.masala-card{
  padding:14px 20px;
  background:#fff;
  border-radius:10px;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.masala-card.active{
  background:#ffffff;
  color:#fff;
}

.pouch-size{
  display:flex;
  justify-content:center;
  gap:140px;
  margin-bottom:60px;
}

.pouch-size button{
  padding:10px 46px;
  border-radius:30px;
  border:2px solid #2e7d32;
  background:#fff;
  cursor:pointer;
}

.pouch-size .active{
  background:#2e7d32;
  color:#fff;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
}

.box{
  background:#fff;
  padding:24px;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.box ul{
  margin:35px 0;
  padding-left:35px;
}

.row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid #eee;
}

.total{
  margin-top:20px;
  font-weight:bold;
  text-align:center;
}

  .right {
    flex: 1;
    text-align:center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}


.right img{
  max-width:220px;
  margin-bottom:35px;
}

.cart-btn{
  width:100%;
  margin-top:16px;
  padding:14px;
  background:#2e7d32;
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
}
.ingredients-row{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:20px 0 40px;
}

.ingredient{
  padding:10px 18px;
  border-radius:22px;
  background:#fff;
  border:1px solid #e0e0e0;
  font-weight:600;
  cursor:pointer;
  transition:.25s ease;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.ingredient:hover{
  background:#e8f5e9;
  border-color:#2e7d32;
  color:#2e7d32;
}
/* ================= INGREDIENT CARDS ================= */

.ingredient-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(90px, 1fr));
  gap:18px;
  max-width:900px;
  margin:20px auto 40px;
}

.ingredient-card{
  background:#fff;
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  transition:.25s ease;
  border:1px solid #eee;
}

.ingredient-card img{
  width:48px;
  height:48px;
  object-fit:contain;
  margin-bottom:8px;
}

.ingredient-card span{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#333;
}

.ingredient-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}


/* ================= MASALA TYPE CARDS ================= */

.masala-type-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:26px;
  max-width:1100px;
  margin:30px auto 40px;
}

.masala-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.masala-card span{
  display:flex;
  text-align:center;
  padding:12px;
  font-size:14px;
  font-weight:700;
  background:#111;
  color:#fff;
}

.masala-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 36px rgba(0,0,0,.18);
}

.masala-card.active{
  border-color:#2e7d32;
}

.masala-card.active span{
  background:#2e7d32;
}
/* ================= INGREDIENT SLIDER ================= */

.ingredient-slider-wrap{
  max-width:1100px;
  margin:20px auto 40px;
  display:flex;
  align-items:center;
  gap:16px;
}

.slider-arrow{
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:#2e7d32;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  flex-shrink:0;
}

.slider-arrow:hover{
  background:#1b5e20;
}

.ingredient-slider{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 0;
}

.ingredient-slider::-webkit-scrollbar{display:none;}
.ingredient-slider{scrollbar-width:none;}

.ingredient-card{
  min-width:110px;
  background:#fff;
  border-radius:14px;
  padding:12px 10px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.1);
  transition:.25s ease;

}

.ingredient-card img{
  width:56px;
  height:56px;
  object-fit:contain;
  margin-bottom:6px;
}

.ingredient-card span{
  font-size:13px;
  font-weight:600;
}

.ingredient-card:hover{
  transform:translateY(-4px);
}

 
.weight-card{
  background:#fff;
  max-width:400px;
  padding:20px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid #eee;
}

.qty{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty button{
  width:26px;
  height:26px;
  border:none;
  border-radius:50%;
  background:#2e7d32;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.total{
  text-align:center;
  margin-top:15px;
  font-weight:700;
}

#masalaWorkArea{
  display:none;
}

.masala-slider-wrap{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:1200px;
  margin:0 auto;
}

.masala-slider{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 0;
}

.masala-slider::-webkit-scrollbar{ display:none; }

.masala-card{
  min-width:240px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.1);
  cursor:pointer;
  overflow:hidden;
  text-align:center;
  transition:.3s ease;
  border:3px solid transparent;
}

.masala-card span{
  display:block;
  padding:8px;
  font-weight:600;
  background:#000;
  color:#fff;
}

.masala-card.active{
  border-color:#2e7d32;
  transform:translateY(-6px);
}

.slider-arrow{
  width:36px;
  height:36px;
  border:none;
  background:#2e7d32;
  color:#fff;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
}

.pouch-size-wrap{
  display:flex;
  justify-content:center;
  gap:16px;
  margin:30px 0;
}

.pouch-btn{
  padding:10px 28px;
  border-radius:30px;
  border:2px solid #2e7d32;
  background:#fff;
  color:#2e7d32;
  font-weight:600;
  cursor:pointer;
  transition:.25s ease;
}

.pouch-btn:hover{
  background:#e8f5e9;
}

.pouch-btn.active{
  background:#2e7d32;
  color:#fff;
}

/* ================= PREMIUM WEIGHT TABLE ================= */

.weight-card{
  background:#ffffff;
  border-radius:18px;
  padding:18px 16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* each row */
.weight-card .row{
  display:grid;
  grid-template-columns: 1.2fr 1.6fr 0.8fr;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid #eee;
  font-size:14px;
}

.weight-card .row:last-child{
  border-bottom:none;
}

/* ingredient name */
.weight-card .row > span{
  font-weight:500;
  color:#333;
}

/* ================= QTY CONTROL ================= */

.qty{
  display:flex;
  align-items:center;
  gap:6px;
}

/* minus / plus buttons (BOX STYLE, NOT ROUND) */
.qty button{
  width:28px;
  height:28px;
  border:1px solid #ddd;
  background:#f7f7f7;
  color:#333;
  font-size:16px;
  font-weight:600;
  border-radius:6px;      /* 👈 square feel */
  cursor:pointer;
  line-height:1;
  transition:all .2s ease;
}

.qty button:hover{
  background:#2e7d32;
  color:#fff;
  border-color:#2e7d32;
}

/* gm value box */
.qty span{
  min-width:60px;
  text-align:center;
  padding:6px 8px;
  border:1px solid #ddd;
  border-radius:6px;
  background:#fff;
  font-weight:500;
  font-size:13px;
}

/* ================= PRICE COLUMN ================= */

.row .price{
  text-align:right;
  font-weight:600;
  color:#2e7d32;
  font-size:14px;
}

/* ================= TOTAL ================= */

.weight-card .total{
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed #ccc;
  text-align:center;
  font-weight:600;
  font-size:14px;
  color:#333;
}

/* ================= RESPONSIVE ================= */
@media(max-width:600px){
  .weight-card .row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .row .price{
    text-align:left;
  }
}

/* FORCE ingredient image visibility */
.ing-name{
  display:flex;
  align-items:center;
  gap:10px;
}

.ing-name img{
  width:32px;
  height:32px;
  min-width:32px;
  object-fit:contain;
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}
.qty button{
  width:28px;
  height:28px;
  border-radius:6px;
  border:1px solid #ddd;
  background:#fff;
  font-weight:600;
  cursor:pointer;
}

.qty span{
  min-width:36px;
  text-align:center;
  font-size:14px;
}
/* ================= PREMIUM UI FIX PACK ================= */

/* ========== SECTION HEAD (CENTER TITLE + SEARCH) ========== */

.section-head{
  max-width:1200px;
  margin:40px auto 26px;
  padding:0 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}

.section-head h2{
  font-size:26px;
  font-weight:800;
  color:#111;
  letter-spacing:.5px;
}

.search-input{
  width:320px;
  max-width:90%;
  padding:12px 20px;
  border-radius:30px;
  border:1px solid #ddd;
  font-size:14px;
  outline:none;
  transition:.25s;
}

.search-input:focus{
  border-color:#2e7d32;
  box-shadow:0 0 0 3px rgba(46,125,50,.18);
}


/* ========== SLIDER ARROW PERFECT FIX ========== */

.slider-wrap{
  max-width:1200px;
   display:grid;
  grid-template-columns:42px 1fr 42px;
  align-items:center;
  gap:0px;
  margin-bottom: 60px;
}

.slider-arrow{
  width:30px;
  height:30px;
  border:none;
  border-radius:50%;
  background:#2e7d32;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 14px rgba(0,0,0,.18);
  transition:.25s;
}

.slider-arrow:hover{
  background:#1b5e20;
  transform:scale(1.07);
}

/* sliders */
.masala-slider,
.ingredient-slider{
  width:100%;
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
}

.masala-slider::-webkit-scrollbar,
.ingredient-slider::-webkit-scrollbar{
  display:none;
}

.masala-slider,
.ingredient-slider{
  scrollbar-width:none;
}


/* ========== CUSTOM MIX 3 COLUMN PREMIUM GRID ========== */

.mix-grid{
  max-width:1200px;
  margin:50px auto;
  display:grid;
  grid-template-columns:1fr 1.35fr 1fr;
  gap:28px;
  align-items:stretch;
}

/* COMMON CARD */
.mix-box{
  background:#fff;
  border-radius:22px;
  padding:26px 24px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

/* LEFT – RECIPE */
.mix-recipes h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.mix-recipes ul{
  margin:10px 0 16px;
  padding-left:18px;
}

.mix-recipes li{
  font-size:14px;
  line-height:1.6;
  color:#444;
}
/* ===== COLORFUL MIXER UI ===== */

/* ===== COLORFUL MIXER UI ===== */

/* ===== PREMIUM MIXER UI ===== */

#customMix{
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* ROW */
.mix-row{
  display:grid;
  grid-template-columns: 1fr 115px 95px;
  align-items:center;
  padding:7px 14px;
  border-radius:7px;
  font-size:14px;
  font-weight:600;
  transition:.25s ease;
}

/* INGREDIENT NAME */
.mix-name{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* CONTROL PILL */
.mix-pill{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:6px;
}

/* +/- BUTTON */
.mix-pill button{
  width:24px;
  height:24px;
  border-radius:5px;
  border:none;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  color:#fff;
  box-shadow:0 2px 5px rgba(0,0,0,.18);
  transition:.2s ease;
}

.mix-pill button:hover{
  transform:scale(1.08);
}

/* GM BOX */
.mix-pill .gm{
  min-width:56px;
  padding:4px 6px;
  font-size:12px;
  text-align:center;
  border-radius:5px;
  background:#fff;
  font-weight:700;
  box-shadow:0 2px 5px rgba(0,0,0,.15);
}

/* PRICE */
.mix-price{
  font-size:13px;
  font-weight:700;
  text-align:right;
  white-space:nowrap;
  padding-right:4px;
}

/* TOTAL */
.total-line{
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed #ccc;
  font-weight:700;
  font-size:13px;
  text-align:right;
}

/* ===== ROW COLORS (REFERENCE IMAGE MATCH) ===== */

.color-1{ background:#fff1f1; color:#ff4d4f; }
.color-2{ background:#f9efe9; color:#5d4037; }
.color-3{ background:#f6e8fb; color:#9c27b0; }
.color-4{ background:#ffe4a3; color:#ef6c00; }
.color-5{ background:#fff3f3; color:#ad1457; }
.color-6{ background:#e7f9f5; color:#00796b; }
.color-7{ background:#fefae0; color:#f9a825; }
.color-8{ background:#fff7e6; color:#ff6f00; }

/* ===== COLORED +/- BUTTONS ===== */

.color-1 .minus{ background:#ff6b6b; }
.color-1 .plus{ background:#2ecc71; }

.color-2 .minus{ background:#8d6e63; }
.color-2 .plus{ background:#43a047; }

.color-3 .minus{ background:#ba68c8; }
.color-3 .plus{ background:#00c853; }

.color-4 .minus{ background:#fb8c00; }
.color-4 .plus{ background:#00c853; }

.color-5 .minus{ background:#ec407a; }
.color-5 .plus{ background:#00c853; }

.color-6 .minus{ background:#26a69a; }
.color-6 .plus{ background:#00c853; }

.color-7 .minus{ background:#fbc02d; }
.color-7 .plus{ background:#00c853; }

.color-8 .minus{ background:#ff9800; }
.color-8 .plus{ background:#00c853; }

/* ===== PREMIUM HOVER ===== */
.mix-row:hover{
  transform:scale(1.01);
  box-shadow:0 6px 14px rgba(0,0,0,.10);
}



/* RIGHT – PRICE + POUCH */
.mix-summary{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.preview-img{
  width:170px;
  margin-bottom:14px;
}

.mix-summary p{
  font-size:14px;
  margin:5px 0;
}

.final-price{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #ddd;
  font-size:20px;
  font-weight:800;
  color:#2e7d32;
}

.add-btn{
  margin-top:18px;
  padding:14px 38px;
  border:none;
  border-radius:30px;
  background:#2e7d32;
  color:#fff;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(46,125,50,.35);
  transition:.25s;
}

.add-btn:hover{
  background:#1b5e20;
  transform:translateY(-2px);
}


/* ========== MOBILE FIX ========== */

@media(max-width:900px){
  .mix-grid{
    grid-template-columns:1fr;
  }

  .preview-img{
    width:140px;
  }

  .slider-wrap{
    grid-template-columns:36px 1fr 36px;
  }

  .slider-arrow{
    width:36px;
    height:36px;
  }
}

@media(max-width:480px){
  .mix-box{
    padding:18px 16px;
  }

  .search-input{
    width:100%;
  }

  .add-btn{
    width:100%;
  }
}
.custom-page-container{
  max-width:1400px;
  margin:0 auto;
  padding:0 16px;
  box-sizing:border-box;
}

.ingredient-card{
  border:2px solid transparent;
  border-radius:10px;
  transition:.2s ease;
}

.ingredient-card.active{
  border-color: var(--clr);
  box-shadow:0 0 12px rgba(0,0,0,.15);
  transform:scale(1.04);
}
/* RECIPE BOX */
#recipeList{
  margin-top:12px;
  padding-left:18px;
}

/* EACH LINE */
#recipeList li{
  margin-bottom:20px;      /* 🔥 line gap */
  line-height:1.8;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;  
  font-weight: 600;              /* 🔥 name & % ke beech gap */
}

/* DOT STYLE */
#recipeList li::marker{
  font-size:14px;
}

/* NAME */
#recipeList li span.name{
  font-weight:600;
}

/* PERCENT */
#recipeList li span.percent{
  margin-left:auto;       /* 🔥 percent ko right push */
  font-weight:600;
}
