
    .shop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.shop-image {
    position: relative;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2ecc71;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.quick-view {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.shop-image:hover .quick-view {
    opacity: 1;
}

.quick-view a {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
}

.shop-content {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title a {
    color: #111;
    text-transform:capitalize;
}

.price {
    font-size: 16px;
    font-weight: 700;
}

