/* ============================================================
   CF Widget — Product Description + Features
   ============================================================ */

.cw-product-description {
    width: 100%;
}

/* ── Título descripción ─────────────────────────────────── */

.cw-desc-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.3;
}

/* ── Cuerpo descripción ─────────────────────────────────── */

.cw-desc-body {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
}

.cw-desc-body--with-features {
    margin-bottom: 28px;
}

.cw-desc-body p {
    margin: 0 0 1em;
    color: #444444;
    font-size: inherit;
    line-height: inherit;
}

.cw-desc-body p:last-child {
    margin-bottom: 0;
}

.cw-desc-body ul,
.cw-desc-body ol {
    margin: 0 0 1em 1.4em;
    padding: 0;
}

.cw-desc-body li {
    margin-bottom: 4px;
    line-height: 1.6;
}

.cw-desc-body a {
    color: #C9A96E;
    text-decoration: underline;
}

.cw-desc-body strong,
.cw-desc-body b {
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Título características ─────────────────────────────── */

.cw-features-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 16px;
    line-height: 1.3;
}

/* ── Grid de características ────────────────────────────── */

.cw-features-grid {
    --cw-feat-cols: 2;
    display: grid;
    grid-template-columns: repeat(var(--cw-feat-cols), 1fr);
    row-gap: 10px;
    column-gap: 24px;
}

@media (max-width: 480px) {
    .cw-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Cada característica ────────────────────────────────── */

.cw-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Wrapper del ícono ──────────────────────────────────── */

.cw-feat-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* color default — se sobreescribe por el control de Elementor */
    color: #C9A96E;
    line-height: 1;
    /* sin dimensiones fijas: auto-ajusta al ícono o al icon_wrap_size configurado */
}

/* Font icons (Font Awesome, etc.) */
.cw-feat-icon-wrap i {
    display: block;
    line-height: 1;
    font-size: inherit;
}

/* SVG icons — ocupa el espacio del wrapper, usa currentColor del padre */
.cw-feat-icon-wrap svg {
    display: block;
    fill: currentColor;
    /* width/height controlados por Elementor (icon_size) o heredan del wrapper */
    width: 1em;
    height: 1em;
}

/* ── Texto de características ───────────────────────────── */

.cw-feat-text {
    font-size: 13px;
    color: #444444;
    line-height: 1.5;
}
