.shop-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.shop-img {
    height: 270px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.shop-img .shop-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.shop-img .shop-btn:hover {
    background: #e62e04;
}

.shop-body {
    padding: 15px 18px;
}

.shop-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
    line-height: 1.3;
}

.shop-price {
    font-size: 16px;
    color: #e62e04;
    font-weight: bold;
}

@media(max-width: 768px) {
    .shop-card {
        max-width: 95%;
    }
}