/* ===== COMPARATIVO EM DESTAQUE ===== */
.ab-comparativo-destaque {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    color: white;
}

.ab-dest-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--ab-gradient);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.ab-dest-conteudo {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ab-dest-conteudo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.ab-dest-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.ab-dest-preco {
    font-size: 28px;
    font-weight: 800;
    color: var(--ab-ml);
    margin: 8px 0;
}

.ab-preco-de {
    font-size: 14px;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 8px;
}

.ab-dest-off {
    background: var(--ab-price);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}

/* ===== FILTROS ===== */
.ab-filtros {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--ab-border);
}

.ab-filtro-grupo {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ab-filtro-grupo label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ab-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.ab-filtro-btn {
    padding: 5px 12px;
    border: 1px solid var(--ab-border);
    border-radius: 20px;
    background: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--ab-text);
}

.ab-filtro-btn:hover,
.ab-filtro-btn.ativo {
    background: var(--ab-primary);
    color: white;
    border-color: var(--ab-primary);
}

/* ===== GRID DE PRODUTOS ===== */
.ab-produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.ab-card-produto {
    border: 1px solid var(--ab-border);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.ab-card-produto:hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
    transform: translateY(-2px);
}

.ab-card-imagem {
    position: relative;
}

.ab-card-imagem img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ab-card-corpo {
    padding: 12px;
}

.ab-card-nome {
    font-size: 13px;
    font-weight: 600;
    color: var(--ab-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    margin-bottom: 6px;
}

.ab-card-preco {
    font-size: 18px;
    font-weight: 800;
    color: var(--ab-price);
    margin-bottom: 4px;
}

.ab-btn-ver {
    display: block;
    text-align: center;
    background: var(--ab-primary);
    color: white !important;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.2s ease-in-out;
}

.ab-btn-ver:hover {
    background: var(--ab-primary-dark);
}

/* ===== REVIEWS NO RODAPÉ ===== */
.ab-reviews-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--ab-border);
}

.ab-reviews-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ab-text);
}

.ab-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.ab-review-card {
    border: 1px solid var(--ab-border);
    border-radius: 10px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s;
}

.ab-review-card:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.10);
}

.ab-review-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.ab-review-card h3 {
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    color: var(--ab-text);
    margin: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .ab-dest-conteudo {
        flex-direction: column;
    }

    .ab-dest-conteudo img {
        width: 100%;
        height: 200px;
    }

    .ab-filtros {
        flex-direction: column;
    }

    .ab-produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
}
