/* Order Button Styles */

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: #0058dd; /* Blue color */
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 88, 221, 0.2);
}

.btn-order:hover {
    background: #0046b5; /* Darker blue on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 88, 221, 0.3);
}

.btn-order:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 88, 221, 0.2);
}

.btn-order i {
    margin-right: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-order:hover i {
    transform: translateY(-2px);
}

/* Order modal styles */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-modal.active {
    display: flex;
    opacity: 1;
}

.order-modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.order-modal.active .order-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-modal-header h3 {
    font-size: 1.5rem;
    color: #1c2332;
    margin: 0;
}

.order-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1c2332;
    cursor: pointer;
    transition: color 0.3s ease;
}

.order-modal-close:hover {
    color: #f97316;
}

.order-form-group {
    margin-bottom: 20px;
}

.order-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1c2332;
}

.order-form-group input,
.order-form-group textarea,
.order-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-form-group input:focus,
.order-form-group textarea:focus,
.order-form-group select:focus {
    outline: none;
    border-color: #0058dd;
    box-shadow: 0 0 0 3px rgba(0, 88, 221, 0.1);
}

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

.order-submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #0058dd;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-submit-btn:hover {
    background: #0046b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 88, 221, 0.2);
}

.order-submit-btn:active {
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 576px) {
    .order-modal-content {
        padding: 20px;
    }
    
    .order-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .order-form-group input,
    .order-form-group textarea,
    .order-form-group select {
        padding: 10px 12px;
    }
}
