/* Main Container */
.orderable-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: center;
    gap: 60px;
}

/* Image Column */
.orderable-image-column {
    flex: 1;
}

.orderable-feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content Column */
.orderable-content-column {
    flex: 1;
    padding: 20px;
}

.orderable-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.orderable-description {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
}

.orderable-cta {
    font-size: 16px;
    margin-bottom: 30px;
    color: #34495e;
}

.orderable-cta strong {
    color: #2c3e50;
}

/* Button Styles */
.orderable-try-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(52,152,219,0.3);
    width: 100%;
    max-width: 300px;
}

.orderable-try-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52,152,219,0.4);
}

/* Popup Styles */
.orderable-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.orderable-popup.active {
    opacity: 1;
    visibility: visible;
}

.orderable-popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.orderable-popup-content h3 {
    margin-top: 0;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

.orderable-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.2s;
}

.orderable-close:hover {
    color: #e74c3c;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
}

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

.orderable-submit-button {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.orderable-submit-button:hover {
    background: #27ae60;
}

.orderable-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.orderable-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.orderable-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Admin Styles */
.wrap h1 {
    margin-bottom: 20px;
}

.wp-list-table {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .orderable-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .orderable-content-column {
        padding: 0;
        text-align: center;
    }
    
    .orderable-try-button {
        margin: 0 auto;
    }
}