    
    .pcat-wrapper {
        margin-top: 30px;
    }
 
    .pcat-title {
        font-weight: 700;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .pcat-sub-list {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        scrollbar-width: thin;
    }

/* Wrapper */
.pcat-sub-item {
    flex: 0 0 auto;
    text-align: center;
    width: 90px;
    text-decoration: none;
    color: #111;
    transition: 0.3s ease;
}

/* Image box with background */
.pcat-sub-item .pcat-img-box {
    width: 65px;
    height: 65px;
    background: #f5ad2a; /* only here bg applied */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.3s ease;
}

/* Image inside */
.pcat-sub-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* Hover zoom */
.pcat-sub-item:hover img {
    transform: scale(1.12);
}

.pcat-sub-item .pcat-name {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.2;
    height: 30px;  /* fixed height to prevent card shift */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* max 2 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
    /* Desktop grid */
    @media (min-width: 992px) {
        .pcat-sub-list {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            overflow: hidden;
            white-space: normal;
        }
    }
    
    
    
    
            /* Product Section */
.product-section {
    padding: 50px 0;
    background: #f5f7fa;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    transition: .25s ease;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    height: 100%;
	 flex-direction: column;
	  display: flex;
	 justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Mobile Only */
@media (max-width:768px){

    .product-card{
        border-radius:10px;
        padding:8px;
    }

}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12); 
    border-color: #0c831f;
}

.product-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #efefef;
    margin-bottom: 12px;
}

.product-timer {
    background: #fff9e6;
    color: #8a5b00;
    padding: 3px 9px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-bottom: 5px;
   
}

.product-weight {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.original-price {
    font-size: 13px;
    color: #9b9b9b;
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    background: #0c831f;
    color: #fff;
    border: none;
    padding: 9px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: .25s ease;
    box-shadow: 0 4px 10px rgba(12,131,31,0.25);
}

.add-to-cart:hover {
    background: #0a6b1a;
    box-shadow: 0 6px 14px rgba(12,131,31,0.35);
}

@media (max-width: 768px) {
    .hero .carousel-item img {
		
		  object-fit: unset!important; 
	}
	
	 .product-card{
        padding-left:9px;
        padding-right:9px;
        padding-top:8px;
        padding-bottom:15px;
		

    }
    .product-image {
         height: 130px;
        margin-bottom: 1px;
    }
	
}

@media (max-width:520px){
	
	    .pcat-wrapper {
        margin-top:0;
    }
}



.other-services-section {
    margin-top: 45px;
    padding: 24px 0;
    background: linear-gradient(135deg, #f7fafc, #fdfdfd);
    border-top: 1px solid #eef1f4;
    border-bottom: 1px solid #eef1f4;
}

.oss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.oss-title {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: #222;
}

.os-link {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #0c831f;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.os-link:hover {
    text-decoration: underline;
}

.other-services-wrapper {
    overflow-x: auto;
    padding-bottom: 6px;
}

.other-services-wrapper::-webkit-scrollbar {
    height: 6px;
}
.other-services-wrapper::-webkit-scrollbar-track {
    background: transparent;
}
.other-services-wrapper::-webkit-scrollbar-thumb {
    background: #d0d7de;
    border-radius: 4px;
}

/* Card row */
.other-services-list {
    display: flex;
    gap: 18px;
    min-width: max-content;
    padding-top: 6px;
}

/* Card */
.other-service-card {
    flex: 0 0 calc(16.66% - 18px); /* ~6 per row on large screen */
    max-width: 190px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid #e5e8ef;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-decoration: none;
}

/* hover effect */
.other-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
    border-color: #c8e6c9;
}

/* icon circle */
.os-icon-wrap {
   /* width: 100px; */
    height: 150px;
    border-radius: 50%;
   /* background: #f1f8f5; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
}

.os-icon-wrap img {
    width: 150px;
    height: 130px;
    object-fit: contain;
}

/* name text */
.os-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.3;
    min-height: 34px; /* 2 line space */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* small tag below (optional) */
.os-tag {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

/* responsive tweak */
@media (max-width: 992px) {
    .other-service-card {
        flex: 0 0 calc(25% - 18px); /* ~4 per row tablet */
    }
}

@media (max-width: 768px) {
    .other-service-card {
        flex: 0 0 calc(40% - 18px); /* ~2–3 per row on mobile */
    }
}



.rating-box {
     display: inline-flex;
    align-items: center;
    gap: 3px;

    background: #f1f3f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    margin-top:-35px; 
    margin-left: 5px;
}

/* Green Star */
.rating-box .star {
    color: rgb(235, 100, 22);
    font-size: 12px;
}
.summer-offer-card {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summer-offer-card:hover {
    transform: translateY(-6px) scale(1.02);
}


.offer-subtitle {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}


.offer-countdown {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.offer-countdown div {
    background: rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 12px;
    width: 23%;
    backdrop-filter: blur(5px);
}

.offer-countdown h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.offer-countdown small {
    font-size: 12px;
    opacity: 0.8;
}

.summer-offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    transform: rotate(25deg);
}



/* Service Card Image CSS */
.service-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;   /* image pura box fill karegi */
    display: block;
    border-radius: 12px;
}

/* Image container */
.service-card .service-img{
    width: 100%;
    height: 220px; /* apne hisab se change kar sakte ho */
    overflow: hidden;
    border-radius: 12px;
}

/* =========================
   CATEGORY / SERVICE BANNER
========================= */



/* CATEGORY / SERVICE BANNERS */
/* CATEGORY / SERVICE BANNERS */

.category-banner,
.service-banner,
.service-category-banner{
    width:100%;
    height:120px;
    overflow:hidden;
    border-radius:12px;
}

.category-banner img,
.service-banner img,
.service-category-banner img{
    width:100%;
    height:120px;
    object-fit:cover;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .category-banner,
    .service-banner,
    .service-category-banner{
        height:70px;
    }

    .category-banner img,
    .service-banner img,
    .service-category-banner img{
        height:70px;
    }

}
			
@media (max-width:768px){

    .category-grid .category-item:nth-child(9),
    .category-grid .category-item:nth-child(10){
        display:none !important;
    }

}		

/* ============ PRODUCT TYPE TABS (Shop / Warehouse / Cafe) ============ */
.product-type-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    border-bottom: none;
    margin-bottom: 28px;
    flex-wrap: nowrap;
}

.product-type-tabs .nav-item {
    margin: 0;
}

.product-type-tabs .nav-link {
    border: 1px solid #e2e5ea;
    background: #fff;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 26px;
    border-radius: 50px;
    transition: all .25s ease;
}

.product-type-tabs .nav-link:hover {
    border-color: #0c831f;
    color: #0c831f;
}

.product-type-tabs .nav-link.active {
    background: #0c831f;
    color: #fff;
    border-color: #0c831f;
    box-shadow: 0 4px 12px rgba(12,131,31,0.25);
}

@media (max-width: 576px) {
    .product-type-tabs .nav-link {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* ============ CAFE / RESTAURANT CARD ============ */
.cafe-restaurant-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 3px 12px rgba(15,23,42,0.05);
}

.cafe-restaurant-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cafe-restaurant-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f5ad2a;
}

.cafe-restaurant-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cafe-restaurant-info {
    flex: 1;
    min-width: 150px;
}

.cafe-restaurant-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.cafe-restaurant-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cafe-rating-badge {
    background: #e8f8ec;
    color: #0c831f;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cafe-rating-badge .fa-star {
    font-size: 10px;
}

.cafe-tag {
    background: #fff3e0;
    color: #b46600;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
}

.cafe-see-all {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #0c831f;
    white-space: nowrap;
    margin-left: auto;
}

.cafe-see-all:hover {
    text-decoration: underline;
}

.cafe-restaurant-products {
    padding-bottom: 4px;
}
