
.category-header{
    background:#fde3bc;
    border-radius:2px;
    padding:18px 24px;
    margin-bottom:30px;
}

.category-title{
    margin:0;
    color:#111827;
    font-size:20px;
    font-weight:500;
}

.product-card{
    border:1px solid #eee;
    border-radius:16px;
    overflow:hidden;
    text-decoration: none !important
    transition:.25s;
    height:100%;
    background:#fff;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}
product-card a{
    text-decoration: none;
}

.product-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

.product-body{
    padding:18px;
}

/*.product-title{*/
/*    font-size:5px;*/
/*    font-weight:200;*/
/*    color:#111827;*/
/*    text-decoration:none;*/
/*}*/

.product-price{
    color:#ff962e;
    font-weight:700;
    margin-top:8px;
}
/* =========================
   PRODUCT CARD HOVER EFFECT
========================= */

/* Smooth transition */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* =========================
   IMAGE ZOOM EFFECT
========================= */

.product-image {
    transition: transform 0.4s ease;
}

/* Hover par image zoom */
.product-card:hover .product-image {
    transform: scale(1.08);
}

/* =========================
   PRODUCT NAME HOVER EFFECT
========================= */
.category-product-title{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #111827 !important;
    text-decoration: none !important;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

category-product-title a{
    text-decoration: none;
}


.category-product-title:hover{
    background:#fde3bc;
    color:#111827;
}

/* Optional premium lift effect */
/*.product-card:hover {*/
/*    transform: translateY(-6px);*/
/*    box-shadow: 0 12px 28px rgba(0,0,0,0.18);*/
/*}*/