.shop-page {
    min-height: 80vh;
}
.shop-title {
    color: #254490;
    font-size: 2.15rem;
}
.shop-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(52, 90, 219, 0.09);
    padding: 24px 18px 18px 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shop-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 36px rgba(52, 90, 219, 0.18);
}
.shop-thumb {
    width: 100%;
    max-width: 210px;
    height: 120px;
    object-fit: cover;
    border-radius: 13px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(41, 128, 185, 0.10);
}
.shop-info {
    flex-grow: 1;
    margin-bottom: 12px;
    width: 100%;
}
.shop-item-title {
    font-size: 1.17rem;
    font-weight: 700;
    color: #2956c4;
    margin-bottom: 7px;
}
.shop-item-desc {
    color: #333;
    margin-bottom: 0;
}
.shop-btn {
    font-size: 1.02rem;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 24px;
    width: 100%;
    margin-top: 12px;
    background: linear-gradient(90deg,#5ee178,#21c1d6);
    color: #185390;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.shop-btn:hover {
    background: linear-gradient(90deg,#21c1d6,#5ee178);
    color: #184a87;
}
@media (max-width: 767px) {
    .shop-card {
        padding: 14px 6px 16px 6px;
    }
    .shop-thumb {
        max-width: 160px;
        height: 85px;
    }
}