@charset "UTF-8";

* {
    font-family: "Roboto";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

.hp_hero {
    flex-direction: column;
    display: flex;
    text-align: left;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    position: relative;
    border-bottom: 1px solid #e1e1e1;
}

@media (max-width: 767px) {
    .hp_hero {
        padding-bottom: 20px;
        padding-top: 20px;
    }
}

.hp_hero__logo {
    max-width: 200px;
    height: auto;
}

@media (max-width: 767px) {
    .hp_hero__logo {
        width: 80px;
        height: auto;
    }
}

.headbar {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 3;
}

@media (max-width: 767px) {
    .headbar {
        justify-content: end;
    }
}

.headbar__socials {
    display: flex;
    gap: 15px;
}

@media (max-width: 767px) {
    .headbar__socials {
        display: none;
    }
}

.headbar__socials img {
    width: 30px;
}

.headbar__links {
    display: flex;
    gap: 15px;
}

.headbar__links img {
    width: 20px;
}

@media (max-width: 767px) {
    .headbar__links img {
        width: 16px;
        height: 16px;
    }
}

.headbar .cart-icon {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin-right: 25px;
}

.headbar .cart-icon img {
    width: 20px;
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .headbar .cart-icon img {
        transform: translateY(-5px);
        width: 16px;
    }
}

.headbar .cart-count {
    position: absolute;
    top: 0px;
    right: -22px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.hp_heroImage {
    text-align: left;
    background-color: #f9fbfa;
    display: block;
    height: auto;
}

@media (max-width: 767px) {
    .hp_heroImage {
        display: none;
    }
}

.hp_heroImage__conteiner {
    max-width: 1920px;
    margin: 0 auto;
    display: block;
}

.hp_heroImage__conteiner img {
    width: 100%;
    height: auto;
    display: block;
}

.hp_heroImageMobile {
    position: relative;
    display: none;
    height: auto;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hp_heroImageMobile {
        display: block;
    }
}

.hp_heroImageMobile img {
    height: auto;
    position: relative;
    width: 100%;
}

.heroBar {
    background-color: #f9fbfa;
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .heroBar {
        margin-bottom: 40px;
    }
}

.heroBar__conteiner {
    max-width: 1200px;
    margin: 0 auto;
}

.heroBar__items {
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    align-items: flex-start;
    text-align: justify;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .heroBar__items {
        display: flex;
        flex-direction: row;
        margin-top: 0px;
        text-align: justify;
        justify-content: space-around;
    }
}

.heroBar__items__item {
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .heroBar__items__item {
        max-width: 200px;
    }
}

.heroBar__items__item img {
    height: 60px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .heroBar__items__item img {
        height: 30px;
    }
}

.heroBar__items__item__text {
    font-weight: 500;
    font-size: 14px;
    max-width: 300px;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 767px) {
    .heroBar__items__item__text {
        font-size: 10px;
        max-width: 100px;
        line-height: 1.2;
    }
}

.hp__topProduct {
    text-align: left;
    overflow: hidden;
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
    margin-top: 40px;
    margin-bottom: 100px;
}

@media (max-width: 767px) {
    .hp__topProduct {
        margin-top: 0px;
        margin-bottom: 20px;
    }
}

.hp__topProduct__conteiner {
    max-width: 1920px;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.hp__topProduct--title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-family: "Roboto";
}

@media (max-width: 767px) {
    .hp__topProduct--title {
        font-size: 20px;
    }
}

.hp__topProduct__slider {
    width: 100%;
    position: relative;
    display: block;
    padding: 0 30px;
    margin-top: 38px;
}

@media (max-width: 767px) {
    .hp__topProduct__slider {
        padding: 0 15px;
    }
}

.hp__topProduct__slider__slide {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    transition: 0.2s;
    text-decoration: none;
}

.hp__topProduct__slider__slide.slick-slide {
    padding: 0 15px;
}

@media (max-width: 767px) {
    .hp__topProduct__slider__slide {
        padding: 0 5px;
    }
}

.hp__topProduct__slider__slide__image {
    position: relative;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 8 / 12.5;
}

.hp__topProduct__slider__slide__image img {
    position: relative;
    max-width: 1000%;
    width: 100%;
    min-width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.hp__topProduct__slider__slide__image .hoverImage {
    transform: translate(-50%, -50%);
    opacity: 0;
    transition-duration: 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
}

.hp__topProduct__slider__slide__image__outofstock {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: black;
    color: white;
    padding: 5px 10px;
}

@media (max-width: 767px) {
    .hp__topProduct__slider__slide__image__outofstock {
        padding: 5px;
        top: 10px;
        left: 10px;
        font-size: 12px;
    }
}

.hp__topProduct__slider__slide__image__sizes {
    position: absolute;
    bottom: 0;
    z-index: 2;
    background-color: #ffffff;
    padding: 10px 0;
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    flex-wrap: wrap;
    color: #000;
}

@media (max-width: 767px) {
    .hp__topProduct__slider__slide__image__sizes {
        display: none;
    }
}

.hp__topProduct__slider__slide__image__sizes div {
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 1px solid #ccc;
    color: #000000;
    position: relative;
}

.hp__topProduct__slider__slide__image__sizes .out {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='1'/><path d='M0 0 L100 100 ' stroke='black' stroke-width='1'/></svg>");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%, auto;
}

.hp__topProduct__slider__slide__image__sizes .onesize {
    width: 100px;
}

.hp__topProduct__slider__slide__desc {
    width: 100%;
    text-align: left;
    padding-right: 0px;
    width: 100%;
    text-align: left;
    padding-right: 0px;
    padding: 20px;
}

@media (max-width: 767px) {
    .hp__topProduct__slider__slide__desc {
        padding: 10px 5px;
    }
}

.hp__topProduct__slider__slide__desc--title {
    margin-bottom: 3px;
    color: #000000;
    text-align: left;
    font-size: 16px;
    width: 80%;
    font-weight: 500;
    text-decoration: none;
}

@media (max-width: 767px) {
    .hp__topProduct__slider__slide__desc--title {
        font-size: 12px;
        width: 100%;
    }
}

.hp__topProduct__slider__slide__desc--price {
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    color: #000000;
}

@media (max-width: 767px) {
    .hp__topProduct__slider__slide__desc--price {
        font-size: 14px;
    }
}

.hp__topProduct__slider__slide:hover .hoverImage {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.hp__topProduct__slider__slide:hover .hp__topProduct__slider__slide__image__sizes {
    opacity: 0.8;
}

.slick-prev {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    min-height: 50px;
    min-width: 50px;
    border: 0;
    max-width: 50px;
    max-height: 50px;
    position: absolute;
    top: 50%;
    left: 40px;
    z-index: 3;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 767px) {
    .slick-prev {
        width: 30px;
        height: 30px;
        min-height: 30px;
        min-width: 30px;
        max-width: 30px;
        left: 20px;
        max-height: 30px;
    }
}

.slick-prev::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 30px;
    z-index: 2;
    height: 30px;
    border-radius: 50%;
}

.slick-prev::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    background: url("http://wildflower.pl/wp-content/uploads/2023/04/right-arrow.png") no-repeat;
    width: 30px;
    background-size: 80%;
    background-size: 60%;
    background-position: center;
    z-index: 3;
    height: 25px;
}

.slick-next {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    min-height: 50px;
    min-width: 50px;
    max-width: 50px;
    max-height: 50px;
    position: absolute;
    top: 50%;
    right: -10px;
    z-index: 3;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 767px) {
    .slick-next {
        width: 30px;
        height: 30px;
        min-height: 30px;
        min-width: 30px;
        max-width: 30px;
        max-height: 30px;
    }
}

.slick-next::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 30px;
    z-index: 2;
    height: 30px;
    border-radius: 50%;
}

.slick-next::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url("http://wildflower.pl/wp-content/uploads/2023/04/right-arrow.png") no-repeat;
    background-size: 80%;
    background-size: 60%;
    background-position: center;
    width: 30px;
    z-index: 3;
    height: 25px;
}

.hp__aboutText {
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
    max-width: 100%;
    padding-top: 0;
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 80px;
}

@media (max-width: 767px) {
    .hp__aboutText {
        padding: 0px 0 0px 0;
        margin-top: 20px;
    }
}

.hp__aboutText__conteiner {
    max-width: 1920px;
    width: 100%;
    padding-top: 60px;
    padding-right: 80px;
    padding-bottom: 60px;
    padding-left: 80px;
    text-align: left;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    box-shadow: -2px 8px 50px -20px rgba(55, 38, 14, 0.17);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .hp__aboutText__conteiner {
        padding: 20px 20px 40px 20px;
    }
}

.hp__aboutText--title {
    font-size: 30px;
    text-align: center;
}

@media (max-width: 991px) {
    .hp__aboutText--title {
        font-size: 20px;
    }
}

.hp__aboutText__desc {
    margin-top: 32px;
    text-align: justify;
}

.hp__aboutText__desc span {
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .hp__aboutText__desc span {
        font-size: 12px;
    }
}

.hp__aboutText__desc h2,
.hp__aboutText__desc h3 {
    color: #8f7a6e;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {

    .hp__aboutText__desc h2,
    .hp__aboutText__desc h3 {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
}

.seoText {
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
    max-width: 100%;
    padding-top: 0;
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 20px;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .seoText {
        padding: 0px 0 0px 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.seoText__conteiner {
    max-width: 1460px;
    width: 100%;
    padding-top: 60px;
    padding-right: 80px;
    padding-bottom: 60px;
    padding-left: 80px;
    text-align: left;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    box-shadow: -2px 8px 50px -20px rgba(55, 38, 14, 0.17);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .seoText__conteiner {
        padding: 20px 20px 40px 20px;
    }
}

.seoText--title {
    font-size: 30px;
    text-align: center;
}

@media (max-width: 991px) {
    .seoText--title {
        font-size: 20px;
    }
}

.seoText__desc {
    margin-top: 32px;
    text-align: justify;
}

.seoText__desc span {
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .seoText__desc span {
        font-size: 12px;
    }
}

.seoText__desc h2,
.seoText__desc h3 {
    color: #8f7a6e;
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {

    .seoText__desc h2,
    .seoText__desc h3 {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
}

.footer {
    background-color: #f9fbfa;
    border-top: 1px solid #e1e1e1;
    position: relative;
}

.footer__conteiner {
    width: 100%;
    max-width: 1440px;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
    align-items: flex-start;
    display: grid;
    grid-template-columns: 35% 20% 30%;
    /* trzy kolumny o równej szerokości */
    grid-gap: 20px;
}

@media (max-width: 767px) {
    .footer__conteiner {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }
}

.footer__conteiner__column {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

.footer__conteiner__column--title {
    color: #8f7a6e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1.1 pxpx;
    line-height: 1;
}

.footer__conteiner__column--desc {
    color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.4px;
    line-height: 1.4;
    font-family: "Roboto";
}

@media (max-width: 767px) {
    .footer__conteiner__column--desc {
        font-size: 12px;
    }
}

.footer__conteiner__column .mc4wp-response {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.875em;
    font-weight: 300;
    letter-spacing: 0.4px;
    line-height: 1.4;
    font-family: "Roboto";
    margin-top: 0.75em;
}

.footer__conteiner__column--social {
    text-align: left;
    flex-direction: row;
    display: flex;
    gap: 10px;
    padding-top: 15px;
}

@media (max-width: 767px) {
    .footer__conteiner__column--social {
        z-index: 0;
    }
}

.footer__conteiner__column--social img {
    width: 30px;
    opacity: 0.8;
}

.footer__conteiner__column--menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 767px) {
    .footer__conteiner__column--menu ul {
        gap: 0px;
    }
}

.footer__conteiner__column--menu ul li {
    list-style-type: none;
    line-height: 1.2;
}

.footer__conteiner__column--menu ul li a {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    text-decoration: none;
    padding: 5px 0;
}

@media (max-width: 767px) {
    .footer__conteiner__column--menu ul li a {
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        color: rgba(0, 0, 0, 0.8);
        font-weight: 300;
        line-height: 1;
        font-size: 12px;
    }
}

.footer__conteiner__column form {
    margin-top: 19px;
    width: 100%;
}

.footer__conteiner__column form .mc4wp-form-fields {
    max-width: 250px;
}

.footer__conteiner__column input {
    width: 100%;
    padding: 5px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

.footer__conteiner__column input[type=submit] {
    width: 100%;
    margin-top: 10px;
    background: #8f7a6e !important;
    padding: 10px 5px;
    color: white;
    border: 0;
    cursor: pointer;
}

.breadcrumb {
    background-color: #f9fbfa;
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
    max-width: 100%;
    padding: 20px 40px;
}

.breadcrumb__conteiner {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
    font-size: 14px;
}

.breadcrumb__conteiner--breadcrumb {
    color: #d5b296;
    font-weight: 500;
    font-size: 14px;
}

.breadcrumb__conteiner--breadcrumb a {
    font-weight: 400;
    font-family: inherit;
    text-decoration: none;
    color: #000000;
}

.productList {
    text-align: left;
    min-height: 1000px;
    padding-bottom: 80px;
}

.productList__conteiner {
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.productList--title {
    font-weight: 300;
    font-size: 38px;
    font-family: "Roboto";
}

@media (max-width: 991px) {
    .productList--title {
        font-size: 30px;
    }
}

.productList__sort {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top-color: #e1e1e1;
    border-right-color: #e1e1e1;
    border-bottom-color: #e1e1e1;
    border-left-color: #e1e1e1;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-top-style: solid;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 24px;
    z-index: 3;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
    .productList__sort {
        flex-direction: column;
        gap: 10px;
    }
}

.productList__sort__count {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

.productList__sort__select {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.productList__sort__select__input {
    text-align: left;
    flex-direction: row;
    display: flex;
    gap: 5px;
    font-size: 14px;
    align-items: center;
    cursor: pointer;
    flex-wrap: nowrap;
}

.productList__sort__select__options {
    width: 100%;
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    max-height: 0px;
    overflow: hidden;
    transition-duration: 0.3s;
    position: absolute;
    top: 25px;
}

.productList__sort__select__options__list {
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 34px -16px rgba(55, 38, 14, 0.19);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

.productList__sort__select__options__list .sort-button {
    transition: 0.3s;
    cursor: pointer;
    font-size: 14px;
}

.productList__sort__select__options__list .sort-button:hover {
    color: #d5b296;
}

.productList__sort__select:hover .productList__sort__select__options {
    max-height: 150px;
}

.productList__products {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    display: grid;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    margin-top: 80px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .productList__products {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        margin-top: 40px;
    }
}

.blogPosts {
    text-align: left;
    min-height: 1000px;
}

.blogPosts__conteiner {
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogPosts--title {
    font-weight: 300;
    font-size: 38px;
    font-family: "Roboto";
}

.blogPosts__sort {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top-color: #e1e1e1;
    border-right-color: #e1e1e1;
    border-bottom-color: #e1e1e1;
    border-left-color: #e1e1e1;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-top-style: solid;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
    z-index: 3;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.blogPosts__sort__select {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

.blogPosts__products {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    display: grid;
    transition: 0.3s;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    margin-top: 80px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.blogPosts__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 1440px;
    padding: 0 40px;
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .blogPosts__lists {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 680px) {
    .blogPosts__lists {
        grid-template-columns: repeat(1, 1fr);
    }
}

.blogPosts__lists__post {
    padding-left: 30px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    flex-direction: column;
    display: flex;
    text-align: left;
    justify-content: space-between;
    box-shadow: 0 10px 34px -16px rgba(55, 38, 14, 0.19);
}

.blogPosts__lists__post--title {
    line-height: 1;
}

.blogPosts__lists__post--title a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
    color: #000000;
    text-decoration: none;
}

.blogPosts__lists__post--date {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: #404040;
    margin-top: 20px;
}

.blogPosts__lists__post--desc {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
    margin-bottom: 30px;
}

.blogPosts__lists__post--link {
    color: #d5b296;
    font-weight: 500;
    text-decoration: none;
}

.cartFixed {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 300px;
    background-color: white;
    z-index: 2;
    padding: 50px;
}

#mega-menu-wrap-primary-menu {
    margin-top: 20px;
}

@media (max-width: 767px) {
    #mega-menu-wrap-primary-menu {
        margin: 0;
        position: absolute;
        left: 20px;
        top: 10px;
        z-index: 500;
    }
}

@media (max-width: 767px) {
    #mega-menu-wrap-primary-menu .mega-menu-toggle {
        background: transparent;
    }
}

#mega-menu-wrap-primary-menu a {
    font-weight: 500 !important;
}

.singlePost__conteiner {
    margin-top: 80px;
    margin-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1360px;
    width: 100%;
    padding-top: 60px;
    padding-right: 80px;
    padding-bottom: 60px;
    padding-left: 80px;
    text-align: left;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    box-shadow: -2px 8px 50px -20px rgba(55, 38, 14, 0.17);
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .singlePost__conteiner {
        padding: 20px;
    }
}

.singlePost--title {
    font-size: 30px;
    margin-bottom: 17px;
}

@media (max-width: 767px) {
    .singlePost--title {
        font-size: 25px;
        text-align: center;
    }
}

.singlePost--date {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: #404040;
}

.singlePost__content {
    margin-top: 50px;
}

.singlePost__content span,
.singlePost__content p {
    font-size: 16px;
    color: #6a6a6a;
    font-family: "Roboto";
    display: block;
    font-weight: 500;
    margin: 10px 0;
}

.singlePost__content h2,
.singlePost__content h1 {
    font-size: 20px;
    color: #000000;
    display: block;
    font-family: "Roboto";
    font-weight: 700;
    margin: 20px 0;
}

.singlePost__content a {
    color: #d5b296;
}

.singlePost__content img {
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    margin: 10px 0;
}

.productSingle {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

@media (max-width: 767px) {
    .productSingle {
        flex-direction: column;
        overflow: hidden;
    }
}

.productSingle__gallery {
    width: 55%;
    flex: none;
    display: grid;
    gap: 0.25rem;
}

@media (min-width: 1200px) {
    .productSingle__gallery {
        justify-content: center;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .productSingle__gallery {
        display: flex;
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
}

.productSingle__gallery img,
.productSingle__gallery video {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 /13;
}

.productSingle__gallery img {
    object-position: top;
    object-fit: cover;
}

@media (max-width: 767px) {

    .productSingle__gallery video,
    .productSingle__gallery img {
        width: 70%;
        margin: 0 auto;
    }
}

.productSingle__desc {
    width: 100%;
    padding: 50px;
    position: absolute;
    height: 100%;
    min-height: 100vh;
    right: 0px;
    top: 0px;
    max-height: 100vh;
    position: sticky;
    top: 0;
    overflow-x: auto;
    z-index: 3;
}

@media (max-width: 767px) {
    .productSingle__desc {
        width: 100%;
        padding: 30px;
        min-height: 0vh;
        max-height: 1000vh;
    }
}

@media (max-width: 480px) {
    .productSingle__desc {
        width: 100%;
        padding: 20px;
    }
}

.productSingle__desc .breadcrumb {
    padding: 0;
    background-color: transparent;
}

.productSingle__desc ul {
    padding: 0 20px 20px 20px;
}

.productSingle__desc h1 {
    font-size: 38px;
    line-height: 1.2;
    margin: 10px 0;
}

@media (max-width: 991px) {
    .productSingle__desc h1 {
        font-size: 30px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .productSingle__desc h1 {
        font-size: 16px;
        line-height: 1.3;
        margin-top: 40px;
    }
}

.variations_form.visible {
    bottom: 0;
    flex-direction: column;
}

@media (max-width: 767px) {
    /*.variations_form {*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    width: 100%;*/
    /*    position: fixed;*/
    /*    bottom: 0;*/
    /*    left: 0;*/
    /*    background-color: white;*/
    /*    z-index: 2;*/
    /*    opacity: 1;*/
    /*    justify-content: center;*/
    /*    align-items: center;*/
    /*    bottom: -400px;*/
    /*    transition: 0.4s;*/
    /*}*/
}

@media (max-width: 767px) {
    .variations_form .woocommerce-variation-add-to-cart {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.reset_variations {
    display: none;
}

.vi-wpvs-option-wrap-out-of-stock-attribute {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='1'/><path d='M0 0 L100 100 ' stroke='black' stroke-width='1'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% 100%, auto !important;
}

.vi-wpvs-variation-style label {
    display: none;
}

.vi-wpvs-variation-style label[for="pa_rozmiar-spodni"],
.vi-wpvs-variation-style label[for="pa_rozmiar-bluzy"] {
    display: flex;
}

.vi-wpvs-variation-style-content {
    padding-top: 10px !important;
}

.vi-wpvs-option-wrap-out-of-stock-attribute span {
    color: #000 !important;
}

.reset_variations {
    color: #c08467 !important;
}

.variations {
    width: 100%;
}

.cwg_popup_submit {
    display: block !important;
    padding: 12px 25px !important;
    border: 0 !important;
    background: #c08467 !important;
    cursor: pointer;
    border-radius: 5px !important;
    color: #ffffff !important;
    font-weight: 300 !important;
    margin-bottom: 20px !important;
    height: 50px !important;
    font-size: 16px;
}

.woocommerce-variation-availability .stock {
    display: none;
}

.input-text.qty {
    height: auto;
    font-size: 14px;
    border: 1px solid #d3ced2;
    background: #ffffff;
    color: #000000;
    outline: none;
    font-family: inherit;
    padding: 8px 12px;
    border-radius: 4px;
    resize: none;
    appearance: none;
    min-width: 56px;
    max-width: 56px;
    padding: 8px 9px;
    margin-right: 12px;
    background: url(https://wildflover.realizacjedemo.pl/wp-content/plugins/oxygen-woocommerce/elements/assets/chevron-down.svg), url(https://wildflover.realizacjedemo.pl/wp-content/plugins/oxygen-woocommerce/elements/assets/chevron-up.svg), #ffffff;
    background-size: 6px, 6px;
    background-repeat: no-repeat, no-repeat;
    background-position: right 0.8em bottom calc(50% - 5px), right 0.8em top calc(50% - 5px);
    height: 100%;
}

.woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
}

.single_add_to_cart_button {
    background: #8f7a6e !important;
    border: 0px solid #cccccc !important;
    opacity: 1;
    color: #ffffff;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 24px;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    line-height: 1.2;
    font-weight: 700;
    font-family: inherit;
    outline: none;
    cursor: pointer;
}

.woocommerce-breadcrumb {
    display: none;
}

.yith-wcwl-add-to-wishlist {
    width: 100%;
}

.price .woocommerce-Price-amount {
    font-size: 25px;
}

@media (max-width: 767px) {
    .price .woocommerce-Price-amount {
        padding: 10px 0;
        display: block;
    }
}

.cwginstock-subscribe-form .panel-primary>.panel-heading h4 {
    color: #000000 !important;
}

.cwginstock-subscribe-form .panel-primary {
    border: 0 !important;
}

.cwginstock-panel-body input {
    height: auto !important;
    font-size: 14px !important;
    border: 1px solid #d3ced2 !important;
    background: #ffffff !important;
    color: #000000 !important;
    outline: none !important;
    font-family: inherit !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    resize: none !important;
}

.cwginstock-subscribe-form .panel-primary>.panel-heading {
    background: transparent !important;
    border: 0 !important;
}

.cwgstock_button {
    display: block;
    padding: 12px 25px !important;
    border: 0 !important;
    background: #c08467 !important;
    cursor: pointer;
    border-radius: 5px;
    color: #ffffff !important;
    font-weight: 300;
}

.cwg_iagree_checkbox label {
    font-size: 12px !important;
    margin: 0 0 20px 0 !important;
    display: block !important;
}

.cwg_iagree_checkbox_input a {
    color: #c08467 !important;
}

.cwginstock-subscribe-form .col-md-12 {
    display: flex;
    flex-direction: column;
}

.price bdi,
.price ins {
    font-size: 25px !important;
}

.yith-wcwl-add-button a {
    color: #8f7a6e;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 767px) {
    .yith-wcwl-add-button a {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .yith-wcwl-add-button {
        justify-content: center;
    }
}

.conteiner {
    max-width: 1400px;
    padding: 50px 20px;
    width: 100%;
    margin: 0 auto;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 50px 0;
}

.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-bottom: 1px solid #eceeef;
    padding: 10px 0;
}


.accordion-header {
    background-color: #fff;
    padding: 10px 0;
    cursor: pointer;
    line-height: 1.6;
    font-size: 16px;
    color: #404040;
    font-weight: 600;
    position: relative;
}

.accordion-header:after {
    content: "\f0d7";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    right: 0;
    position: absolute;

}

.accordion-header.active:after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
}

.accordion-content.show {
    transition: 0.6s;
    max-height: 1000px;
}

.added_to_cart {
    color: #d5b296;
    font-weight: 500;
    font-size: 14px;
    padding: 0 5px;
}

.cart .product-thumbnail {
    width: 60px;
    height: 60px;
    padding: 10px !important;
}

.cart a {
    color: #000 !important;
}

.button {
    background: #8f7a6e !important;
    border: 0 !important;
    color: #fff !important;
}

.woocommerce-info {
    border-color: #e1e1e1 !important;
}

input,
textarea {
    border: 1px solid #e1e1e1 !important;
    border-radius: 5px;
    padding: 10px;
}

.woocommerce a {
    color: #d5b296 !important;
}

.cart-collaterals a {
    color: #ffffff !important;
}

.woocommerce-info a {
    color: #ffffff !important;
}

.cart_totals a {
    color: #ffffff !important;
}

.productSingle__desc::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.productSingle__desc::-webkit-scrollbar-track {
    background-color: transparent;
}

.productSingle__desc::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 0.25em;
}

.spinner {
    width: 50px;
    height: 50px;
    background: #f9fbfa;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-top: 50px;
    display: inline-block;
    transform: translateX(-50%);
    opacity: 0;
}

.spinnerVisible {
    z-index: 10;
    opacity: 1;
}

.spinner:after,
.spinner:before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.spinner:before,
.spinner:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    background: #d5b296;
    -webkit-animation: pulse 3s linear infinite;
    animation: pulse 2s linear infinite;
    opacity: 0;
}

.spinner:after {
    -webkit-animation: pulse 2s linear 2.3s infinite;
    animation: pulse 1s linear 2.3s infinite;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

.productSingle__desc .cart {
    display: flex;
}

.variations_form {
    flex-direction: column;
}

.woocommerce-cart-form .cart {
    flex-direction: column;
}

.woocommerce-cart-form .cart tr {
    width: 100%;
}

.clientAccount {
    display: flex;
}

.clientAccount .woocommerce-MyAccount-navigation {
    width: 200px;
    border-right: 1px solid #8f7a6e;
    padding-right: 50px;
}

.clientAccount .woocommerce-MyAccount-navigation ul {
    list-style: none;
}

.clientAccount .woocommerce-MyAccount-content {
    width: calc(100% - 200px);
    padding-left: 50px;
}

.mini-cart {
    position: fixed;
    right: -350px;
    top: 0;
    height: 100vh;
    width: 350px;
    background-color: #ffffff;
    z-index: 10;
    padding: 50px 30px 50px 20px;
    box-shadow: -5px 0 90px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.4s;
}

.woocommerce-mini-cart-item {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #d3ced2;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.mini-cart .woocommerce-Price-amount {
    font-weight: 700;
}

.mini-cart .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
}

.mini-cart .woocommerce-mini-cart__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.mini-cart .woocommerce-mini-cart__buttons a {
    background: #666666 !important;
    border: 1px solid #666666 !important;
    font-size: 12px;
    border-radius: 0px;
    letter-spacing: 1px;
    text-decoration: none !important;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
    padding: 16px 24px;
    outline: none;
    font-family: inherit;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.woocommerce-mini-cart {
    display: flex;
    flex-direction: column;
}

.minicartDesc {
    display: flex;
    flex-direction: column;
}

.minicartImage {
    position: relative;
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    overflow: hidden;
}

.minicartImage img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#coupon_code {
    width: 100px;
}

.mega-toggle-animated-inner,
.mega-toggle-animated-inner::before,
.mega-toggle-animated-inner::after {
    width: 30px !important;
    background-color: #000 !important;
}

.templatepage {
    padding: 50px 0;
}

@media (max-width: 767px) {
    .templatepage {
        padding: 20px 0;
    }
}

.templatepage a {
    color: #8f7a6e !important;
}

.templatepage__conteiner {
    max-width: 1200px;
    width: 100%;
    padding-top: 60px;
    padding-right: 80px;
    padding-bottom: 60px;
    padding-left: 80px;
    text-align: left;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    box-shadow: -2px 8px 50px -20px rgba(55, 38, 14, 0.17);
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .templatepage__conteiner {
        padding: 20px;
    }
}

.templatepage__conteiner .ct-headline {
    text-align: center;
}

@media (max-width: 767px) {
    .templatepage__conteiner .ct-headline {
        font-size: 20px;
    }
}

.templatepage__conteiner img {
    margin-left: 50%;
    transform: translateX(-50%);
}

.templatepage p {
    font-size: 16px;
    color: #6a6a6a;
    font-family: "Roboto";
    line-height: 1.6;
    font-weight: 400;
    margin: 10px 0;
}

.templatepage ul,
.templatepage ol {
    padding-left: 20px;
}

.templatepage li {
    font-size: 16px;
    color: #6a6a6a;
    font-family: "Roboto";
    line-height: 1.6;
    font-weight: 400;
}

.templatepage h2,
.templatepage h3,
.templatepage h1 {
    margin: 10px 0;
    font-weight: 600;
}

.wpforms-submit {
    background: #d5b296 !important;
    border-radius: 5px !important;
    color: white !important;
}

#div_block-11-10978 {
    width: 100%;
    text-align: left;
    flex-direction: row;
    display: flex;
    padding-bottom: 74px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#div_block-12-10978 {
    width: 50%;
    text-align: left;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

#div_block-12-10978 a {
    color: #000000;
    font-weight: 400;
}

.wpforms-submit-container {
    text-align: center;
}

#div_block-16-10978 {
    width: 50%;
    text-align: left;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

#div_block-16-10978 a {
    color: #000000;
    font-weight: 400;
}

@media (max-width: 767px) {
    .contactpage__conteiner {
        padding-right: 10px;
        padding-left: 12px;
    }
}

@media (max-width: 479px) {
    #div_block-11-10978 {
        flex-direction: column;
        display: flex;
        text-align: left;
        align-items: center;
        padding-bottom: 37px;
    }
}

@media (max-width: 767px) {
    .productSingle__desc .vi-wpvs-variation-style .vi-wpvs-variation-wrap-wrap {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 767px) {
    .productSingle__desc .yith-wcwl-add-button {
        display: flex;
    }
}

@media (max-width: 767px) {
    .productSingle__desc .reset_variations {
        display: none !important;
    }
}

.bundled_products {
    list-style-type: none;
}

.productSingle__desc .cart {
    flex-wrap: wrap;
}

@media (min-width: 960px) {
    .productSingle__desc .cart .bundle_data {
        width: 69%;
        justify-content: center;
        display: inline-block;
    }
}

.productSingle__desc .cart .bundle_data .bundle_wrap {
    width: 100%;

}

.productSingle__desc .cart .bundled_product {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .productSingle__desc .cart .bundled_product .variations_form {
        position: relative;
        margin: 0;
        padding: 0;
        bottom: 0;
    }
}

.productSingle__desc .cart .bundled_product .bundled_product_title {
    font-size: 18px;
    margin: 15px 0 5px 0;
}

.productSingle__desc .cart .bundled_product .bundled_product_title_link {
    display: none;
}

.productSingle__desc .cart .bundle_data .bundle_button {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.productSingle__desc ul.variable-items-wrapper {
    list-style-type: none;
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
    margin: 20px 0;
}

ul.variable-items-wrapper .variable-item.button-variable-item {
    background-color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #000;
    position: relative;
}

ul.variable-items-wrapper .variable-item.button-variable-item.selected {
    border: 1px solid #000;
    background-color: #d5b296;
}

ul.variable-items-wrapper .variable-item.button-variable-item.no-stock {
    /*pointer-events: none;*/
}

ul.variable-items-wrapper .variable-item.button-variable-item.no-stock:after {
    content: '';
    background-position-x: 0%;
    background-position-y: 0%;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='1'/><path d='M0 0 L100 100 ' stroke='black' stroke-width='1'/></svg>") no-repeat center center;
    background-size: 100% 100%, auto;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


@media only screen and (max-width: 768px) {
    #mega-menu-wrap-primary-menu .mega-menu-toggle+#mega-menu-primary-menu {
        background-color: #F8F0E7;
    }

    #mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-item>a.mega-menu-link {
        color: #000;
    }
}


body #mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-flyout ul.mega-sub-menu {
    background: #b6a59d;
}

.banner-between-products {
    margin-bottom: 50px;
    display: block;
}

.banner-between-products .banner-between-products--inside {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 1000px;
}

.banner-between-products .banner-between-products--inside .banner-between-products--inside_desktop {
    object-fit: contain;
    display: none;
    width: 100%;

    @media (min-width: 960px) {
        display: block;
    }
}

.banner-between-products .banner-between-products--inside .banner-between-products--inside_mobile {
    display: none;
    width: 100%;

    @media (max-width: 960px) {
        display: block;
    }
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    background: #b6a59d;
    color: #fff;
}