/* Blue Express Shipping Chile - Estilos del checkout */

/* Selector de región y comuna */
.bluex-region-selector,
.bluex-comuna-selector {
    margin-bottom: 10px;
}

.bluex-comuna-selector select {
    width: 100%;
}

/* PUDO - Puntos de retiro */
.bluex-pudo-section {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.bluex-pudo-section h4 {
    margin: 0 0 10px 0;
    color: #2271b1;
}

.bluex-pudo-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    margin-bottom: 10px;
}

.bluex-pudo-selected-info {
    flex: 1;
}

.bluex-pudo-selected-name {
    font-weight: bold;
    color: #2271b1;
}

.bluex-pudo-selected-address {
    font-size: 0.9em;
    color: #666;
    margin-top: 2px;
}

.bluex-pudo-change-btn {
    background: #2271b1;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
}

.bluex-pudo-change-btn:hover {
    background: #135e96;
}

.bluex-pudo-select-btn {
    background: #2271b1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.bluex-pudo-select-btn:hover {
    background: #135e96;
}

/* Modal de PUDOS */
.bluex-pudo-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.bluex-pudo-modal-overlay.active {
    display: flex;
}

.bluex-pudo-modal {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bluex-pudo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.bluex-pudo-modal-header h3 {
    margin: 0;
    color: #2271b1;
}

.bluex-pudo-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bluex-pudo-modal-close:hover {
    color: #333;
}

.bluex-pudo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bluex-pudo-item {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.bluex-pudo-item:hover {
    border-color: #2271b1;
    background: #f0f7ff;
}

.bluex-pudo-item.selected {
    border-color: #2271b1;
    background: #e6f0fa;
}

.bluex-pudo-item-name {
    font-weight: bold;
    color: #333;
}

.bluex-pudo-item-address {
    font-size: 0.9em;
    color: #666;
    margin-top: 3px;
}

.bluex-pudo-item-price {
    margin-top: 5px;
    font-weight: bold;
    color: #2271b1;
}

.bluex-pudo-loading {
    text-align: center;
    padding: 30px;
    color: #666;
}

.bluex-pudo-empty {
    text-align: center;
    padding: 30px;
    color: #999;
}

/* Mensaje de carga */
.bluex-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e0e0e0;
    border-top: 2px solid #2271b1;
    border-radius: 50%;
    animation: bluex-spin 1s linear infinite;
    margin-right: 5px;
    vertical-align: middle;
}

@keyframes bluex-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
