* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;

}

.playfair-display {
    font-family: "Playfair Display", serif;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.delius-swash-caps-regular {
    font-family: "Delius Swash Caps", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
    position: relative;
    height: 100%;
    z-index: 0;
    font-weight: normal;
    font-family: "Delius Swash Caps", cursive;
}

nav {
    position: sticky;
    top: 0;
    height: 4.5rem;
    min-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    z-index: 1000;
    padding: 0 4rem;
    background-color: rgb(241, 244, 240);
    box-shadow: black 0 0 7px;

}

.top-navbar {
    display: flex;
    width: 100%;
    font-size: 18px;
    color: black;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}


.logo-name {
    font-size: 2rem;
    font-weight: normal;
    padding: 0.3rem 0.5rem;
    font-family: "Delius Swash Caps", cursive;
    color: white;
    border-radius: 0.7rem;
    background-color: rgb(95, 172, 33, 1);
}


.ikonki_nav {
    display: flex;
    width: auto;
    gap:0.5rem;
    margin-right: 0;
    margin-left: 1rem;
    align-items: center;
}

.nav-icon {
    width: auto;
    height: 2.5rem;
    padding:0.4rem;
    border-radius: 0.7rem;
    display: flex;
    cursor: pointer;
}

#cart-icon{
    background-color: rgba(104, 188, 37, 0.9);


}

#cart-icon:hover{

    background-color: rgb(104, 188, 37);
    transition: background-color 0.3s ease;
}


.kategorie-nav {
    display: flex;
    position: relative;
    font-weight: normal;
    margin-left: auto;
    margin-right: auto;
}

.kategorie-nav div {
    display: flex;
    position: relative;
    font-weight: normal;
}

.pasek1 {
    color: black;
    font-size: 16px;
    padding: 0.5rem 1.1rem;

}



.pasek1::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    bottom: 0;
    background-color: rgb(95, 172, 33);
    transition: width 0.3s ease;
}


.pasek1:hover::after {
    width: 100%;
}

.pasek1:hover{
    width: 100%;
    background-color: rgba(246, 246, 246, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown{
    min-width: 1rem;
    position:relative;
}

.dropdown *{
    box-sizing: border-box;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 1rem;

}

.select{
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5em;
    cursor:pointer;
}


.menu {
    background-color: rgb(241, 244, 240);
    list-style: none;
    padding: 0.2em 0.5em;
    border-radius: 0 0 0.5rem 0.5rem;
    position: absolute;
    top: 3.5rem;
    left: 50%;
    width: 200%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity 0.3s ease, transform 0.5s ease;
    z-index: 1;
    text-align: left;
}



.menu li{

    position: relative;
    padding: 0.7rem 0.2rem;
    border-radius: 0.5em;
    cursor:pointer;
    font-size:14px;
    text-align:center;
}

.menu li::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    bottom: 0;
    background-color: rgb(95, 172, 33);
    transition: width 0.3s ease;
}

.menu li:hover::after {
    width: 70%;
}

.menu-open{
    display:block;
    opacity:1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}


.search {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: rgb(95, 172, 33);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    transition: width .35s ease, background-color .2s ease;
    margin-left: auto;
    margin-right: auto;
}

.search:hover {
    background: rgb(95, 172, 33, 0.9);
}

.search__toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    transition: left .35s ease, transform .35s ease, color .2s ease, width .35s ease, height .35s ease;
}

.search.active-search .search__toggle {
    left: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    color: #333;
}

.search__toggle i {
    display: block;
    line-height: 0;
}

.search__input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    padding: 0 16px 0 50px;
    border: none;
    border-radius: 999px;
    outline: none;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: width .35s ease, opacity .2s ease;
    font-size: 16px;

}

.search__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search.active-search {
    width: min(350px, 92vw);
    background: #fff;
}

.search.active-search .search__input {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
}

.search.active-search .search__toggle {
    color: #333;
}

.search__toggle .bx {
    margin: 0;
    transform: translateY(1px) translateX(1px);

}

.search__clear {
    position: absolute;
    right: 10px;
    top: 55%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: none;

}

.search__clear .bx {
    margin: 0;
    line-height: 1;
    font-size: 32px;
    font-weight: 400;
}


.search.active-search .search__clear {
    display: block;
}


.burger {
    display: none;
    position: absolute;
    right: 2rem;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    z-index: 10000;
}

.burger span {
    width: 24px;
    height: 2px;
    background: black;
    display: block;
}


/* Domyślnie ukryte na desktopie */
.kategorie-nav .only-burger { display: none; }



.swiper-reklamy {
    width: 100%;
    height: 630px;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0; /* pokrywa całe zdjęcie */
    pointer-events: none;
    z-index: 2;
}

.zdjecie1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-attachment: fixed;
}

.zdjecie::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-reklamy > .swiper-pagination .swiper-pagination-bullet {
    background-color: limegreen;
}



.hero-comment {
    position: absolute;
    top: 13rem;
    left: 5rem;
    font-size: 3.5rem;
    color: white;
    z-index: 100;
}


.category-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 20rem;
    margin-top: 2rem;
    list-style: none;
    background: white;
}

.category-icons li {
    flex: 1 1 150px;
    font-size: 1.2rem;
    min-height: 240px;
}


.text-category {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6e350c;
    height: 3.5rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.category1-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}


.category-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 150px;
    height: 150px;
    background-color: rgba(240, 243, 239, 0.76);
    box-shadow: black 0 0 7px;
    border-radius: 50%;
    cursor: pointer;
}

.vegan {
    height: 100%;
    width: 100%;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.articles-section{
    background: #fff5ea;
    padding:3rem 0;

}

.articles-wrapper {
    margin: 0 3.3rem;
    height:100%;
    display: flex;
    align-items: center;
    background: #fffefb;


}



.articles-wrapper .text-box {
    font-size: 1.2rem;
    width:60%;
    display: flex;
    height:100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;

}

.text-container1{
    display: flex;
    gap: 1rem;
}

.text-container1 p span{
   color: rgba(81, 195, 35, 0.86);
    text-shadow: 0 0 1px black;
}

.text-container1 img{
    width: 30px;
    height: 30px;
}

.a-photo-wrapper{
    display: flex;
    align-items:center;
    width:40%;
    height:100%;
}



.article-photo1{
    width:100%;
    height:100%;

    object-fit: cover;
}



/* Styl dla sekcji produktów */
.products-section {
    padding: 1rem 0 3rem;
    background: linear-gradient(180deg, transparent, #f8f8f2); /* Tło w gradiencie */
    margin-top: 1rem;
}

/* Tytuł sekcji */
.products-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #4c2a0f;
    font-weight: 600;
}

/* Opakowanie kontenera produktów */
.product-container-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 2.25rem;
    overflow-x: auto;
    padding: .25rem .5rem .75rem .3rem;
    scroll-snap-type: x mandatory;
}

/* Kontener pojedynczego produktu */
.product {
    position: relative;
    height: 380px;
    width: 100%;
    max-width: 260px;
    min-width: 240px;
    margin: 0 1rem;
    padding: .5rem .5rem 3rem .5rem;
    text-align: center;
    color: black;
    background-color: #fbfbf7;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, .41);
    line-height: 1.2;
    transition: box-shadow .25s;
}

/* Efekt hover na produkcie */
.product:hover {
    box-shadow: 1px 2px 5px 4px rgba(28, 74, 26, .6);
}

/* Obrazek produktu */
.product-image {
    width: 100%;
    height: 70%;
    cursor: pointer;
    object-fit: contain;
    border-radius: 1rem;
    background-color: #fff;
    transition: transform .5s ease;

}

/* Efekt powiększenia obrazka po najechaniu */
.product-image:hover {
    transform: scale(1.06);
}

/* Tytuł produktu */
.product h3 {
    font-weight: normal;
    font-size: 1rem;
    margin: .6rem 0;
}

/* Cena produktu */
.product .price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3px;
    position: absolute;
    bottom: .4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: normal;
    width: 5.7rem;
    cursor: default;
    font-family: 'Montserrat', sans-serif;
}

/* Przycisk dodania do koszyka */
.products-cart {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3.5rem;
    height: 2.4rem;
    padding: 4px;
    background-color: rgb(110, 198, 39);
    border-radius: 5px 0 0 0;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: black 0 0 1px;
}

.products-cart button {
    width: 100%;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

/* Ikona koszyka */
.cart-icon {
    width: 2rem;
    height: 2rem;
}

/* Efekt hover na przycisku koszyka */
.products-cart:hover {
    background-color: rgba(110, 198, 39, .85);
    transition: background-color .4s;
}

/* Serce - ulubione */
.product .bx.bx-heart, .product .bxs-heart {
    position: absolute;
    top: .5rem;
    right: .8rem;
    font-size: 40px;
    color: rgb(255, 59, 0);
    cursor: pointer;
    transition: transform .3s ease;
}

/* Efekt hover na sercu */
.product .bx.bx-heart, .product .bxs-heart:hover {
    transform: scale(1.1);
    color: #e74c3c;
}



.controls-container {

    display: flex;
    position: absolute;
    bottom: 0.3rem;
    right: 5rem;
    width: 7.7rem;
}


.transmisje{
    padding:0 4rem;
    background-color: #fff5ea;
    height:580px;
    display:  flex;
    align-items:center;

}

.transmisje-wrapper{
    height: 470px;
    width: 100%;
    padding:0 2rem;
    margin:1rem 0;
    color: #4c2a0f;
    display: flex;
    align-items: center;
    background-color: #ffffff;

}

.transmisje-wrapper p{
    width: 50%;
    text-align: center;
    margin: 0 2rem 0 2rem;
    line-height: 2;
    font-size:.95rem;
}

.transmisje-image-wrapper{
    width: 550px;
    height: 450px;
    margin: 1rem;


}

.transmisje-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.o-nas-section {
    margin: 0 2rem;
}


.o-nas-wrapper {
    height: 470px;
    width: 100%;
    background: white;
    color: #4c2a0f;
    display: flex;
    align-items: center;

}

.o-nas-title {
    font-size: 3rem;
}

.o-nas-info {
    width: 50%;
    text-align: center;
    margin: 0 2rem 2rem 2rem;

    line-height: 2;
}

.o-nas-photo-wrapper {
    width: 600px;
    height: 400px;
    margin: 2rem;

    object-fit: cover;
}

.o-nas-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.newsletter-section {
    background: #fff5ea;
}

.newsletter-wrapper {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.newsletter {
    position: relative;
    z-index: 10;
    height: 70%;
    width: 91%;
    background-color: rgb(255, 255, 255);
    color: #5a2a07;
    border-radius: 2px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    font-size: 2.2rem;
    padding: 10px;
    flex-direction: column;

}

.newsletter-info {
    font-size: 1.2rem;
}

.newsletter form {
    position: relative;
    display: flex;
    align-items: center;
    width: 30vw;
}

.newsletter form label {
    width: 100%;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: limegreen 1px solid;
    border-radius: 1rem;
}

.location-wrapper {
    height: 100%;
    width: 100%;
    background: white;
    color: rgb(90, 42, 7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
}

.location-info {
    width: 100%;
    margin-right: 14px;
    padding-left:1rem;
    line-height: 2;
}

.location-map {
    width: 100%;
    margin: 2rem 1.2rem;
}

iframe {
    box-shadow: black 0 0 10px;
}

.footer .footer-container {
    background: #475338;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: white;
    justify-items: center;
    align-items: start;
    gap: 1rem;
}

.nowrap-email {
    flex-wrap: nowrap;
    overflow: hidden;
}

.footer .footer-container .footer-box {
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0;
}

.footer-container .footer-box h3 {
    padding: 0.5rem 0;
    font-size: 1.7rem;
    color: white;
}

.footer-container .footer-box a {

    padding: 0.5rem 0;
    color: white;
}

.footer-container .footer-box p {
    display: block;
    padding: 0.5rem 0;
    color: white;
}

.footer-container .footer-box a:hover {
    color: floralwhite;
    text-decoration-line: underline;
}


.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social img {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.bx{
    font-size: 30px;
    margin-top: 10px;
    margin-right: 0.5rem;

    cursor: pointer;
}

.bx-right-arrow-alt {
    font-size: 30px;
    margin-top: 10px;
    margin-right: 0.5rem;
    border-radius:10px;
    border: 1px solid white;
    cursor: pointer;
}

.bx-right-arrow-alt:hover {
    background-color: rgba(255, 255, 255, 0.16);
}


.email-footer {
    width: 200px;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.footer-box form {
    width: 100%;
}

.email-footer::placeholder {
    color: rgba(248, 247, 247, 0.7);
}

.copyright-container {
    display: flex;
    align-items: center;
    justify-content: center; /* domyślnie wszystko na środek */
    position: relative;
    padding: 1rem 2rem;
    background-color: #e4ffc2;
    margin: 0;
    height: 60px;
}

.payment-icons {
    position: absolute;
    right: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.copyright {
    text-align: center;
    white-space: wrap;
}

.pay-icons {
    height: 32px;
    width: auto;
    cursor: pointer;
}

#ikonka-blik {
    width: 43px;
    height: 28px;
}


@media (max-width: 1200px){
    .transmisje-wrapper{
        height: 500px;

    }
}

@media (max-width: 1150px) {
    .burger {
        display: flex;
        width: 40px;
        height: 40px;
        margin-left: auto;
    }

    .burger.active {
        position: fixed;
        top: 1.1rem;
        right: 2rem;
        border-radius: 50%;
    }


    .burger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .burger .bar {
        display: block;
        width: 24px;
        height: 2px;
        background-color: black;
        transition: 0.3s ease-in-out;
    }

    .kategorie-nav .only-burger {
        display: flex;            /* tak jak inne wiersze menu */
    }
    .kategorie-nav .only-burger .pasek1 {
        width: 100%;
        padding: 0.5rem 2rem;     /* spójnie z resztą pozycji */
    }

    .kategorie-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 270px;
        background-color: rgba(246, 246, 246, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        text-align: start;
        flex-direction: column;
        z-index: 1000000;
        letter-spacing: 1px;
        padding: 4rem 0;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
    }

    .kategorie-nav.no-anim {
        transition: none;
    }



    .pasek1 {
        padding: 0.5rem 2rem;
        color: black;
        width: 100%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 235, 187, 0.4));
    }

    .pasek1:hover {
        background-color: rgba(246, 246, 246, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        text-decoration: none;

    }

    .ikonki_nav {
        display: flex;  /* Wyświetl ikonki w elastycznym układzie */
      /* Odstęp pomiędzy ikonami */

    }






    #burger-icon1{
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(141, 248, 105, 0.4));
    }

    #burger-icon2{
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 192, 203, 0.5));
    }


    .kategorie-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(0);
        transition: 0.5s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.3) -10px 0 10px;

    }

    .search {
        margin-left: auto;
        margin-right: 3rem;
    }


    .logo-search-bar {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .logo-name {
        font-size: 3vw;
    }

    nav {
        align-items: center;
    }

    .category-icons {
        padding: 0 3rem;
        height: 29rem;
    }

    .category-icons li {

        min-width: 270px;
    }


    .location-wrapper {
        width: auto;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-items: center;
    }


    .transmisje{
        padding:0 4rem;
        background-color: #fff5ea;

        height:auto;
        display:  flex;
        border-bottom: 1px solid #fad6ae;
        border-top: 1px solid #fad6ae;
    }

    .transmisje-wrapper{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-items: center;
    }

    .transmisje-wrapper p{
        width: 100%;
        padding: 0 1rem 3rem 1rem;
        margin: 0;

    }




    .o-nas-wrapper {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-items: center;

    }

    .o-nas-info {
        width: 100%;
        padding: 0 1rem;
        margin: 0;
    }

    .newsletter-section{

        border-bottom: 1px solid #fad6ae;
        border-top: 1px solid #fad6ae;
    }

    .articles-section{
        border-bottom: 1px solid #fad6ae;
        border-top: 1px solid #fad6ae;

    }

    .articles-wrapper {
        margin: 0 1rem;
        height:100%;
        display: flex;
        align-items: center;
        background: #fffefb;
        padding-bottom:3rem;
        flex-direction: column;
    }


    .articles-wrapper .text-box {
        font-size: 1.2rem;
        width:90%;
        display: flex;
        height:100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .a-photo-wrapper{
        display: flex;
        align-items: center;
        justify-content: end;
        width:70%;

        height:100%;
    }


    .location-info {
        width: 100%;
        margin: 0.5rem;
        padding: 1rem 3rem;
        text-align: center;
    }

    .location-map {
        width: auto;
        margin: 2rem 0 0 0;

    }

    .copyright-container {
        display: flex;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0.8rem;
        margin: 0;
        height: auto;
    }

    .payment-icons {
        position: static;
        gap: 1.5rem;
    }

    .pay-icons {
        height: 28px;
        width: auto;
        cursor: pointer;
    }

    #ikonka-blik {
        width: 43px;
        height: auto;
    }


}


@media (max-width: 1000px) {


    .kategorie-nav {
        width: 260px;

    }

    .logo-name {
        font-size: 3.5vw;
    }

    .category-icons li {

        min-width: 230px;
    }




}




@media (max-width: 900px) {


    .kategorie-nav {
        width: 240px;

    }

    .logo-name {

    }


    .category-icons li {

        min-width: 207px;
    }

    .newsletter form {
        width: 50vw;
    }

    .copyright-container {
        display: flex;
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0.8rem;
        margin: 0;
        height: auto;
    }

    .payment-icons {
        position: static;
        gap: 1.5rem;
    }

    .pay-icons {
        height: 28px;
        width: auto;
        cursor: pointer;
    }

    #ikonka-blik {
        width: 43px;
        height: auto;
    }

    .articles-wrapper {
        display: flex;
        align-items: center;
        background: #fffefb;
        padding-bottom:3rem;
        flex-direction: column;
    }


    .articles-wrapper .text-box {
        font-size: 1.2rem;
        width:90%;
        display: flex;
        height:100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .a-photo-wrapper{
        display: flex;
        align-items: center;
        justify-content: end;
        width:90%;

        height:100%;
    }

}


@media (max-width: 768px) {



    body {
        margin: 0;
    }

    .footer {
        margin: 0 64px;
    }

    nav {
        border-radius: 0;
    }

    .logo-name {
        font-size: 3.5vw;
        margin-left: -3.3rem;
    }

    .burger {
        margin-right: -1.5rem;
    }

    .kategorie-nav {
        width: 210px;
    }


    .search {
        width: 36px;
        height: 36px;
    }

    .search__toggle {
        width: 40px;
        height: 40px;
        font-size: 22px;    /* mniejsza ikona lupy */
    }

    .search__toggle .bx-search{
        font-size: 22px;
    }

    .search.active-search {
        width: min(260px, 86vw); /* w trybie otwartym też trochę węższa */
    }

    .search.active-search .search__toggle {
        left: 8px;             /* wyrównanie po zmniejszeniu */
        width: 30px;
        height: 30px;
    }

    .search__input {
        padding-left: 42px;    /* dopasuj odstęp do mniejszego przycisku */
        font-size: 14px;
    }

    .search__clear {
        width: 30px;
        height: 30px;
        right: 6px;
    }

    .zdjecie1 {
        box-shadow: none;
    }

    .reklamy {
        border-radius: 0;
    }

    .category-icons {
        display: flex;


        padding: 0 2rem;
        height: 30rem;
        margin-top: 1rem;

    }



    .category-icons {
        padding: 0;
    }



    .category-image-wrapper {

        width: 130px;
        height: 130px;
    }

    .category-icons li {

        min-width: 200px;
        min-height: 50px;
    }


    .info-section {
        font-size: 1.1rem;
    }

    .transmisje{
        padding:0;
    }

    .transmisje-wrapper{

        padding:0;
        margin:1rem;

    }

    .transmisje-wrapper p{
        font-size:1rem;
    }


    .transmisje-image-wrapper{
        width: 90%;
        height: 430px;
        margin: 0 0 1rem 0;
        box-shadow: none;
    }

    .transmisje-image-wrapper img{
        width: 100%;
        height: 100%;

    }

    .o-nas-section {
        margin: 0 1rem;
    }

    .o-nas-photo-wrapper {
        width: auto;
        height: auto;
        margin: 1rem 0 1rem 0;
        box-shadow: none;
    }

    .o-nas-photo {
        width: 100%;
        height: 100%;
    }

    .newsletter {
        height:90%;
    }

    .newsletter-info {
        font-size: 1.2rem;
    }

    .newsletter-input {
        width: 100%;
        padding: 0.3rem 1rem;

    }

    .location-section{

    }

    .location-wrapper {
        width: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;

        padding: 0;


    }


    .location-wrapper iframe {
        width: 100%;
    }

    .location-info {
        padding: .5rem 1rem;
    }

    .location-map {
        width: 95%;
        margin: 0;
        padding: 1rem 0 0 0;
    }

    .footer .footer-container {
        margin: 0 -64px 0 -64px;
        grid-template-columns: repeat(2, 1fr); /* tylko 2 kolumny */
    }

    .nowrap-email form {
        display: flex;
        flex-direction: column;

        align-items: flex-start;
    }


    .footer .footer-container .footer-box {
        margin-top: 0;
        margin-right: 0;
        line-height: 1;
    }

    #info-foot {
        padding: 1.5rem 0 0 0;
    }

     #socials-foot {
        padding: 1.5rem 0 0 0;
        margin-left:1rem;
        margin-right:auto;
    }

    #call-to-mail {
        margin-left: 1rem;
        margin-right:auto;

    }

    .footer-container .footer-box a {
        padding: 0.5rem 0;
        color: white;
    }

    .footer-container .footer-box h3 {
        padding: 0.5rem 0;
        font-size: 1.5rem;
        color: white;
    }

    nav {
        height: 3.4rem;         /* było 4.5rem */
           /* trochę ciaśniejsze odstępy */
    }

    .burger {

        width: 30px;
        height: 35px;
        margin-left:0;
        right:3rem;

    }

    .burger .bar {
        display: block;
        width: 20px;
        height: 2px;
        background-color: black;
        transition: 0.3s ease-in-out;
    }

    .burger.active {
        position: fixed;
        top: 0.6rem;
        right: 3rem;
        border-radius: 50%;
    }


    .burger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger.active .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .burger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }



    .hero-comment {
        position: absolute;
        top: 20rem;
        left: 2.5rem;
        font-size: 2.5rem;
        color: white;
        z-index: 100;
    }

    .pay-icons {
        height: 22px;
        width: auto;
        cursor: pointer;
    }

    #ikonka-blik {
        width: 35px;
        height: 23px;
    }


}

@media (max-width: 700px) {

    .category-icons li {

        min-width: 180px;
    }
    .category-image-wrapper {

        width: 125px;
        height: 125px;
    }



    .newsletter {
        height: 90%;
        width: 91%;
        gap: 1.5rem;
        font-size: 1.8rem;
    }

    .newsletter-info {
        font-size: 0.9rem;
    }

        .cart-icon{
        width:1.4rem;
        height:1.4rem;
    }
    .products-cart {
    width: 3rem;
    height: 2rem;

}


}

@media (max-width: 650px) {

    .category-icons li {

        min-width: 170px;
    }
    .category-image-wrapper {

        width: 125px;
        height: 125px;
    }

}

@media (max-width: 600px) {

    .category-icons li {

        min-width: 150px;
    }
    .category-image-wrapper {

        width: 120px;
        height: 120px;
    }

    .products-section h2 {
    font-size: 1.5rem;

}

}

@media (max-width: 550px) {


    .category-icons {

        align-content: flex-start;
        gap:40px;
        height: 35rem;
        padding:0 -2rem;
    }

    .category-icons li {

        min-width: 110px;
    }
    .category-image-wrapper {

        width: 100px;
        height: 100px;
    }

    .text-category {
        width: 100px;
        height: 2.5rem;
        font-size: 1.1rem;
        margin-top: 0.5rem;
        line-height: 1.3;
    }

    .hero-comment {
        position: absolute;
        top: 20rem;
        left: 2rem;
        font-size: 1.5rem;
        color: white;
        z-index: 100;
    }

}


@media (max-width: 529px){
    .category-icons {

        align-content: flex-start;
        gap:40px;
        height: 35rem;
        padding:0 -2rem;
    }

}

@media (max-width: 450px) {

    .category-icons li {

        min-width: 80px;
    }
    .category-image-wrapper {

        width: 80px;
        height: 80px;
    }

    .category-icons {
        display: flex;

        height: 30rem;
        margin-top: 1.5rem;

    }

      .transmisje-image-wrapper{
        width: 90%;
        height: 300px;
        margin: 0 0 1rem 0;
        box-shadow: none;
    }
}


@media (max-width: 418px){

.newsletter-wrapper {
    height: 400px;


}
}

@media (max-width: 400px) {

    .category-icons li {

        min-width: 40px;
    }
    .category-image-wrapper {

        width: 80px;
        height: 80px;
    }

    .category-icons {
        display: flex;

        height: 30rem;
        margin-top: 1.5rem;

    }
    .category-icons {


        column-gap:0;
        row-gap:15px;
    }


}

@media (max-width: 359px) {


    .category-icons {


        height: 53rem;

    }
}


.product { position: relative; }

.badge--promo {
  position: absolute;
  top: 16px; left: -7px;
  background: #e63946;
  color: #fff!important;
  padding: 6px 12px;
  font: 600 12px/1.1 "Poppins", system-ui;
  text-transform: uppercase; letter-spacing: .5px;
  border-radius: 1px 8px 8px 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  z-index: 100;


  z-index: 3;             /* ponad obrazkiem (który zwykle ma z-index:auto/0) */
  pointer-events: none;   /* żeby hover na obrazku działał normalnie */
  transform: translateZ(0);
}












