body{
	margin: 0;
	padding: 0;
}
.item > div:first-child{
  font-size:17px;        /* 🔹 item name bigger */
  font-weight:500;       /* clean, readable */
  line-height:1.4;
}

.item b{
  font-weight:400;       /* 🔹 price normal (not bold) */
  font-size:15px;
  color:#444;
}
/*Slider Start*/
.slider{
	width: 100%;
	height: 300px;
}
.slider img{
	width: 100%;
	height: 250px;
}

/* Center the content */
.category-buttons {
    text-align: center;
    margin-top: 20px;
}

/* Style for buttons */
.category-btn {
    font-size: 18px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.category-btn:hover {
    background-color: #45a049;
}

/* Style for the category name and image */
.category-info {
    text-align: center;
    margin-top: 30px;
}

.category-info h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.category-image {
    text-align: center;
}

.category-image img {
    width: 100%; /* Image will cover full width */
    max-width: 600px; /* Max width for the image */
    height: auto;
    border-radius: 10px;
}

/* Style for the item list */
.item-list {
    display: none; /* Initially hide both lists */
    text-align: center;
    margin-top: 20px;
}

.item-list.show {
    display: block; /* Show the list if it has 'show' class */
}

.item-list h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.item-list ul {
    list-style-type: none;
    padding: 0;
}

.item-list li {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Style for showing items list */
.show {
    display: block;
}

/*Order Css strat*/

.order_now_box{
	width: 100%;
    height: 90vh; /* Full viewport height */
    background-image: url(img/bg2.jfif); /* Image ka URL yahan dena */
    background-position: center;
    background-size: cover; /* Image ko full cover karne ke liye */
    background-repeat: no-repeat;
    color: white; /* Text color ko white karna taaki achha dikh sake */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.content-box {
    background-color: #fff; /* Semi-transparent black background */
    padding: 25px;
    border-radius: 10px; /* Rounded corners */
    text-align: center;
    color: white; /* Text color */
    width: 270px; /* Box ka width (80% of the viewport width) */
    box-shadow: 0px 1px 5px #0002;
}
.content-box img{
	width: 70px;
	border-radius: 50%;
}
.content-box h1{
	color: #333333;
	font-family: sans-serif;
	font-size: 19px;
	font-weight: 400;
	margin-top: 10px;
}
.content-box a button{
	padding: 5px;
	color: #fff;
	font-family: verdana;
	border: 1px solid #c77dbb;
	padding-left: 17px;
	padding-right: 17px;
	background: #c77dbb;
	border-radius: 5px;
	box-shadow: 0px 1px 5px #ddd;/*
    background: linear-gradient(142deg,rgba(199, 125, 187, 1) 60%, rgba(255, 255, 255, 1) 100%);*/
}

/*page css*/

:root{--pink:#e91e63;--border:#eee}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui;background:#fff}

/* FIXED TOP */
.fixed-top{
  position:fixed;
  top:0;left:0;right:0;
  background:#fff;
  z-index:100;
}

.header img{
	width: 36px;
	height: 36px;
	border-radius: 50%;
}
.header .right{
	width: 65px;
	height: 30px;
	float: right;
	text-align: center;
	background: #ddd;
	color: #F2F4F6;
    right: 20px;
    top: 16px;
    border-radius: 5px;
    font-size: 17px;
    position: fixed;
	
}
.header .right img{
    width: 15px;
    height: 11px;
    margin-left: -5px;
    margin-top: 10px;
    margin-right: 5px;
}
.header .right span{
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-top: -110px;
}

.header{padding:14px 16px;display:flex;gap:10px;align-items:center; position: relative;}
.logo{width:36px;height:36px;border-radius:50%;}
h1{margin:0;font-size:18px}

.search{padding:0 16px 10px}
.search input{
  width:100%;
  height: 35px;
  padding:10px;
  border-radius:10px;
  border:1px solid var(--border);
  font-size:16px; /* ðŸ”´ IMPORTANT: zoom fix */
}
.search input::placeholder{
	font-size: 15px;
}


.categories{
  display:flex;gap:10px;overflow-x:auto;
  padding:8px 16px;border-bottom:1px solid var(--border)
}
.cat{
  padding:5px 16px;border-radius:10px;
  border:1.5px solid var(--border);white-space:nowrap;font-size: 14px;
}
.cat.active{border-color:var(--pink);color:var(--pink)}

.b-box{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:5px;        /* ✅ default gap */
  transition:margin .25s ease;
}
.b-box.cat-selected{
  margin-bottom:15px;       /* ✅ category click gap */
}


.b-box img{
	width: 260px;
	height: 120px;
	border-radius: 15px;
	box-shadow: 0px 1px 5px #0009;
	margin-top: 15px;
}
.b-box img.banner{
  
	
}
.spacer{height:140px}

/* MENU */
#menu{
	margin-top: 15px;
}
.section{padding:10px 16px;}
.section h2{
  margin:14px 0;
  font-size:22px;
  padding-bottom: 8px;
  text-align: center;
  font-family: verdana;
  color: #333333;
 }

.item{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 0;border-bottom:1px dashed #ddd; margin-top: 10px;
}

.add{
  border:1.5px solid var(--pink);
  color:var(--pink);background:#fff;
  padding:6px 28px;border-radius:6px
}
.qty{
  display:flex;gap:12px;align-items:center;
  border:1.5px solid var(--pink);
  padding:3px 6px;border-radius:6px
}
.qty button{
  border:none;background:none;color:var(--pink);font-size:18px
}

/* CART BAR */
.cart-bar{
  position:fixed;bottom:0;left:0;right:0;
  background:var(--pink);color:#fff;
  padding:12px 16px;display:none;
  justify-content:space-between;align-items:center
}
.subtotal button,
.cart-bar button{
  background:#fff;color:var(--pink);
  border:none;padding:10px 16px;border-radius:12px
}

/* POPUP */
.overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.4);display:none
}
.popup{
  position:fixed;bottom:-100%;left:0;right:0;
  background:#fff;border-radius:20px 20px 0 0;
  padding:16px;transition:.3s
}
.popup.open{bottom:0}
.popup header{
  display:flex;justify-content:space-between;align-items:center
}
.close{font-size:22px;cursor:pointer}

.subtotal{
  margin-top:12px;
  background:var(--pink);color:#fff;
  padding:14px;border-radius:14px;
  display:flex;justify-content:space-between;align-items:center
}


/* HIDE CATEGORY SCROLLBAR */
.categories{
  overflow-x: auto;
  -ms-overflow-style: none;   /* IE / Edge */
  scrollbar-width: none;      /* Firefox */
}

.categories::-webkit-scrollbar{
  display: none;              /* Chrome / Safari */
}
