.emvo-vitrine-wrap {
    width: 100%;
}

.emvo-vitrine {
    column-count: 4;
    column-gap: 18px;
}

.emvo-card-product {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.emvo-product-image img {
    display: block;
    width: 100%;
    height: auto;
}

.emvo-product-content {
    padding: 18px;
}

.emvo-product-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.emvo-product-description {
    margin-bottom: 14px;
    color: #444;
    font-size: .96rem;
}

.emvo-prices {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.emvo-price-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
    font-size: .96rem;
}

.emvo-price-original strong {
    text-decoration: line-through;
    opacity: .7;
}

.emvo-price-highlight strong {
    font-size: 1.18rem;
}

.emvo-installment strong {
    font-size: .95rem;
}

.emvo-meta {
    margin-bottom: 14px;
    font-size: .85rem;
    color: #666;
}

.emvo-cta-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--emvo-btn-bg, #1e7a5a);
    color: var(--emvo-btn-color, #fff) !important;
    text-decoration: none !important;
    border-radius: var(--emvo-btn-radius, 12px);
    padding: var(--emvo-btn-py, 12px) var(--emvo-btn-px, 18px);
    font-weight: 700;
    transition: transform .18s ease, opacity .18s ease;
    box-sizing: border-box;
}

.emvo-cta-button:hover {
    transform: translateY(-1px);
    opacity: .93;
}

.emvo-empty {
    padding: 18px;
    border-radius: 14px;
    background: #f6f7f7;
}

@media (max-width: 1100px) {
    .emvo-vitrine {
        column-count: 3;
    }
}

@media (max-width: 780px) {
    .emvo-vitrine {
        column-count: 2;
        column-gap: 14px;
    }

    .emvo-card-product {
        margin-bottom: 14px;
    }
}

@media (max-width: 520px) {
    .emvo-vitrine {
        column-count: 1;
    }
}
