/* ============================================================
   Andreani - Cotizador de envíos
   ============================================================ */

.andreani-cotizador-wrap {
    border: 1px solid #d1e8f0;
    border-radius: 8px;
    background: #f0f8ff;
    padding: 16px 20px;
    margin: 20px 0;
    font-family: inherit;
}

.andreani-cotizador-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a5276;
    margin-bottom: 14px;
}

.andreani-icon {
    font-size: 20px;
}

/* Input + botón */
.andreani-input-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.andreani-input-row input[type="text"] {
    flex: 1;
    min-width: 140px;
    max-width: 240px;
    padding: 9px 12px;
    border: 1px solid #aacde0;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.andreani-input-row input[type="text"]:focus {
    border-color: #1a8fc1;
    box-shadow: 0 0 0 2px rgba(26,143,193,.18);
}

.andreani-input-row button {
    padding: 9px 20px;
    background: #1a8fc1;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.andreani-input-row button:hover   { background: #157ba8; }
.andreani-input-row button:disabled { background: #8ab5cb; cursor: not-allowed; }

/* Mensajes */
.andreani-msg-error {
    margin-top: 10px;
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
}

.andreani-msg-loading {
    margin-top: 10px;
    color: #555;
    font-size: 13px;
    font-style: italic;
}

/* Label CP */
.andreani-cp-label {
    margin: 12px 0 8px;
    font-size: 13px;
    color: #444;
}

/* Opciones */
.andreani-opciones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.andreani-opcion {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid #cde4ef;
    border-radius: 6px;
    padding: 10px 14px;
    transition: border-color .2s;
}

.andreani-opcion:hover {
    border-color: #1a8fc1;
}

/* Estilo especial para comisionista */
.andreani-opcion--comisionista {
    border-color: #27ae60;
    background: #f0fff5;
}

.andreani-opcion--comisionista:hover {
    border-color: #219a52;
}

.andreani-opcion-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.andreani-opcion-nombre {
    font-weight: 700;
    font-size: 14px;
    color: #222;
}

.andreani-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 2px;
    width: fit-content;
}

.andreani-badge-propio {
    background: #27ae60;
    color: #fff;
}

.andreani-opcion-sub {
    font-size: 12px;
    color: #666;
    margin-top: 1px;
}

.andreani-opcion-desc {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.andreani-opcion-precio {
    font-size: 17px;
    font-weight: 800;
    color: #1a5276;
    white-space: nowrap;
    align-self: center;
}

.andreani-opcion--comisionista .andreani-opcion-precio {
    color: #1e8449;
}

/* Responsive */
@media (max-width: 480px) {
    .andreani-input-row { flex-direction: column; }
    .andreani-input-row input[type="text"] { max-width: 100%; }
    .andreani-input-row button { width: 100%; }
}
