We are looking for your products, but it looks like your cart is empty...
Click on continue shopping and check out our catalog
Continue shopping
Cart
/* ===== PREMIUM KHADI STYLE QUANTITY SELECTOR ===== */
.quantity {
display: flex;
align-items: center;
justify-content: space-between;
background: #f8f5f0;
border: 1px solid #e5dfd3;
border-radius: 14px;
overflow: hidden;
width: 115px;
min-height: 42px;
transition: all 0.25s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.quantity:hover {
border-color: #c8b79c;
box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.quantity__button {
width: 36px;
height: 42px;
border: none;
background: transparent;
color: #2b2b2b;
font-size: 20px;
font-weight: 400;
cursor: pointer;
transition: all 0.2s ease;
}
.quantity__button:hover {
background: rgba(0,0,0,0.04);
}
.quantity__input {
border: none !important;
background: transparent;
width: 40px;
text-align: center;
font-size: 15px;
font-weight: 600;
color: #111;
outline: none;
box-shadow: none !important;
}
/* Remove arrows */
.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.quantity__input[type=number] {
-moz-appearance: textfield;
}
/* MOBILE PREMIUM LOOK */
@media screen and (max-width: 749px) {
.quantity {
width: 105px;
min-height: 38px;
border-radius: 12px;
}
.quantity__button {
width: 32px;
height: 38px;
font-size: 18px;
}
.quantity__input {
font-size: 14px;
}
}