/* Modal de Cotización */
.cotizacion-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cotizacion-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.cotizacion-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.cotizacion-close:hover,
.cotizacion-close:focus {
    color: #000;
    text-decoration: none;
}

/* Formulario de Cotización */
.cotizacion-modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions .button {
    margin: 0 5px;
    padding: 10px 20px;
    min-width: 120px;
}

/* Mensajes de respuesta */
.cotizacion-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin: 10px 0;
}

.cotizacion-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 10px 0;
}

/* Información de tiempo de fabricación */
.cotizacion-info {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    font-size: 13px;
    margin: 10px 0;
}

/* Producto individual */
.cotizacion-single-product {
    margin: 20px 0;
}

.cotizacion-notice {
    color: #333;
    margin-top: 10px;
    font-size: 14px;
}

/* Shortcode Form */
.cotizacion-form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin: 20px 0;
}

.cotizacion-form-container h3 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

/* Precio oculto */
.cotizacion-price-hidden {
    font-style: italic;
    color: #666;
    font-weight: normal;
}

/* Prevenir scroll del body cuando el modal está abierto - Para todas las resoluciones */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cotizacion-modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 15px;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .form-actions .button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}