/* Order Forms Styles */
.order-forms-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.order-form-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 25px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.order-form-card h3 {
    margin-top: 0;
    color: var(--primary-color, #8b6b4f);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.order-form-card .form-description {
    margin-bottom: 20px;
    color: #666;
}

.order-form-card .btn-primary {
    background-color: var(--primary-color, #8b6b4f);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.order-form-card .btn-primary:hover {
    background-color: var(--accent-color, #d4af37);
}

/* Responsive */
@media (max-width: 768px) {
    .order-form-card {
        width: 100%;
        max-width: 400px;
    }
} 