Shop
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background: #ffffff;
color: #26351e;
}
/* =========================
SHOP HERO
========================= */
.shop-hero {
background: #f5f2e8;
padding: 80px 20px;
text-align: center;
}
.hero-content {
max-width: 750px;
margin: auto;
}
.eyebrow {
display: block;
margin-bottom: 14px;
color: #587044;
font-size: 12px;
font-weight: 700;
letter-spacing: 2px;
}
.shop-hero h1 {
margin: 0 0 18px;
font-size: 48px;
line-height: 1.1;
color: #26351e;
}
.shop-hero p {
max-width: 650px;
margin: auto;
font-size: 16px;
line-height: 1.7;
color: #666;
}
/* =========================
CATEGORIES
========================= */
.categories {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 10px;
padding: 30px 20px 10px;
}
.category-btn {
padding: 9px 19px;
border: 1px solid #ddd;
border-radius: 30px;
background: #ffffff;
color: #555;
cursor: pointer;
transition: all .25s ease;
}
.category-btn:hover,
.category-btn.active {
background: #587044;
border-color: #587044;
color: #ffffff;
}
/* =========================
TOOLBAR
========================= */
.shop-toolbar {
max-width: 1320px;
width: calc(100% – 80px);
margin: 35px auto 25px;
padding-bottom: 18px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e3e0d7;
}
.shop-toolbar p {
margin: 0;
color: #666;
font-size: 14px;
}
.sort-box {
display: flex;
align-items: center;
gap: 10px;
}
.sort-box label {
font-size: 13px;
color: #666;
}
.sort-box select {
min-width: 170px;
padding: 9px 12px;
border: 1px solid #d8d5cc;
border-radius: 4px;
background: #ffffff;
cursor: pointer;
}
/* =========================
PRODUCT GRID
========================= */
.product-grid {
max-width: 1320px;
width: calc(100% – 80px);
margin: 0 auto 90px;
display: grid;
grid-template-columns:
repeat(4, minmax(0, 1fr));
gap: 30px;
}
/* =========================
PRODUCT CARD
========================= */
.product-card {
background: #ffffff;
border: 1px solid #e3e0d7;
border-radius: 10px;
overflow: hidden;
transition:
transform .25s ease,
box-shadow .25s ease;
}
.product-card:hover {
transform: translateY(-6px);
box-shadow:
0 12px 30px rgba(0,0,0,.10);
}
/* =========================
IMAGE
========================= */
.product-image {
position: relative;
overflow: hidden;
background: #f7f7f4;
}
.product-image img {
display: block;
width: 100%;
height: 310px;
object-fit: cover;
transition: transform .45s ease;
}
.product-card:hover .product-image img {
transform: scale(1.05);
}
/* =========================
SALE
========================= */
.sale {
position: absolute;
top: 12px;
left: 12px;
z-index: 2;
padding: 6px 10px;
border-radius: 20px;
background: #b6533c;
color: #ffffff;
font-size: 11px;
font-weight: bold;
}
/* =========================
WISHLIST
========================= */
.wishlist {
position: absolute;
top: 12px;
right: 12px;
z-index: 3;
width: 36px;
height: 36px;
border: none;
border-radius: 50%;
background: rgba(255,255,255,.95);
color: #555;
font-size: 20px;
cursor: pointer;
transition: .25s;
}
.wishlist:hover,
.wishlist.liked {
background: #587044;
color: #ffffff;
}
/* =========================
PRODUCT INFO
========================= */
.product-info {
padding: 16px;
}
.product-category {
display: block;
margin-bottom: 7px;
color: #587044;
font-size: 10px;
font-weight: 700;
letter-spacing: 1px;
}
.product-info h2 {
min-height: 44px;
margin: 0 0 8px;
font-size: 16px;
line-height: 1.4;
color: #26351e;
}
.price {
margin-bottom: 14px;
font-size: 19px;
font-weight: 700;
color: #111;
}
.price del {
margin-left: 7px;
color: #999;
font-size: 13px;
font-weight: normal;
}
/* =========================
ADD TO CART
========================= */
.add-cart {
width: 100%;
padding: 12px;
border: none;
border-radius: 5px;
background: #587044;
color: #ffffff;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: .25s;
}
.add-cart:hover {
background: #3f542f;
transform: translateY(-1px);
}
/* =========================
TABLET
========================= */
@media (max-width: 1100px) {
.product-grid {
grid-template-columns:
repeat(3, minmax(0, 1fr));
gap: 22px;
}
.product-image img {
height: 270px;
}
}
/* =========================
MOBILE
========================= */
@media (max-width: 700px) {
.shop-hero {
padding: 55px 20px;
}
.shop-hero h1 {
font-size: 36px;
}
.shop-hero p {
font-size: 14px;
}
.shop-toolbar {
width: calc(100% – 30px);
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
.product-grid {
width: calc(100% – 30px);
grid-template-columns:
repeat(2, minmax(0, 1fr));
gap: 15px;
}
.product-image img {
height: 220px;
}
.product-info {
padding: 12px;
}
.product-info h2 {
font-size: 14px;
}
.price {
font-size: 16px;
}
.add-cart {
padding: 10px 7px;
font-size: 12px;
}
}
/* =========================
SMALL MOBILE
========================= */
@media (max-width: 450px) {
.shop-hero h1 {
font-size: 30px;
}
.category-btn {
padding: 7px 12px;
font-size: 11px;
}
.product-grid {
gap: 10px;
}
.product-image img {
height: 180px;
}
.product-info {
padding: 10px;
}
.product-info h2 {
font-size: 13px;
}
.price {
font-size: 15px;
}
}
PREMIUM · NATURAL · QUALITY
Shop Our Collection
Discover premium dry fruits, nuts and healthy
snacks carefully selected for freshness and quality.
8 Products
Default
Name: A–Z
Name: Z–A
Price: Low to High
Price: High to Low
SALE

ALMONDS
Premium Almonds
₹650
₹750

CASHEWS
Premium Cashews
₹720

WALNUTS
California Walnuts
₹850
SALE

RAISINS
Green Raisins
₹420
₹500

ALMONDS
California Almonds
₹780

CASHEWS
W320 Cashews
₹890

WALNUTS
Premium Walnut Kernels
₹950

SEEDS
Premium Pumpkin Seeds
₹350
Showing 1–12 of 250 results
-
Almond Flakes | Badam Cutting (peeled)
₹90.00Select options This product has multiple variants. The options may be chosen on the product pageClear45g -
Almond Flakes | Badam Cutting (unpeeled)
₹72.00Select options This product has multiple variants. The options may be chosen on the product pageClear45g -
Almonds (roasted & salted)
₹126.00 – ₹520.00Select options This product has multiple variants. The options may be chosen on the product pageClear90g225g400g -
Almonds Akash
₹144.00 – ₹600.00Select options This product has multiple variants. The options may be chosen on the product pageClear90g225g400g -
Almonds Mamra Akash
₹396.00 – ₹1,680.00Select options This product has multiple variants. The options may be chosen on the product pageClear90g225g400g -
Almonds Mamra Vayu
₹342.00 – ₹1,440.00Select options This product has multiple variants. The options may be chosen on the product pageClear90g225g400g -
Almonds Vayu
₹114.00 – ₹464.00Select options This product has multiple variants. The options may be chosen on the product pageClear90g225g400g -
Alum | Fitkari
₹27.00 – ₹90.00Select options This product has multiple variants. The options may be chosen on the product pageClear45g90g225g -
Amaranth Millet Flour | Rajgira Aata
₹45.00 – ₹160.00Select options This product has multiple variants. The options may be chosen on the product pageClear90g225g400g -
Amba Haldi Powder
₹54.00 – ₹150.00Select options This product has multiple variants. The options may be chosen on the product pageClear150g45g90g -
Amchur
₹54.00 – ₹225.00Select options This product has multiple variants. The options may be chosen on the product pageClear45g90g225g -
Amchur Powder
₹70.00Select options This product has multiple variants. The options may be chosen on the product pageClear50g











