/* Overlay escuro */
#delivery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

/* Popup */
#delivery-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 25px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    font-family: "PT Sans Narrow", sans-serif;
}

/* Título */
#delivery-title {
    margin-bottom: 15px;
    text-align: center;
    color: #234ba2;
}

/* Select */
#delivery-select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* Taxa */
#delivery-fee {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

#delivery-fee-value {
    font-weight: bold;
    color: #2a9d8f;
}

/* Botão */
#delivery-confirm {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #234ba2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
}

#delivery-confirm:enabled {
    opacity: 1;
}

#delivery-confirm:hover:enabled {
    background: #d62828;
}
