/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1778746392
Updated: 2026-05-14 10:13:12

*/

html{
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

body{
    font-family: inherit;
    font-size: 16px;
    color: #2f2f2f;
}

h1{
    font-size: 32px;
    color: #2f2f2f;
}

h2{
    font-size: 27px;
    color: #2f2f2f;
}

h3{
    font-size: 24px;
    color: #2f2f2f;
}

p,
li{
    font-size: 16px;
    color: #2f2f2f;
}

a{
    font-family: inherit;
}

small{
    font-size: 14px;
    color: #2f2f2f;
}

strong{
    color: #a70e13;
}

#main-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 5px 20px;
    box-sizing: border-box;
}
.header-inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
    height: 90px;
}
.main-bar-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    height: 100%;
    flex-shrink: 0;
}
.main-bar-logo-container{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 30%;
    height: 100%;
}
.main-bar-logo-container a{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
}
.main-bar-logo-container a img{
    max-width: 220px;
    object-fit: contain;
}

.menus-box{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
}
.site-menu-header{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.site-menu-header:first-child{
    width: 65%;
}
.site-menu-header:last-child{
    width: 35%;
}
#menu-main-menu-nav{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
#menu-main-menu-nav li{
    display: inline-block;
    margin-right: 20px;
}
#menu-main-menu-nav li a{
    text-decoration: none;
    color: #2f2f2f;
    font-size: 16px;
    font-weight: 600;   
    padding: 5px 10px;
    transition: all 0.3s ease;
}
#menu-main-menu-nav li a:hover{
    color: #a70e13;
}
#menu-products-menu-nav{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
#menu-products-menu-nav li{
    display: inline-block;
    margin-right: 20px;
}
#menu-products-menu-nav li a{
    text-decoration: none;
    color: #a70e13;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    transition: all 0.3s ease;
}
#menu-products-menu-nav li a:hover{
    color: #2f2f2f;
}

/* Hamburger – tylko mobile */
.mobile-menu-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-menu-toggle:hover{
    background: transparent;
}
.mobile-menu-toggle:focus{
    background: transparent;
}
.mobile-menu-toggle:focus-visible{
    background: transparent;
}
.mobile-menu-toggle__bar{
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2f2f2f;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__bar:nth-child(2){
    opacity: 0;
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

/* Panel menu – desktop: w rzędzie; mobile: wysuwany spod headera */
.mobile-menu-panel{
    flex: 1;
}

@media (max-width: 1100px){
    #main-header{
        padding: 0;
    }
    .header-inner{
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    .main-bar-container{
        width: 100%;
        height: auto;
        min-height: 70px;
        padding: 8px 20px;
        box-sizing: border-box;
    }
    .main-bar-logo-container{
        width: auto;
        flex: 1;
    }
    .main-bar-logo-container a img{
        max-width: 160px;
    }
    .mobile-menu-toggle{
        display: flex;
    }

    .mobile-menu-panel{
        flex: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        transition: max-height 0.35s ease;
    }
    .mobile-menu-panel.is-open{
        max-height: min(80vh, 600px);
        overflow-y: auto;
    }

    .menus-box{
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        height: auto;
        padding: 8px 20px 16px;
    }
    .site-menu-header,
    .site-menu-header:first-child,
    .site-menu-header:last-child{
        width: 100%;
        height: auto;
        display: block;
    }
    #menu-main-menu-nav,
    #menu-products-menu-nav{
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        height: auto;
    }
    #menu-main-menu-nav li,
    #menu-products-menu-nav li{
        display: block;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    #menu-main-menu-nav li a,
    #menu-products-menu-nav li a{
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 15px;
    }
    body.mobile-menu-open{
        overflow: hidden;
    }
}

@media (max-width: 1200px){
    #menu-products-menu-nav li a{
        font-size: 14px;
    }
}

@media (min-width: 1100px){
    .mobile-menu-toggle{
        display: none !important;
    }
    .mobile-menu-panel{
        flex: 1;
        width: 70%;
        max-height: none !important;
        overflow: visible;
        box-shadow: none;
    }
}

/* // kategoria graczy */

.categories-page-container{
    width: 100%;
    height: auto;
    background-color: #ffffff;
}
.categories-page{
    height: auto;
    width: 100%;
    max-width: 1290px;
    margin: 70px auto 0px auto;
    padding: 0px 20px 100px 20px;
    display: flex;
    flex-direction: column;
}
.categories-page-hero-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding: 20px 0px 100px 0px;
}
.categories-page-hero-section__content{
    height: auto;
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.categories-page-hero-section__content h1,
.categories-page-hero-section__content h2,
.categories-page-hero-section__content p{
    margin: 0px;
}
.categories-page-hero-section__content h1{
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
    color: #2f2f2f;
    letter-spacing: -5%;
}
.categories-page-subcategory__subtitle-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
    width: 100%;
}
.categories-page-hero-section__content h1 strong,
.categories-page-subcategory__texts h2 strong,
.categories-page-subcategory__texts h3 strong{
    font-weight: 600;
    color: #a70e13;
}
.categories-page-hero-section__content h2,
.categories-page-subcategory__texts h2{
    font-size: 27px;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 25px;
}
.categories-page-hero-section__content p{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 18px;
    text-align: justify;
}
.categories-page-hero-section__content p:last-of-type{
    margin-bottom: 0px;
}
.categories-page-hero-section__image{
    width: 45%;
}
.categories-page-hero-section__content a{
    border: 1px solid #a70e13;
    background-color: #a70e13;
    color: #fff;
    font-size: 16px;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start; 
    transition: 0.3s all;
}
.categories-page-hero-section__content a:hover{
    border: 1px solid #a70e13;
    background-color: #a70e13;
    color: #fff;
}
.categories-page-subcategories{
    display: flex;
    flex-direction: column;
    gap: 50px;
    scroll-margin-top: 120px;
}
.categories-page-subcategory{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 20px;
    padding: 20px;
    background-color: #f3f3f3;
    box-shadow: 0px 0px 3px 1px #2f2f2f15;
}
.categories-page-subcategory-content{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.categories-page-subcategory__image-desktop{
    width: 25%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.categories-page-subcategory__image-desktop img{
    border-radius: 10px;
}
.categories-page-subcategory__texts{
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 15px;
}
.categories-page-subcategory__texts h2,
.categories-page-subcategory__texts h3,
.categories-page-subcategory__texts p{
    margin: 0px;
}
.categories-page-subcategory__texts h2{
    font-weight: 500;
}
.categories-page-subcategory__texts h3{
    font-size: 22px;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 20px;
}
.categories-page-subcategory__texts p{
    font-size: 16px;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 20px;
    margin-bottom: 10px;
}
.categories-page-subcategory__texts ul{
    margin: 0px;
    padding-left: 30px;
    list-style: none;
}
.categories-page-subcategory__texts li{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 20px;
}
.categories-page-subcategory__texts li::after{
    position: absolute;
    top: -1px;
    left: -20px;
    content: url('/wp-content/uploads/adax-icon1.png');
    height: auto;
    width: 6px;
}
.cta-categories-page-link{
    border: 1px solid #a70e13;
    background-color: #a70e13;
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start; 
    transition: 0.3s all;
}
.cta-categories-page-link:hover{
    background-color: #a70e13;
    color: #fff;
}
.rec-content h4{
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 20px;
}
.categories-page .rec-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.categories-page-subcategory-rec-prod{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.categories-page-subcategory__cta{
    background-color: #a70e13;
    border: none;
    border-radius: 10px;
    padding: 8px 8px 0px 8px;
    cursor: pointer;
    box-shadow: 0px 0px 3px 1px #2f2f2f15;
    transition: 0.3s all;
    height: 50px;
}
.categories-page-subcategory__cta img{
    scale: 1;
    transition: 0.3s all;
}
.categories-page-subcategory__cta:hover{
    box-shadow: 0px 0px 3px 1px #2f2f2f25;
}
.categories-page-subcategory__cta:hover img{
    transform: rotate(45deg);
    scale: 1.3;
}
.categories-page-subcategory__image-mobile{
    display: none;
}

@media (max-width: 1024px){
    .categories-page-hero-section__content h1{
        font-size: 30px;
        line-height: 30px;
    }
    .categories-page-hero-section__content h2,
    .categories-page-subcategory__texts h2{
        font-size: 22px;
        line-height: 20px;
    }
    .categories-page{
        margin: 50px auto 0px auto;
    }
}
@media (max-width: 950px){
    .categories-page-subcategory__image-desktop{
        width: 40%;
    }
    .categories-page-subcategory__texts{
        width: 60%;
    }
}
@media (max-width: 766px){
    .categories-page .breadcrumbs{
        padding: 15px 0px 0px 0px !important;
        min-width: 1300px;
    }
    .categories-page{
        margin: 50px auto 0px auto;
        overflow-x: hidden;
        position: relative;
    }
    .categories-page::after {
        position: absolute;
        width: 40px;
        height: 60px;
        content: '';
        top: 0px;
        right: 0;
        z-index: 20;
        background: linear-gradient(to right, transparent, #fff);
    }
    .categories-page-hero-section{
        flex-direction: column;
        padding: 20px 0px 50px 0px;
    }
    .categories-page-hero-section__content,
    .categories-page-hero-section__image{
        width: 100%;
    }
    .categories-page-hero-section__content h1 br{
        display: none;
    }
    .categories-page-hero-section__content p{
        font-size: 14px;
        line-height: 18px;
    }
    .categories-page-subcategory-content{
        display: flex;
        flex-direction: column;
    }
    .categories-page-subcategory__image-desktop{
        display: none;
    }
    .categories-page-subcategory__image-mobile{
        height: auto;
        background-color: #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35%;
    }
    .categories-page-subcategory__image-mobile img{
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .categories-page-subcategory__texts{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .categories-page-subcategory__subtitle-container{
        width: 60%;
    }
    .cta-categories-page-link{
        margin-right: auto;
    }
}
.rec-content p{
    font-size: 22px;
    font-weight: 600;
    color: #2f2f2f;
    letter-spacing: -5%;
    line-height: 20px;
}
/* Rekomendowane produkty – siatka (taxonomy-product_cat) */
.product-cat-rec-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    padding: 20px 0;
    box-sizing: border-box;
}
.product-cat-rec-grid .product-box-item-container{
    width: 100%;
    min-width: 0;
    max-width: none;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(221, 221, 221, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    transition: 0.3s all !important;
}
.product-cat-rec-grid .product-box-item-container:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.product-cat-rec-grid .product-box-item-img{
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
}
.product-cat-rec-grid .product-box-item-img img{
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    display: block;
}
.product-cat-rec-grid .product-box-item-cat{
    color: #2f2f2f;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-cat-rec-grid .product-box-item-cat p{
    margin: 0;
    width: auto;
    display: inline-block;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.12);
    font-size: 12px !important;
}
.product-cat-rec-grid .product-box-item-title{
    line-height: 15px;
    max-height: 45px;
    font-size: 13px;
    overflow: hidden;
    margin: 0;
}
.product-cat-rec-grid .product-box-item-title a{
    font-size: 13px;
    color: #2f2f2f;
    line-height: 15px;
    overflow: hidden;
    margin: 0;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -0.5px;
    word-break: break-word;
    display: block;
}
.product-cat-rec-grid a.product-box-item-img{
    text-decoration: none;
    color: inherit;
}
.product-cat-rec-grid .product-box-item-allegro-btn{
    display: block;
    margin-top: auto;
    padding: 8px 10px;
    text-align: center;
    border: 1px solid #a70e13;
    background-color: #a70e13;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s all;
}
.product-cat-rec-grid .product-box-item-allegro-btn:hover{
    background-color: #ffffff;
    color: #a70e13;
}
.product-cat-rec-grid .soldout-prod{
    opacity: 0.7;
}
.product-cat-rec-grid .soldout-prod:hover{
    opacity: 1;
}
.product-cat-rec-grid .soldout-prod .product-box-item-img{
    position: relative;
}
.product-cat-rec-grid .soldout-prod .product-box-item-img::after{
    content: "CHWILOWO WYPRZEDANY";
    position: absolute;
    inset: 0;
    background-color: rgba(47, 47, 47, 0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s all;
}
.product-cat-rec-grid .soldout-prod:hover .product-box-item-img::after{
    opacity: 1;
}
@media (max-width: 1150px){
    .product-cat-rec-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 768px){
    .product-cat-rec-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
}
@media (max-width: 430px){
    .product-cat-rec-grid{
        grid-template-columns: 1fr;
    }
    .product-cat-rec-grid .product-box-item-container{
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}


.categories-page-hero-section__content h1 {
    font-size: 36px;
    line-height: 43px;
    font-weight: 500;
    color: #2f2f2f;
    letter-spacing: -5%;
}

.categories-page-hero-section__content h1 strong{
    font-weight: 600;
    color: #a70e13;
}



/* footer  */


.site-footer {
    background-color: #f3f3f3;
    color: #2f2f2f;
    border-top: 3px solid #a70e13;
    padding: 75px 20px 100px 20px;
    position: relative;
}
.site-footer-main-container{
    margin: 0px auto;
    max-width: 1250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.site-footer-content{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}
.site-footer-content:nth-of-type(1){
    border-bottom: 1px solid #2f2f2f;
    padding-bottom: 50px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1){
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 35px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-logo{
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: start;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-logo img{
    object-fit: contain;
}
.site-footer-content-item-logo .site-logo--dark{
    display: none;
}
html[data-theme="dark"] .site-footer-content-item-logo .site-logo--light{
    display: none;
}
html[data-theme="dark"] .site-footer-content-item-logo .site-logo--dark{
    display: block;
}
.site-footer-logo-link{
    display: inline-flex;
    align-items: start;
    justify-content: start;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-contacts{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 25px;
    padding-top: 50px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-contacts a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0px;
    text-decoration: none;
    color: #2f2f2f;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-contacts a p{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
    margin: 0px;
    font-size: 22px;
    font-weight: 400;
    line-height: 20px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-contacts a p span{
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-departments{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 0px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-departments .site-footer-content-item-department{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 0px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-departments .site-footer-content-item-department p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -5%;
    margin: 0px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2){
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: end;
    gap: 150px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding-top: 115px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav h3{
    font-size: 22px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -5%;
    margin: 0px;
    padding-bottom: 15px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -5%;
    margin: 0px;
    text-decoration: none;
    color: #2f2f2f;
    transition: 0.3s all;
}
.site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav ul li a:hover {
    color: #a70e13;
}
.site-footer-content:nth-of-type(2){
    padding-top: 70px;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(1),
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(2){
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item h3{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -5%;
    margin: 0px;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item nav ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 40px;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(2) nav ul li img{
    scale: 0.7;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(1) nav ul li:nth-of-type(1) img{
    max-height: 40px !important;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(1) nav ul li:nth-of-type(2) img{
    max-height: 70px !important;
}
nav[aria-label="Szybkie płatności z:"] ul > li:nth-child(2) img {
    max-height: 40px !important;
}
nav[aria-label="Szybkie płatności z:"] ul > li:nth-child(3) img {
    max-height: 60px !important;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(2) nav ul li:nth-of-type(4) img{
    max-height: 50px !important;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(2) nav ul li:nth-of-type(5) img{
    max-height: 45px !important;
}
.site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(2) nav ul li:nth-of-type(6) img{
    max-height: 55px !important;
}
.site-footer-content:nth-of-type(3) p{
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -5%;
    margin: 0px;
    padding-top: 50px;
}

@media (max-width: 1024px){
    .site-footer-content:nth-of-type(1){
        flex-direction: column;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item{
        width: 100% !important;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-logo img{
        width: 30%;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-contacts{
        flex-direction: row;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-departments{
        flex-direction: row;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-departments .site-footer-content-item-department{
        width: auto;
    }
    .site-footer-content:nth-of-type(2){
        flex-direction: column;
    }
    .site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(1){
        width: 100% !important;
    }
    .site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(2){
        width: 100% !important;
    }
    .site-footer-content:nth-of-type(2) .site-footer-content-item:nth-of-type(3){
        width: 100% !important;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2){
        justify-content: start;
        gap: 100px;
    }
}   

@media (max-width: 766px){
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-contacts{
        flex-direction: column;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-departments{
        flex-direction: column;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(1) .site-footer-content-item-logo img{
        width: 70%;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2){
        flex-direction: row;
        flex-wrap: wrap;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav{
        width: 33%;
    }
    .site-footer-content:nth-of-type(2) .site-footer-content-item nav ul{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .site-footer-content:nth-of-type(2) .site-footer-content-item nav ul li img{
        height: 50px;
        scale: 1;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav{
        margin-top: 50px;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2){
        justify-content: start;
        gap: 0px;
    }
}

@media (max-width: 430px){
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2){
        gap: 20px;
    }
    .site-footer-content:nth-of-type(1) .site-footer-content-item:nth-of-type(2) nav{
        width: 45%;
    }
}

/* Promocje: brak sekcji — jak „disabled”: kursor + lekkie przygaszenie (bez pointer-events:none) */
.site-footer a.footer-sale-anchor.footer-sale-anchor--inactive {
    cursor: not-allowed;
    opacity: 0.5;
}


.site-footer-content p{
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -5%;
    margin: 0px;
}
.site-footer-content-item-department p{
    text-align: left;
}

.elementor-element-6d1da50{
    margin-top: 70px;
}