#section-shop {
    padding-top: 150px;
    position: relative;
    overflow: hidden;

    background: var(--gradientr);
}

#section-shop-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

#section-shop-header h1 {
    font-size: 60px;
    line-height: 70px;
    border-radius: 20px;
    padding: 50px 200px 50px 50px;
    margin: 0;
    box-shadow: var(--shadow-light);
    background-color: rgba(215, 255, 181, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 75%;
}

#section-shop-header-nav {
    border-radius: 20px;
    background-color: var(--color-primary);

    margin: 0;
    padding: 20px;
    line-height: 24px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;

    width: calc(25% + 70px);
    margin-left: -70px;
    position: relative;
}

#section-shop-header-nav li {

}

#section-shop-header-nav li:not(:last-of-type) {
    margin-right: 40px;
}

#section-shop-header-nav li a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    color: var(--color-text);
    position: relative;
}

#section-shop-header-nav li a:hover {
    text-decoration: underline;
}

#section-shop-header-nav li a i {
    margin-right: 10px;
}

#section-shop-header-nav li a u {
    background-color: var(--color-white);
    border-radius: 100%;
    font-size: 8px;
    font-weight: bold;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    top: -6px;
    left: 12px;
}

.woocommerce-pdf {
    display: flex;
    flex-direction: column;
    margin: 30px 0 0 0;
    align-items: flex-start;
}

.woocommerce-pdf a {
    margin-bottom: 10px;
}

.product-content {
    float: left;
    width: 100%;
}

.woocommerce .products ul,
.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce .products ul li,
.woocommerce ul.products li {
    display: flex;
    flex-direction: column;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link .woocommerce-loop-product__title{
    flex-grow: 1;
}

.woocommerce .product a.loading {
    opacity: 0.5;
    cursor: wait;
}

.woocommerce ul.products li.product .button.loading::before {
    content: "\f110";

    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
    animation-timing-function: var(--fa-animation-timing, steps(8));
}


@media only screen and (max-width: 1280px) {
    #section-shop-header h1 {
        font-size: 50px;
        line-height: 1.25em;
    }
}


@media only screen and (max-width: 1024px) {
    #section-shop-header h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 640px) {
    #section-shop-header {
        flex-direction: column;
    }

    #section-shop-header h1 {
        padding: 20px;
        width: 100%;
        font-size: 30px;
    }

    #section-shop-header-nav {
        margin: -10px 0;
        width: auto;
        align-self: flex-end;
    }
}


@media only screen and (max-width: 768px) {
    ul.products {
        padding-bottom: 20px!important;
    }
    ul.products li.product {
        margin: 10px 10px 0 0!important;
        width: calc(50% - 20px)!important;
    }
}

.add_to_cart_button {
    font-size: 14px;
}

.woocommerce div.product div.summary > .price {
    order: 1;
    font-weight: bold;
    font-size: 30px;
}

.woocommerce div.product div.summary > .stock {
    order: 2;
    margin-top: 0;
    margin-bottom: 20px;
}

.woocommerce div.product div.summary > .cart {
    order: 3;
    display: flex;
    align-items: center;
}

.woocommerce div.product div.summary > .woocommerce-pdf {
    order: 4;
}

.woocommerce div.product div.summary {
    display: flex;
    flex-direction: column;
}

.single-product .woocommerce .product-content {
    clear: both;
    float: none;
    max-width: 600px;
    padding-bottom: 80px;
}