  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: white;
            color: #333;
            line-height: 1.4;
        }
        li{
            list-style-type: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
         /* 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 img {
            height: 40px;
        }

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

        .store-text {
            margin-right: 20px;
            font-size: 0.9rem;
        }

        .przezroczystosc {
            filter: opacity(1);
        }

        .logov2 {
            width: 300px;
            height: 85px;
            text-align: center;
            margin: auto;
            display: block;
        }

        .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;
        }

        .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 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.1);
        }

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

        /* Hamburger lines for X animation - initially hidden */
        .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;
        }

        /* When active, hide image and show X lines */
        .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: 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;
            text-decoration: none;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
  .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
            margin-top: 70px;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* LEWA STRONA - GALERIA */
        .product-container {
            display: flex;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-gallery {
            flex: 1;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .main-image-container {
            position: relative;
            width: 100%;
        }

        .main-image {
            width: 475px;
            height: auto;
            max-height: 450px;
            object-fit: contain;
            display: flex;
            background: white;
            border-radius: 8px;
        }

        .youtube-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 60px;
            background: rgba(255, 0, 0, 0.9);
            border-radius: 8px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .youtube-overlay.show {
            display: flex;
        }

        .youtube-icon {
            width: 0;
            height: 0;
            border-left: 15px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 3px;
        }

        .masahiro-arrows {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: none;
            gap: 10px;
        }

        .masahiro-arrows.show {
            display: flex;
        }

        .masahiro-arrow {
            width: 30px;
            height: 25px;
            background: rgba(0,0,0,0.3);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .masahiro-arrow:hover {
            background: rgba(0,0,0,0.5);
        }

        .masahiro-arrow::after {
            content: '';
            width: 0;
            height: 0;
        }

        .masahiro-arrow.left::after {
            border-right: 8px solid white;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        .masahiro-arrow.right::after {
            border-left: 8px solid white;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        .thumbnail-gallery {
            display: flex;
            flex-direction: row;
 
            width: 100%;
        }

        .thumbnail {
            width: calc(50% - 7.5px);
            height: 200px;
            width: 240px;
      
            cursor: pointer;
            object-fit: contain;
            border-radius: 4px;
        }


        .thumbnail.active {
            border-color: #d32f2f;
        }

        /* PRAWA STRONA - INFORMACJE O PRODUKCIE */
        .product-info {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            min-width: 400px;
        }

        .product-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 8px;
            line-height: 1.3;
            color: #333;
        }

        .product-code {
            color: #666;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .price-box {
            border: 2px solid #ddd;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            background: #fafafa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-section {
            flex: 1;
        }

        .price-container {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 8px;
        }

        .current-price {
            font-size: 28px;
            font-weight: bold;
            color: #333;
        }

        .old-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            background: #666;
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            margin-left: 5px;
        }

        .price-info {
            font-size: 11px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .controls-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .quantity-container {
            display: flex;
            align-items: center;
            background: #e8e8e8;
            border-radius: 8px;
            padding: 5px;
        }

        .qty-btn {
            background: none;
            border: none;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            color: #666;
        }

        .qty-btn:hover {
            background: rgba(0,0,0,0.1);
            border-radius: 4px;
        }

        .qty-input {
            border: none;
            background: none;
            width: 40px;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
        }

        .add-to-cart-btn {
            background: rgba(227, 16, 25, 1);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .add-to-cart-btn:hover {
            background: rgb(136, 21, 27);
        }

        .cart-icon {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .product-description {
            margin-top: 30px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }

        .description-header {
            background: #f8f8f8;
            padding: 15px 20px;
            border-bottom: 1px solid #e0e0e0;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .description-content {
            padding: 20px;
            font-size: 13px;
            line-height: 1.6;
            color: #444;
            display: block;
        }

        .description-content.collapsed {
            display: none;
        }

        .description-content p {
            margin-bottom: 15px;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .spec-table td {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: top;
        }

        .spec-table td:first-child {
            color: #666;
            width: 40%;
        }

        .spec-table td:last-child {
            font-weight: normal;
        }

        .knife-diagram {
            margin: 10px 0;
        }

        .useful-info-list {
            list-style: none;
            padding: 0;
        }

        .useful-info-list li {
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
        }

        .useful-info-list li:before {
            content: "•";
            color: #d32f2f;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
.products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .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: 260PX;
            height: 76px; 
            object-fit: contain;
            margin-bottom: 5px;
            background: #fafafa;
            border-radius: 15px;
            transform: rotate(0); 
        }

        .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: 2px; 
        }

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

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

        .product-button:hover {
            background-color: rgba(227, 16, 25, 1);
            color: white;
        }

        .product-button.add-to-cart {
            background-color: rgba(227, 16, 25, 1);
        }

        .product-button.add-to-cart:hover {
            background-color: #630a13;
        }
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .product-gallery {
                max-width: 100%;
            }
            
            .product-info {
                min-width: auto;
            }

            .price-box {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }
        }
        
        /* SEKCJA POLECANYCH PRODUKTÓW */
        .recommended-products {
            text-align: center;
            margin-top: 60px;
            padding: 40px 0;
        }
        
        .recommended-products h2 {
            font-size: 28px;
            font-weight: 300;
            color: #333;
            letter-spacing: 3px;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .product-gallery {
                max-width: 100%;
            }
            
            .thumbnail-gallery {
                justify-content: center;
            }
        }
        
                /* FOOTER */
.footer {
     background-image: url("czarneeenoze.png");
    background-repeat: no-repeat;
    background-size: cover;
    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; 
    color: #ffffff; 
        }

       
.footer-logo{
    gap: 50px;
}
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 2fr);
  
            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: 30px;
        }

        .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; 
    color: #ffffff; 
        }

        .footer-bottom p {
            margin-bottom: 5px;
        }
.left{
text-align: left;

}
   .leftright p {
            margin: 0;
            font-weight: 400;
            font-size: 12px;
            color: #ccc;
        }
.right{
text-align: right;

}

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


         @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;
    }
}

