/* AICOSO Catalog Mode - Modal Styles */
.aicoso-catalog-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aicoso-catalog-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.aicoso-catalog-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.aicoso-catalog-modal.open .aicoso-catalog-modal-content {
    transform: translateY(0);
}

.aicoso-catalog-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.aicoso-catalog-modal-close:hover,
.aicoso-catalog-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .aicoso-catalog-modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Built-in Form Styles */
.aicoso-inquiry-form {
    margin-top: 20px;
}

.aicoso-form-field {
    margin-bottom: 15px;
}

.aicoso-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.aicoso-form-field input[type="text"],
.aicoso-form-field input[type="email"],
.aicoso-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.aicoso-form-field input[type="text"]:focus,
.aicoso-form-field input[type="email"]:focus,
.aicoso-form-field textarea:focus {
    outline: none;
    border-color: #666;
}

.aicoso-form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.aicoso-form-submit {
    text-align: right;
    margin-top: 20px;
}

.aicoso-form-submit button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.aicoso-form-submit button:hover {
    background-color: #555;
}

.aicoso-form-submit button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.aicoso-form-message {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: none;
}

.aicoso-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.aicoso-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Login to View Price Link */
.aicoso-login-to-view {
    color: #2c3e50;
    text-decoration: underline;
    font-weight: 500;
}

.aicoso-login-to-view:hover {
    color: #3498db;
}