header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* or your site background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* optional, for a subtle shadow */
}

/* Order form styling */
.order-form-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    padding-top: 120px;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 600px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #2b2b2b;
}

.form-container p {
    margin-bottom: 25px;
    color: #666;
}

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

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="file"],
form input[type="number"],
form input[type="datetime-local"],
form select {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: orange; /* Orange */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e67e00;
}

.form-group {
    margin-bottom: 24px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
}

.add-file-btn {
    background-color: orange; /* Orange */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    display: inline-block;
}

.add-file-btn:hover {
    background-color: #e67e00;
}

.form-group.price-center {
    text-align: center; /* Center contents inside this group */
}

#price.price-display {
    color: white !important;
    margin: 0 auto;              /* Center horizontally */
    display: inline-block;              /* Ensures margin auto works */
    text-align: center;          /* Center text inside */
}

.price-display {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 10px;
    pointer-events: none;
}

/* Hide default checkbox */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

/* Checked state - yellow background */
input[type="checkbox"]:checked {
    background-color: orange;
    border-color: #black;
}

/* Optional: Checkmark indicator */
input[type="checkbox"]:checked::after {
    content: '✔';
    color: white;
    position: absolute;
    top: 0;
    left: 4px;
    font-size: 16px;
    line-height: 20px;
}