.woo-newsletter {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* allows consent to go below */
    gap: 0px; /* optional spacing between input & button */
}

#woo-newsletter-email {
    flex: 1;
    min-width: 0; /* prevents overflow */
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px #D8D4CA solid;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #F6F4ED;
    color: #5C5C53;
}
#woo-newsletter-email.error {
    border: 1px #C21010 solid;
    border-right: none;
    color: #C21010;
    font-weight: 500;
}

.woo-newsletter button {
    width: 80px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    background-color:#5C5C53;
    color: #FFFEF9;
    border: none !important;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    cursor: pointer;
}

.woo-newsletter button:hover,
.woo-newsletter button:focus{
    outline: none !important;
    background-color:#9b9b8b;
}

.woo-newsletter-consent {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-top: 10px;
    color: #5C5C53 !important;
}

.woo-newsletter-consent input[type="checkbox"] {
    margin: 0;
}

.woo-newsletter-consent input[type="checkbox"].error {
    border: 1px #C21010 solid !important;
}

.woo-newsletter-consent a{
    color: #5C5C53 !important;
    font-weight: 500;
}

.woo-newsletter-response{
    display: table;
    width: 100%;
    font-size: 12px;
    margin-top: 7px;
    font-weight: 500;
}
.woo-newsletter-response.error{
    color: #C21010;
}
.woo-newsletter-response.success{
    color: #3ba81c;
}