/* Modern Product Cards */
.modern-shop-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-shop-card .card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.modern-shop-card .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.modern-shop-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.modern-shop-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #81c22b 0%, #6ba323 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.modern-shop-card .card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-shop-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.modern-shop-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-shop-card .card-title a:hover {
    color: #81c22b;
}

.modern-shop-card .card-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.modern-shop-card .card-rating svg {
    width: 16px;
    height: 16px;
    fill: #81c22b;
}

.modern-shop-card .card-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.modern-shop-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.modern-shop-card .card-price {
    font-size: 22px;
    font-weight: 700;
    color: #81c22b;
    margin: 0;
}

.modern-shop-card .card-button {
    background: linear-gradient(135deg, #81c22b 0%, #6ba323 100%);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modern-shop-card .card-button:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(129, 194, 43, 0.4);
}

/* Responsive Grid */
@media (max-width: 767px) {
    .modern-shop-card .card-content {
        padding: 18px;
    }
    
    .modern-shop-card .card-title {
        font-size: 16px;
    }
    
    .modern-shop-card .card-price {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .modern-shop-card .card-content {
        padding: 16px;
    }
    
    .modern-shop-card .card-badge {
        top: 12px;
        right: 12px;
        padding: 4px 12px;
        font-size: 11px;
    }
}
