/* ===== ASPIRADOR REVIEWS PLUGIN ===== */

/* Tarjeta de producto */
.ar-producto-card {
    background: #ffffff;
    border: 0.5px solid #e5e4e0;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ar-producto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.ar-featured {
    border: 2px solid #4ade80;
}
.ar-producto-top {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.ar-producto-imagen {
    flex-shrink: 0;
}
.ar-producto-imagen img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
    background: #f8f7f4;
    padding: 8px;
}
.ar-producto-info {
    flex: 1;
}
.ar-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-blue  { background: #dbeafe; color: #1e40af; }
.badge-gray  { background: #f1f0e8; color: #5f5e5a; }
.badge-amber { background: #fef3c7; color: #92400e; }

.ar-producto-nombre {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 4px 0 6px;
}
.ar-estrellas {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 8px;
}
.ar-precio {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.ar-precio span {
    font-size: 13px;
    font-weight: 400;
    color: #888888;
}
.ar-puntuacion-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ar-puntuacion-bar {
    flex: 1;
    height: 8px;
    background: #f1f0e8;
    border-radius: 4px;
    overflow: hidden;
}
.ar-puntuacion-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 4px;
    transition: width 1s ease;
}
.ar-puntuacion-num {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 50px;
}

/* Pros y contras */
.ar-pros-contras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.ar-pros {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 12px 14px;
}
.ar-contras {
    background: #fff1f0;
    border-radius: 8px;
    padding: 12px 14px;
}
.ar-pc-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.ar-pros .ar-pc-label { color: #166534; }
.ar-contras .ar-pc-label { color: #991b1b; }
.ar-pros ul, .ar-contras ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ar-pros ul li, .ar-contras ul li {
    font-size: 13px;
    color: #444;
    line-height: 1.8;
    padding-left: 0;
}
.ar-pros ul li::before { content: '✓ '; color: #166534; font-weight: 700; }
.ar-contras ul li::before { content: '✗ '; color: #991b1b; font-weight: 700; }

/* Ideal para */
.ar-ideal {
    font-size: 13px;
    color: #555;
    background: #f8f7f4;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
}
.ar-ideal strong { color: #1a1a1a; }

/* Botón Amazon */
.ar-btn-amazon {
    display: block;
    text-align: center;
    background: #f59e0b;
    color: #1a1a1a !important;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}
.ar-btn-amazon:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

/* Tabla comparativa */
.ar-tabla-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 0.5px solid #e5e4e0;
}
.ar-tabla {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #ffffff;
}
.ar-tabla th {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ar-tabla td {
    padding: 12px 16px;
    border-bottom: 0.5px solid #f0efe8;
    color: #1a1a1a;
}
.ar-tabla tr:last-child td { border: none; }
.ar-fila-top td { background: #f0fdf4; }
.ar-celda-winner { color: #166534; font-weight: 700; }

/* Veredicto */
.ar-veredicto {
    background: #f0fdf4;
    border: 0.5px solid #86efac;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
}
.ar-veredicto-label {
    font-size: 11px;
    font-weight: 700;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.ar-veredicto-texto {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.7;
}

/* FAQ */
.ar-faq { margin: 24px 0; }
.ar-faq-item {
    border-bottom: 0.5px solid #e5e4e0;
}
.ar-faq-pregunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    gap: 12px;
}
.ar-faq-pregunta:hover { color: #166534; }
.ar-faq-icono {
    color: #888;
    font-size: 12px;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.ar-faq-respuesta {
    display: none;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    padding-bottom: 16px;
}

/* Responsive */
@media (max-width: 640px) {
    .ar-producto-top { flex-direction: column; }
    .ar-producto-imagen img { width: 100%; height: 200px; }
    .ar-pros-contras { grid-template-columns: 1fr; }
}

.ar-ultimas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin: 16px 0 32px;
}
.ar-ultima-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 0.5px solid #e5e4e0;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none !important;
    transition: all 0.2s;
}
.ar-ultima-card:hover {
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ar-ultima-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ar-ultima-body { flex: 1; }
.ar-ultima-fecha {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 4px;
}
.ar-ultima-titulo {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 6px;
}
.ar-ultima-excerpt {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 8px;
}
.ar-ultima-leer {
    font-size: 12px;
    font-weight: 600;
    color: #166534;
}
