.vuv-product-card {
    position: relative;
    margin-bottom: 20px;
    background: transparent;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(90, 15, 26, 0.11);
}
.vuv-product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.vuv-product-card-link:hover .vuv-product-title {
    color: var(--color-maroon);
}
.vuv-product-media-wrapper {
    position: relative;
    background: var(--color-soft-sand);
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 15px;
}
.vuv-product-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.vuv-product-media-wrapper img.vuv-product-placeholder {
    object-fit: cover;
    transform: none;
}
.vuv-product-card-link:hover .vuv-product-media-wrapper img {
    transform: scale(1.05);
}
.vuv-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 5px 8px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-charcoal);
    pointer-events: none;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vuv-product-card .vuv-play-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 5;
}
.vuv-product-card .vuv-play-btn:hover {
    transform: scale(1.1);
    background: var(--color-white);
}
.vuv-product-card .vuv-play-icon {
    font-size: 16px;
    color: var(--color-maroon);
    margin-left: 2px;
}
.vuv-product-category {
    display: block;
    font-family: var(--font-inter);
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.vuv-product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.25;
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}
.vuv-product-title a {
    color: inherit;
    text-decoration: none;
}
.vuv-product-title a:hover {
    color: var(--color-maroon);
}
.vuv-product-price {
    font-family: var(--font-inter);
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 1.02rem;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .vuv-product-media-wrapper { margin-bottom: 12px; }
    .vuv-product-category { font-size: 0.68rem; }
    .vuv-product-title { font-size: 1.08rem; }
    .vuv-product-price { font-size: 0.94rem; }
}
