.shop-line{
    position: relative;
    display: inline-block;
}

.shop-line::after{
    content: "";
    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 5px;

    background: #facc15;

    border-radius: 20px;
}

    .category-title{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    height: 40px;   /* fix text height */
    overflow: hidden;
}
.trend-line{
    position: relative;
    display: inline-block;
}

.trend-line::after{
    content: "";
    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 5px;

    background: #facc15;

    border-radius: 20px;
}

.category-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 8px;   
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.category-icon {
    font-size: 22px;  
    margin-bottom: 6px;
    display: block;
}

.category-title {
    font-size: 15px;  
    font-weight: 600;
}

 CATEGORY 
.category-box {
    background: #fff;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.category-box:hover {
    transform: translateY(-4px);
}


.product-card{
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;

    border: 2px solid #facc15;
    border: 1px solid #eab308;

    box-shadow: 0 2px 6px rgba(0,0,0,0.05);

    transition: 0.3s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
}

.product-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.product-card img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f9fafb;
    padding: 8px;
}

 TEXT 
.product-card h6 {
    font-size: 14px;
}

.product-card .price {
    color: #16a34a;
    font-weight: bold;
}

 BUTTON 
.product-card .btn{
    background: linear-gradient(135deg, #22c55e, #86efac);

    border: none;
    color: #064e3b;

    font-weight: 700;
    font-size: 15px;

    border-radius: 10px;

    padding: 10px 14px;

    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);

    transition: all 0.3s ease;
}

.product-card .btn:hover{
    background: linear-gradient(135deg, #16a34a, #4ade80);

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);

    color: #fff;
}

.carousel-item{
    touch-action: pan-y;
}

.add-to-cart-btn{
    position: relative;
    z-index: 999;
}

@media(max-width:768px){

    .product-card{
        overflow: visible;
    }

    .add-to-cart-btn{
        position: relative;
        z-index: 99999;
    }

}


