.shop-card {
    /*max-width: 280px;*/
    /*border: 1px solid #ccc;*/
    /*border-radius: 10px;*/
    overflow: hidden;
    background-color: #fff;
    font-family: sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.shop-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.shop-card-body {
    padding: 15px;
}

.shop-card-body h2 {
    font-size: 15px;
    margin: 0 0 8px;
    color: #222;
}

.shop-card-body .desc {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.shop-card-body .pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.shop-card-body .pricing .price {
    font-size: 15px;
    font-weight: bold;
    color: #28a745;
}

.shop-card-body .pricing .old {
    font-size: 13px;
    text-decoration: line-through;
    color: #aaa;
}

.shop-card-body .pricing .off {
    font-size: 12px;
    background-color: #f8d7da;
    color: #c82333;
    padding: 2px 6px;
    border-radius: 4px;
}

.shop-card-body .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-card-body .footer .qty {
    font-size: 12px;
    color: #666;
}

.shop-card-body .footer .btn {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    font-size: 13px;
    border-radius: 5px;
    text-decoration: none;
}

.shop-card-body .footer .btn:hover {
    background-color: #0056b3;
}


/* swipers*/
.swiper {
    width: 100%;
}