       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        body {
            background-color: #fcfcfc;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul {
            list-style: none;
        }

        .czarny {
            color: black;
        }

        .page-layout {
            display: flex;
            align-items: flex-start;
            max-width: 100%; 
            margin-top: 80px;
        }

        /* LEWA KOLUMNA – FILTRY */
        .filter-sidebar {
            width: 280px;
            padding: 10px 20px 20px 10px; 
            border-right: 1px solid #eee;
            position: sticky;
            top: 0;
        }

        .breadcrumbs {
            font-size: 13px;
            color: #999;
            margin-bottom: 1.5rem;
        }

        .breadcrumbs a {
            text-decoration: none;
            color: #888;
        }

        .filter-title {
            font-size: 24px;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 300;
            margin: 2rem 0 0.5rem;
            padding-bottom: 5px;
            border-bottom: 1px solid #ccc;
        }

        .category-list {
            font-size: 17px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            border-bottom: 1px solid #e0e0e0;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .category-list li a {
            color: #222;
            text-decoration: none;
            font-size: 14px;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .category-list li:hover a {
            color: red;
        }

        .category-list span {
            font-size: 13px;
            color: #888;
            margin-left: 6px;
        }

        .category-list .active a {
            color: red;
            font-weight: bold;
        }

        .checkbox-group label {
            display: block;
            font-size: 14px;
            margin-bottom: 0.5rem;
        }

        .price-range {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 1rem 0;
            font-size: 14px;
        }

        .price-input {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .price-input input {
            width: 60px;
            padding: 4px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .separator {
            font-size: 16px;
            margin: 0 4px;
        }

        .filter-button {
            background: black;
            color: white;
            padding: 10px;
            width: 100%;
            border: none;
            border-radius: 4px;
            margin-top: 1rem;
            cursor: pointer;
        }

        /* HEADER */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: transparent;
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: all 0.3s ease;
            background-color: black;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .logo svg {
            height: 40px;
            width: 120px;
            fill: white;
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        .nav-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        /* SEARCH BOX */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .search-input {
            background: transparent;
            border: 1px solid rgba(0,0,0,0.1);
            color: #fff;
            font-size: 14px;
            width: 180px;
            outline: none;
            padding: 8px 12px;
            margin-right: 10px;
        }

        .search-input::placeholder {
            color: #ccc;
        }

        .search-icon {
            color: #fff;
            font-size: 1.1rem;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 1px;
        }

        .search-icon:hover {
            color: #c00;
        }

        .nav-icons a {
            color: #fff;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .nav-icons a:hover {
            color: #c00;
        }

        .nav-icons svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* HAMBURGER MENU */
        .hamburger {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 8px;
            margin-left: 15px;
            z-index: 101;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            position: relative;
        }

        .hamburger:hover {
            background-color: rgba(255, 255, 255, 0.274);
        }

        .hamburger-img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
            opacity: 1;
        }

        .hamburger-lines {
            position: absolute;
            display: flex;
            flex-direction: column;
            width: 25px;
            height: 18px;
            justify-content: space-between;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hamburger-lines span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            transition: 0.3s;
            transform-origin: center;
        }

        .hamburger.active .hamburger-img {
            opacity: 0;
        }

        .hamburger.active .hamburger-lines {
            opacity: 1;
        }

        .hamburger.active .hamburger-lines span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-lines span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 250px;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 70px 20px 20px;
            z-index: 99;
            transition: right 0.3s ease;
            box-shadow: -2px 0 5px rgba(0,0,0,0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul li {
            margin: 20px 0;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }

        .mobile-menu ul li:last-child {
            border-bottom: none;
        }

        .mobile-menu ul li a {
            color: #fff;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mobile-menu ul li a:hover {
            color: #c00;
            text-decoration: none;
        }

        /* OVERLAY */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* CONTENT AREA */
        .content-area {
            flex: 1;
            padding: 2rem 2rem 2rem 1rem; 
        }

        .top-header {
            padding-bottom: 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 27px;
            letter-spacing: 3px;
            margin-bottom: 2rem;
        }

        .intro-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
        }

        .intro-text-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .intro-description {
            flex: 1 1 65%;
            font-size: 14px;
            line-height: 1.6;
        }

        .sorting-option1 {
            display: flex;
            align-items: center;
            gap: 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 400;
            margin-top: 1rem;
        }

        .sorting-option1 label {
            color: #000;
            white-space: nowrap;
            margin-left: 10px;
        }

        .sorting-option1 select {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            background-color: #eaeaea;
            border: none;
            border-radius: 18px;
            padding: 10px 16px;
            padding-right: 40px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 14px;
        }

        /* PRODUCTS GRID */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-align: center;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 120px; 
            object-fit: contain;
            margin-bottom: 15px;
            background: #fafafa;
            border-radius: 8px;
        }

        .product-title {
            font-size: 14px;
            font-weight: 400;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
            min-height: 40px;
        }

        .original-price {
            font-size: 14px;
            color: #888;
            text-decoration: line-through;
            margin-bottom: 5px; 
        }

        .product-price {
            font-size: 18px;
            font-weight: 600;
            color: #000;
            margin-bottom: 15px;
        }

        .product-button {
            background-color: #eaeaea;
            color: #000;
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            display: inline-block;
        }

        .product-button:hover {
            background-color: #e31119;
            color: white;
        }

        /* PAGINATION */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
        }

        .pagination-arrow {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #666;
            cursor: pointer;
            padding: 10px;
            transition: color 0.3s ease;
        }

        .pagination-arrow:hover {
            color: #333;
        }

        .pagination-numbers {
            display: flex;
            gap: 8px;
        }

        .page-number {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            border-radius: 50%;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
        }

        .page-number:hover {
            background: #f0f0f0;
            color: #333;
        }

        .page-number.active {
            color: red;
        }

        /* FOOTER */
        .footer {
       background-image: url("czarneeenoze.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: black 0.4;
            color: #ffffff; 
            padding: 50px 30px 20px;
            overflow: hidden;
            position: relative;
        }
.przezroczystoscc{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none; 
}
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2; 
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-column ul li {
            margin-bottom: 8px;
            font-size: 14px;
            color: #ccc;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #dc2626;
        }

        .footer-column p {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .footer-column h4.invisible {
            opacity: 0;
            visibility: hidden;
            height: 19px; 
            margin-top: 8px;
        }

        .payment-icons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .payment-icons svg {
            height: 30px;
            width: auto;
            fill: white;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.8rem;
            color: #777;
            position: relative;
            z-index: 2; 
        }

        .leftright {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 5px;
            position: relative;
            z-index: 2;
            font-size: 12px;
        }

        .leftright p {
            margin: 0;
            color: #ccc;

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .product-card {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }


        @media (max-width: 768px) {
    /* Header mobile */
    .header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-icons {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: 10px;
    }
    
    /* Banner slider mobile */
    .banner-slider {
        height: 70vh;
    }
    
    .slider-container {
        height: 70vh;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 15px 0;
    }
    
    .logov2 {
        width: 200px;
        height: 55px;
    }
    
    .btn-zobaczz {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .slider-navigation {
        bottom: 20px;
    }
    
    .prev-btn, .next-btn {
        padding: 8px 12px;
        font-size: 16px;
    }
    
    /* Footer mobile - już jest w oryginalnym CSS */
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        order: -1;
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-items: center;
    }
    
    .payment-icons img {
        height: 25px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .leftright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .leftright p {
        font-size: 11px;
    }
    
    .left, .right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .logov2 {
        width: 180px;
        height: 50px;
    }
    
    .btn-zobaczz {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .footer-columns {
        gap: 20px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        font-size: 13px;
    }
    
    .footer-column p {
        font-size: 13px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-icons img {
        height: 22px;
    }
}

/* Landscape orientation dla mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .banner-slider {
        height: 100vh;
    }
    
    .slider-container {
        height: 100vh;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        margin: 10px 0;
    }
    
    .logov2 {
        width: 150px;
        height: 40px;
    }
    
    .slider-navigation {
        bottom: 15px;
    }
}



/* Mobile menu responsywność - już jest w header CSS */
@media (max-width: 768px) {
    .mobile-menu {
        width: 280px;
        padding: 60px 15px 20px;
    }
    
    .mobile-menu ul li {
        margin: 15px 0;
        padding-bottom: 12px;
    }
    
    .mobile-menu ul li a {
        font-size: 1rem;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 260px;
        padding: 55px 12px 15px;
    }
    
    .mobile-menu ul li a {
        font-size: 0.95rem;
    }
}


        /* Mobile Styles */
        @media (max-width: 720px) {
            .page-layout {
                padding: 1rem;
            }

            .filter-sidebar {
                width: 250px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 420px) {
            .header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .nav-icons {
                display: none;
            }

            .mobile-menu.active {
                display: block;
            }

            .page-layout {
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

            .filter-sidebar {
                width: 100%;
                position: static;
                order: 2;
            }

            .content-area {
                order: 1;
            }

            .top-header {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .intro-text-row {
                flex-direction: column;
                gap: 1rem;
            }

            .sorting-option1 {
                min-width: auto;
                width: 100%;
                justify-content: space-between;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 1.5rem;
            }

            .pagination {
                flex-wrap: wrap;
                gap: 0.25rem;
            }

            .pagination-numbers {
                flex-wrap: wrap;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .leftright {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        @media (max-width: 720px) {
            .header {
                padding: 0.75rem;
            }

            .header .logo img {
                height: 40px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .top-header {
                padding: 1rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .product-card {
                padding: 1rem;
            }

            .filter-sidebar {
                padding: 1rem;
            }

            .price-range {
                flex-direction: column;
                align-items: stretch;
                gap: 0.5rem;
            }

            .price-input {
                justify-content: center;
            }

            .pagination-arrow,
            .page-number {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
        }

        /* Filter Toggle for Mobile */
        .filter-toggle {
            display: none;
            background: #333;
            color: white;
            border: none;
            padding: 1rem;
            width: 100%;
            margin-bottom: 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
        }

        @media (max-width: 420px) {
            .filter-toggle {
                display: block;
            }

            .filter-sidebar {
                display: none;
            }

            .filter-sidebar.active {
                display: block;
            }
        }

        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        /* Invisible class for spacing */
        .invisible {
            visibility: hidden;
        }