.category-text{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.product-section{
    background:#f8f8f8;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-info{
    padding:20px;
    text-align:center;
}

.product-info h5{
    font-weight:700;
    margin-bottom:10px;
}

.product-info p{
    color:#666;
    margin-bottom:15px;
}

.stock{
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.available{
    color:#198754;
}

.out-stock{
    color:#dc3545;
}

.pack-select{
    margin-bottom:15px;
    border-radius:10px;
}

.product-price{
    font-size:24px;
    font-weight:700;
    color:#2E7D32;
}

@media(max-width:768px){

    .product-card img{
        height:220px;
    }

}

/* ==========================================
   PRODUCT ACTIONS
========================================== */

.product-actions{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.details-btn,
.cart-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.details-btn{
    background:#f1f1f1;
    color:#222;
}

.details-btn:hover{
    background:#ddd;
    color:#222;
}

.cart-btn{
    background:#2E7D32;
    color:#fff;
}

.cart-btn:hover{
    background:#256428;
    color:#fff;
}

@media(max-width:768px){

    .product-actions{
        flex-direction:column;
    }

}

.category-text{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.category-section{
    background:#f8f8f8;
}

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-image{
    width:100%;
    height:250px;
    object-fit:cover;
}

.category-info{
    padding:25px;
    text-align:center;
}

.category-info h4{
    margin-bottom:10px;
    font-weight:700;
    color:#222;
}

.product-count{
    display:inline-block;
    margin-bottom:15px;
    padding:5px 15px;
    background:#e9f7ec;
    color:#2E7D32;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.category-info p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
    min-height:75px;
}

.view-products-btn{
    display:inline-block;
    width:100%;
    padding:12px;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.view-products-btn:hover{
    background:#256428;
    color:#fff;
}

@media(max-width:768px){

    .category-image{
        height:220px;
    }

    .category-info{
        padding:20px;
    }

}