* {
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background: #FBFBFB;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #333333;
}

html, body, div, table {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 123%;
    letter-spacing: 0;
}

.container {
    max-width: 1304px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 54px;
    line-height: 106%;
    font-weight: 800;
    color: #181818;
}

h2 {
    font-size: 40px;
    line-height: 112%;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #181818;
}

h3 {
    font-size: 26px;
    line-height: 112%;
    font-weight: 700;
}

p {
    font-size: 18px;
    line-height: 123%;
    font-weight: 400;
    color: #333333;
}

.badge {
    max-width: max-content;
    width: 100%;
    padding: 4px 10px;
    background: #4CAF50;
    border-radius: 100px;
    font-size: 14px;
    line-height: 122%;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.product__badge {
    max-width: max-content;
    width: 100%;
    padding: 4px 10px;
    background: #4CAF50;
    border-radius: 100px;
    font-size: 14px;
    line-height: 122%;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    left: 40px;
}

.subtitle {
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    color: #333333;
}

.primary {
    display: flex;
    max-width: max-content;
    width: 100%;
    padding: 14px 18px;
    background: #005EB8;
    border-radius: 100px;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 123%;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s;
}

.primary:hover {
    background: #0170D9;
}

.place-order-button {
    display: flex!important;
    max-width: max-content!important;
    width: 100%!important;
    padding: 14px 18px!important;
    background: #005EB8!important;
    border-radius: 100px!important;
    border: none!important;
    outline: none!important;
    font-size: 18px!important;
    line-height: 123%!important;
    font-weight: 600!important;
    color: #fff!important;
    justify-self: flex-end!important;
}

.btn-light {
    display: flex;
    max-width: max-content;
    width: 100%;
    padding: 19px 30px;
    background: #FBFBFB;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 18px;
    line-height: 123%;
    font-weight: 600;
    color: #181818;
    transition: all 0.3s;
}

.btn-light:hover {
    background: transparent;
    border: 1px solid #333333!important;
}

.add_to_cart_button {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    padding: 14px 18px;
    background: #005EB8;
    border-radius: 100px;
    border: none;
    outline: none;
    font-size: 18px;
    line-height: 123%;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s;
}

.add_to_cart_button:hover {
    background: #0170D9;
}

.cart-btn {
    position: relative;
    display: inline-block;
}

.icon-cart svg {
    display: block;
    width: 24px;
    height: 24px;
    color: #000;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: red;
    color: white;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    padding: 3px 6px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-select-options {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    padding: 19px 30px;
    background: #FBFBFB;
    border: 1px solid #BECBD4;
    border-radius: 100px;
    font-size: 18px;
    line-height: 123%;
    font-weight: 600;
    color: #181818;
    transition: all 0.3s;
}

@media (max-width: 1040px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 38px;
        line-height: 112%;
    }
    h2 {
        font-size: 30px;
        line-height: 112%;
    }
    h3 {
        font-size: 20px;
        line-height: 112%;
    }
    .primary {
        justify-content: center;
        align-items: center;
        max-width: 100%;
        padding: 14px 18px;
    }
    .btn-light {
        padding: 14px 24px;
    }
    .button-select-options,
    .add_to_cart_button {
        padding: 14px 24px;
    }
}

.header {
    z-index: 100;
    max-width: 100%;
    width: 100%;
    background: #FBFBFB;
}

.header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 74px;
}

.header__logo {
    display: flex;
}

.header__logo-image {
    max-width: 114px;
    min-width: 114px;
    width: 100%;
    max-height: 29px;
    object-fit: contain;
}

.header__menu-items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 34px;
    padding: 26px 0;
    list-style: none;
}

.header__menu-items li a {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #181818;
    text-decoration: none;
    transition: all 0.3s;
}

.header__menu-items li a:hover {
    color: #005EB8;
    transition: all 0.3s;
}

.header__menu-items li.menu-item-color.current_page_item a {
    color: #005EB8;
    transition: all 0.3s;
}

.mobile__menu {
    display: none;
}

.header__burger  {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #333;
    text-decoration: none;
}

.action-btn svg:hover path{
    transition: all 0.3s;
}

.action-btn svg:hover path{
    stroke: #005EB8;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-mini-cart__remove {
    color: #999;
    font-size: 1.1rem;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    padding: 100px 0;
    background: #181818;
    color: #FBFBFB;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 93px;
}

.footer__menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 100px;
    list-style: none;
}

.footer__menu-items li a {
    font-size: 18px;
    font-weight: 400;
    color: #FBFBFB;
}

.footer__menu-list__right {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: -4px;
    list-style: none;
}

.footer__menu-list__right li {
    text-align: right;
}

.footer__menu-list__right li a {
    font-size: 14px;
    font-weight: 400;
    color: #BECBD4;
    text-align: right;
}

.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.footer__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid #333333;
    border-radius: 20px;
    transition: all 0.3s;
}

.footer__icon:hover {
    border: 1px solid #949494;
}

.footer__icon svg {
    max-width: 28px;
    width: 28px;
    max-height: 28px;
    height: 28px;
    object-fit: contain;
}
.footer__email {
    padding: 19px 50px;
    font-size: 18px;
    font-weight: 400;
}
.footer__email a {
    font-weight: 700;
    text-decoration: none;
    color: #FBFBFB;
}

.scroll-to-top {
    position: fixed;
    left: calc((100vw - 1238px) / 2);
    bottom: 100px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background-color: #33333385;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 9999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #333333;
}

.breadcrumbs__list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    list-style: none;
}

.breadcrumb-current, .breadcrumb-link{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333333;
}

.breadcrumb-current:hover, .breadcrumb-link:hover{
    text-decoration: none;
}

.breadcrumbs__list li {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333333;
}

.breadcrumbs__list li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333333;
}

.breadcrumbs__divider {
    display: flex;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #4CAF50;
}

.swiper-container {
    overflow: hidden;
}

.swiper-wrapper {
    align-items: stretch
}

.swiper-slide {
    height: auto;
}

.swiper-backface-hidden {
    backface-visibility: visible !important;
}
.header__inner-social {
    display: none;
}
.header__burger-icon-open {
    display: none;
}

.footer__menu-mobile {
    display: none;
}

.entry-header {
    display: none;
}

select,
input,
.select2-container,
.select2-results {
    max-width: 100%;
    width: 100%;
}

#products-grid .our-products__item-footer > span > ins {
    text-decoration: none;
}

.woocommerce form .show-password-input::before, .woocommerce-page form .show-password-input::before {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../../inc/images/lucide1.svg');
    content: "";
    display: block;
    height: 22px;
    width: 22px;
}

.woocommerce form .show-password-input.display-password::before, .woocommerce-page form .show-password-input.display-password::before {
    background-image: url('../../inc/images/lucide2.svg');
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input{
    right: 1em!important;
}

.woocommerce-password-strength {
    margin-top: 10px;
    padding: 3px .5em;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.woocommerce-password-strength.short {
    background-color: transparent;
    border-color: transparent;
    position: relative;
}

.woocommerce-password-strength.short:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #f1adad;
    border-color: #e35b5b;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 55%;
    transform: translateY(-50%);
}

.woocommerce-password-strength.bad {
    background-color: transparent;
    border-color: transparent;
    position: relative;
}

.woocommerce-password-strength.bad:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #fbc5a9;
    border-color: #f78b53;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 55%;
    transform: translateY(-50%);
}

.woocommerce-password-strength.good {
    background-color: transparent;
    border-color: transparent;
    position: relative;
}

.woocommerce-password-strength.good:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #ffe399;
    border-color: #ffc733;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 55%;
    transform: translateY(-50%);
}

.woocommerce-password-strength.strong {
    background-color: transparent;
    border-color: transparent;
    position: relative;
}

.woocommerce-password-strength.strong:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #c1e1b9;
    border-color: #83c373;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 55%;
    transform: translateY(-50%);
}

.checkout-privacy-text {
    color: #333333;
}

.checkout-privacy-text a {
    color: #333333;
    text-decoration: underline;
}

.section-refund .section-refund-inner {
    max-width: 808px;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #181818;
}

.section-refund .section-refund-inner h1 {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 112%;
    font-weight: 800;
    color: #181818;
}

.section-refund .section-refund-inner ul {
    margin-top: 20px;
    margin-left: 20px;
}

.register-link {
    color: #181818;
    text-decoration: underline;
}

@media (max-width: 1340px) {
    .scroll-to-top {
        left: 40px;
    }
}

@media screen and (max-width: 991px) {
    .header__inner {
        min-height: 61px;
    }
    .header__burger {
        display: flex;
        flex-direction: column;
    }
    .header__burger.active .header__burger-icon {
        display: none;
    }
    .header__burger.active .header__burger-icon-open {
        display: flex;
    }
    .header__menu-items {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        padding: 0;
        list-style: none;
    }
    .header__menu-items li {
        padding: 20px 10px;
        border-bottom: 1px solid #BECBD4;
    }
    .header__inner-social {
        display: flex;
        gap: 16px;
        margin-left: 0;
    }
    .header__inner-social .footer__icon {
        padding: 11px;
        border-radius: 12px;
    }
    .header__inner-social .footer__email {
        padding: 16.5px 20px;
        border-radius: 12px;
        font-size: 14px;
    }
    .header__inner-social .footer__email a {
        color: #181818;
    }
    .header__inner-block-menu {
        display: none;
    }
    .header__inner-block-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
        height: calc(100vh - 61px);
        padding: 40px 24px 24px;
        position: absolute;
        top: 61px;
        left: 0;
        background: #FBFBFB;
    }
    .footer {
        padding: 60px 0;
    }
    .footer .container {
        gap: 40px;
    }
    .footer__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
        max-width: 100%;
        width: 100%;
    }
    .footer__copyright {
        max-width: 100%;
        width: 100%;
    }
    .footer__menu {
        align-self: center;
        justify-items: center;
        max-width: 100%;
        width: 100%;
    }
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    #footer > div > div.footer__inner > div.footer__menu {
        display: none;
    }
    .footer__menu-mobile {
        display: flex;
        padding-top: 40px;
        border-top: 1px solid #333333;
        justify-content: flex-end;
    }
    .footer__menu-mobile .footer__menu-list__right {
        gap: 4px;
        align-items: flex-start;
    }
    .footer__menu-items {
        grid-template-columns: 1fr 1fr;
        gap: 16px 50px;
    }
    .footer-social {
        display: flex;
        gap: 16px;
        margin-left: 0;
    }
    .footer-social .footer__icon {
        padding: 11px;
        border-radius: 12px;
        border: 1px solid #BECBD4;
    }
    .footer-social .footer__email {
        padding: 16.5px 20px;
        border-radius: 12px;
        font-size: 14px;
    }
    .scroll-to-top {
        left: 24px;
        bottom: 93px;
        width: 42px;
        height: 42px;
    }
    .breadcrumbs__list {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2px 4px;
        list-style: none;
        flex-wrap: wrap;
    }
}

.select2-search.select2-search--dropdown{
    display: none;
}

.button.coupon-button{
    transition: all 0.2s;
    border: 0px solid #333333 !important;
}

.button.coupon-button:hover{
    border: 1px solid #333333 !important;
    background:none !important;
    padding: 18px 29px !important;
}

.custom-recipient-fields {
    margin-bottom: 30px;
}

.custom-recipient-fields .form-row-wide {
    margin-top: 24px!important;
}

.checkout__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0;
}

.woocommerce form .form-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0!important;
    padding: 0 !important;
}

#billing_first_name_field {
    width: 48%;
    order: 1;
}

#billing_last_name_field {
    width: 48%;
    order: 2;
}

#billing_last_name_field {
    width: 48%;
}

#billing_country_field {
    width: 32%;
    order: 5;
}

#billing_address_1_field {
    width: 32%;
    order: 8;
}

#billing_address_2_field {
    width: 32%;
    order: 9;
}

#billing_city_field {
    width: 32%;
    order: 7;
}

#billing_state_field {
    width: 32%;
    order: 6;
}

#billing_postcode_field {
    width: 32%;
    order: 10;
}

#billing_phone_field {
    width: 48%;
    order: 3;
}

#billing_email_field {
    width: 48%;
    order: 4;
}

.woocommerce-additional-fields {
    margin: 0 0 24px;
}

@media (max-width: 1280px) {
    .woocommerce-billing-fields__field-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 24px;
        margin: 24px 0;
    }

    #billing_country_field {
        width: 48%;
        order: 5;
    }

    #billing_address_1_field {
        width: 48%;
        order: 8;
    }

    #billing_address_2_field {
        width: 48%;
        order: 9;
    }

    #billing_city_field {
        width: 48%;
        order: 7;
    }

    #billing_state_field {
        width: 48%;
        order: 6;
    }

    #billing_postcode_field {
        width: 48%;
        order: 10;
    }
}

@media (max-width: 768px) {
    #billing_first_name_field {
        width: 100%;
        order: 1;
    }

    #billing_last_name_field {
        width: 100%;
        order: 2;
    }

    #billing_last_name_field {
        width: 100%;
    }

    #billing_country_field {
        width: 100%;
        order: 5;
    }

    #billing_address_1_field {
        width: 100%;
        order: 8;
    }

    #billing_address_2_field {
        width: 100%;
        order: 9;
    }

    #billing_city_field {
        width: 100%;
        order: 7;
    }

    #billing_state_field {
        width: 100%;
        order: 6;
    }

    #billing_postcode_field {
        width: 100%;
        order: 10;
    }

    #billing_phone_field {
        width: 100%;
        order: 3;
    }

    #billing_email_field {
        width: 100%;
        order: 4;
    }
    .section-checkout-template .woocommerce form .form-row label {
        margin-bottom: 12px;
    }
}