/* ============================================
   Ezofertas - Estilos
   Paleta según brief: verde (ahorro/confianza) + acento naranja
   Ligero, sin dependencias, compatible con GeneratePress
   ============================================ */

/* ---------- Caja de oferta (post individual) ---------- */
.ezo-deal-box {
    background: #f6faf7;
    border: 1px solid #d7e8dc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.ezo-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.ezo-hot {
    background: #fff1e6;
    color: #c2540a;
}

.ezo-basic {
    background: #e7f3ea;
    color: #1e7a3c;
}

.ezo-prices {
    margin: 10px 0 16px;
}

.ezo-price-old {
    text-decoration: line-through;
    color: #8a8a8a;
    font-size: 17px;
    margin-right: 8px;
}

.ezo-price-new {
    color: #1e7a3c;
    font-size: 28px;
    font-weight: 700;
    margin-right: 8px;
}

.ezo-discount {
    background: #1e7a3c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    vertical-align: middle;
}

.ezo-btn {
    display: inline-block;
    background: #f5820b;
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ezo-btn:hover {
    background: #d96f05;
    color: #fff;
}

.ezo-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 14px;
    margin-bottom: 0;
}

/* ---------- Grid de ofertas (shortcode / archive) ---------- */
.ezo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.ezo-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ezo-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ezo-card a {
    text-decoration: none;
    color: inherit;
}

.ezo-card-hot {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    z-index: 2;
}

.ezo-card-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.ezo-card-title {
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #333;
    min-height: 40px;
}

.ezo-card-prices .ezo-price-old {
    font-size: 14px;
}

.ezo-card-prices .ezo-price-new {
    font-size: 20px;
}

.ezo-card-prices .ezo-discount {
    font-size: 12px;
    padding: 2px 7px;
    margin-left: 6px;
}

/* ---------- Móvil ---------- */
@media (max-width: 480px) {
    .ezo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ezo-card-img {
        height: 130px;
    }

    .ezo-price-new {
        font-size: 22px;
    }
}
