/*
Theme Name: Poliglotas
Description: Trumpas temos aprašymas
Version: 1.0.1
Author: Justas Arbatauskis
*/

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-color: #f3f3f3;
}
.heading1 {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 10%;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.heading2 {
    font-weight: 700;
    font-size: 15px;
}
.heading3 {
    font-weight: 700;
    font-size: 28px;
}
.link {
    font-weight: 700;
    font-size: 15px;
    color: black !important;
}
.container {
    min-width: 100%;
}
.header-menu-list {
    display: flex;
    gap: 35px;
}
.header-menu-list a {
    font-weight: 700;
    font-size: 15px;
}
.header-menu-list2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header-menu-list2 a {
    font-weight: 700;
    font-size: 15px;
}
@media (min-width: 960px) {
   .benefits-section .col-span-1:nth-child(2) > div {
       justify-content: center;
   }
   .benefits-section .col-span-1:nth-child(3) > div {
       justify-content: flex-end;
   }
}
@media (max-width: 960px) {
    .header-top-text p {
        font-size: 12px;
    }
}
.footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-menu-list li a {
    color: white;
}
.wc-block-cart__submit-container a, .wc-block-checkout__actions_row button {
    background-color: black;
    color: white !important;
    text-decoration: none !important;
    font-weight: 700; 
    border-radius: 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-title.wishlist-title-with-form {
    display: none !important;
}
.woocommerce-MyAccount-content > p:nth-of-type(1),
.woocommerce-MyAccount-content > p:nth-of-type(2) {
    display: none;
}

.mailchimp-newsletter-form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.mailchimp-newsletter-form input#email {
    flex: 1; /* Arba width: 100%; */
    border: 2px solid black;
    background-color: #F9F9F9;
    border-radius: 10px;
    font-size: 12px;
    padding: 14px 29px;
    height: 40px;
}
.mailchimp-newsletter-form input[type="submit"] {
    /* Sprendimas 1: Pašalinti flex ir naudoti line-height */
    color: white;
    font-weight: 600;
    background-color: black;
    border: none; /* Pridėta */
    border-radius: 10px;
    font-size: 15px;
    padding: 14px 29px;
    height: 40px;
    line-height: 1;
    text-align: center;
    cursor: pointer; /* Pridėta */
    
    /* Arba sprendimas 2: Jei nori palikti flex */
    /* display: flex;
    align-items: center;
    justify-content: center; */
}