    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
        font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        header > img {
            max-width: 100%;
            display: block;
        }

        li {
            list-style-type: none;
        }

        /* 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;
            box-sizing: border-box;
        }

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

        .logo img {
            height: 40px;
        }

        .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: transparent;
            color: #fff;
            font-size: 14px;
            width: 150px;
            outline: none;
            border-radius: 5px;
            margin-right: 20px;
        }

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

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

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

        .nav-icons a img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        /* 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.267);
        }

        .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: 150px;
            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;
            text-decoration: none;
        }

        .mobile-menu ul li a {
            color: #fff;
            font-size: 0.8rem;
            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;
            text-decoration: none;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
            text-decoration: none;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            background-color: #f5f5f5;
            padding: 1rem 0;
            width: 100%;
            margin: 0;
        }

        .breadcrumbs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            padding: 80px;
            margin-left: 50px;
        }

        .breadcrumbs a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .breadcrumbs a:hover {
            color: #666;
        }

     
        .main-content {
            flex: 1;
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #f5f5f5;
        }

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            letter-spacing: 3px;
            color: #333;
            font-weight: 300;
        }

        /* Hero Section */
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .hero-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #333;
            font-weight: bold;
        }

        .hero-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        /* Lower Section */
        .lower-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .lower-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #333;
            font-weight: bold;
        }

        .lower-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        .lower-image {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .knife-image {
            flex: 1;
        }

        .knife-image img {
            width: 100%;
            height: auto;
        }

        /* Gallery */
        .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    background: #ddd;
}

.gallery-item:hover {
    transform: scale(1.05);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.6) contrast(1.1);
}

/* Overlay z tłem + ikona na środku */
.gallery-item .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.5); 
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

/* Ikona */
.item-overlay img {
    width: 70px;
    height: 70px;
    opacity: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}


        /* FOOTER - NAPRAWIONY */
        .footer {
           background-image: url('czarneeenoze.png');
            color: #ffffff;
            padding: 90px 0 20px 0; 
            width: 100vw; 
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            margin-bottom: 0;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .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;
            color: #ffffff;
            padding: 0 30px; 
        }

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

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

        .footer-column ul {
            list-style: none;
        }

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

        .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 img {
            height: 40px;
            padding: 5px;
            border-radius: 4px;
        }

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

        .footer-bottom p {
            margin-bottom: 15px;
            padding: 10px;
        }

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

        .leftright p {
            margin: 0;
            margin-left: 10px;
            font-weight: 400;
            font-size: 12px;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section,
            .lower-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
            }

            .leftright {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

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