/* Center the form and add styling */
.add-to-enquiry{
    font-size: 16px !important;   
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    background-color: #f9f9f9; /* Light background */
    padding: 20px;
}

.contact-form {
    background-color: #ffffff; /* White background for the form */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 30px;
    width: 100%;
    max-width: 600px; /* Limit the width of the form */
    color: #333333; /* Light black font color for the entire form */
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333333; /* Light black color for labels */
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px; /* Spacing between fields */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333333; /* Light black color for text fields */
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus, 
.contact-form input[type="email"]:focus, 
.contact-form textarea:focus {
    border-color: #0073e6; /* Focus border color */
    outline: none;
}

.contact-form input[type="submit"] {
    background-color: #0073e6; /* Blue button */
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #005bb5; /* Darker blue on hover */
}

.contact-form textarea {
    resize: vertical; /* Allow resizing vertically */
    height: 150px;
}

.contact-form p {
    margin-bottom: 10px; /* Spacing between paragraphs */
    font-size: 14px;
    color: #555; /* Lighter grey color for paragraph text */
}

.contact-form .wpcf7-response-output {
    margin-top: 20px;
    font-size: 16px;
    color: #28a745; /* Success message color */
}


.enquiry-cart-icon-link {
    display: inline-flex; /* Use flexbox to align items inline */
    align-items: center;  /* Vertically center the items */
    text-decoration: none; /* Remove underline from the link */
    gap: 5px;
}

.enquiry-cart-icon {
    font-size: 24px;
    color: #333;
    display: inline-block;
}

.enquiry-cart-icon .enquiry-cart-count {
    position: absolute;
    top: -5px;  /* Adjusted position to align better */
    right: -10px; /* Adjusted right position */
    background-color: #e74c3c;
    color: #fff;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 50%;
    font-weight: bold;
    height: 20px;
    width: 20px;
    line-height: 14px;
    text-align: center;
}

.enquiry-cart-products {
    text-align: center;
}
.enquiry-cart-container ul {
    list-style-type: none; /* Removes bullet points */
    padding-left: 0;
}  

.enquiry-cart-icon-link {
    /*display: inline-block;*/
    visibility: visible;
}