/* ─── LIVVY AFFILIATE – FRONTEND CARD ─── */
.livvy-product-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 2px solid #f1f3f5;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
    align-items: center;
}
.livvy-product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.livvy-product-img-link { flex-shrink: 0; display: block; }
.livvy-product-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #f1f3f5;
}
.livvy-product-info { flex: 1; min-width: 0; }
.livvy-product-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.4;
}
.livvy-product-title a { color: inherit; text-decoration: none; }
.livvy-product-title a:hover { color: #e94560; }
.livvy-product-price {
    font-size: 22px;
    font-weight: 800;
    color: #e94560;
    margin: 0 0 16px;
}
.livvy-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e94560;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.livvy-product-btn:hover {
    background: #c73652;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233,69,96,.35);
}
.livvy-btn-arrow { transition: transform .2s; }
.livvy-product-btn:hover .livvy-btn-arrow { transform: translateX(4px); }

@media (max-width: 560px) {
    .livvy-product-card { flex-direction: column; align-items: flex-start; }
    .livvy-product-img  { width: 100%; height: 200px; }
}
