.quotation-container {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    margin: auto;
}

.main-heading {
    color: #ff6600;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.section-heading {
    color: #ff6600;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    flex: 0 0 150px;
    font-weight: bold;
    color: #333;
    padding-right: 15px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.product-selection {
    display: flex;
    justify-content: stretch;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-card {
    position: relative;

    flex: 1 1 100px;
    max-width: 110px;
    text-align: center;
}


.product-card label {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    cursor: pointer;
    border-radius: 4px;
    padding: 5px;
    transition: all 0.2s;
    height: 100%;

}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
    border-radius: 4px;
}

.product-label {
    font-size: 12px;
    color: #555;
    display: block;
}

/* .product-card label input[type="checkbox"] {
    margin-top: auto;
    margin-bottom: 10px;
} */

.product-card input[type="checkbox"]:checked+label {
    border-color: #ff6600;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.5);

}

.checkmark {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background-color: #5cb85c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-card input[type="checkbox"]:checked+label .checkmark {
    opacity: 1;
}

.customization-options label,
.communication-options label {
    font-size: 16px;
    color: #333;
    cursor: pointer;
    padding-left: 5px;
}

.customization-options input[type="checkbox"],

.communication-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.radio-group {
    margin-bottom: 10px;
}

.submit-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 10px auto;
    padding: 15px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.submit-button:hover {
    background-color: #e65c00;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid #f3f3f39f;
    /* Light grey */
    border-top: 3px solid white;
    /* White (or contrast color) */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

.spinner.hidden {
    display: none;
}

/* Animation Keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    padding-top: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-title {
    color: #ff6600;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    /* position: absolute;
    top: 10px;
    right: 20px; */
    /* margin-bottom: 20px; */
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal-links {
    margin-top: 25px;
}

.whatsapp-link,
.btn-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
}

.whatsapp-link {
    background-color: #5cb85c;
}

.btn-link:hover {
    background-color: #e65c00;
}

.whatsapp-link:hover {
    background-color: #3c813c;
}

@media screen and (max-width: 600px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        /* width: 90%;
        margin: auto; */
    }

    .form-group label {
        margin-bottom: 5px;
        height: fit-content;
        flex: 1;
        font-size: 12px;
    }

    /* .submit-button {
        width: 90%;
        margin: auto;
    } */
    .quotation-container {
        width: 90%;
        margin: auto;
    }

    .product-selection {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }

    .product-label {
        font-size: 10px;
        color: #555;
        display: block;
    }

    /* .product-selection {
        flex-direction: column;
        align-items: center;
    } */

    /* .product-card {
        max-width: 80%;
    } */

}