/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.product-page {
    width: 90%;
    margin: 20px auto;
    max-width: 1200px;
}

/* Hero Section */
.product-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-description h1 {
    font-size: 2rem;
    color: #0077cc;
}

.product-description p {
    font-size: 1.2rem;
    color: #555;
}

/* Customization Form */
.customization-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.customization-form h2 {
    color: #0077cc;
    margin-bottom: 20px;
}

.customization-form label {
    font-weight: bold;
    margin: 10px 0 5px;
    display: block;
}

.customization-form select,
.customization-form input[type="number"],
.customization-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.customization-form .quote-button {
    background-color: #0077cc;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.customization-form .quote-button:hover {
    background-color: #005fa3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        flex-direction: column;
    }
    .product-image {
        width: 90%;
    }
}

.design-options {
    margin: 10px 0;
}

.design-options label {
    margin-left: 5px;
    font-size: 1rem;
    color: #333;
}

#design-upload-container {
    margin-top: 15px;
}

.quote-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #004aad;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.quote-button:hover {
    background-color: #003280;
}

/* Styling for new dropdowns and sections */
form select, form input[type="color"], form textarea {
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
}

form button {
    margin-top: 15px;
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}
