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

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

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

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

        ul {
            list-style: none;
        }

        .section-title {
            text-align: center;
            font-weight: 400;
            font-size: 1.8rem;
            margin: 50px 0 30px;
            letter-spacing: 2px;
        }

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

        .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);
            background-size: cover;
           background-position:cover;
        }

        .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(97, 97, 97, 0.397);
    border-color: rgba(109, 109, 109, 0.397);
    transform: scale(1.05);
}

.hamburger:hover .hamburger-lines span {
    background-color: #ffffff;
}

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

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

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

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

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

        /* BANNER SLIDER */
         .banner-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
 background-color: black;
        }
        .slide.active {
            opacity: 1;
        }

       .przezroczystosc {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
             min-height: 400px; 
            z-index: 1;
        }

        .przezroczystosc img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.4;
            display: block;
             aspect-ratio: 3 / 2; 
        }
        .slide-content {
          position: absolute;
  top: 50%;
  animation: none;
  text-align: center;
  color: #fff;
  width: 100%;
  z-index: 2;
  display: inline-block;
        }

        .logov2 img {
            opacity: 1 !important;
            filter: none;
            margin-bottom: 20px;
        }

        .japanese-text {
            font-size: 5rem;
            font-weight: 400;
            margin-bottom: 10px;
            word-spacing: 5px;
            white-space: nowrap;
            color: #00ccff;
            text-shadow: 0 0 20px #00ccff, 0 0 40px #00ccff;
        }

        .slide-content h1 {
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: 3px;
        }

     .btn-zobaczz {
            display: inline-block;
            padding: 12px 30px;
            border: 2px solid #fff;
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-zobaczz:hover {
            background-color: rgba(227, 16, 25, 1);
            border-color:rgba(227, 16, 25, 1);
            transform: translateY(-2px);
        }

        .slider-navigation {
            position: absolute;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 5;
            pointer-events: none;
        }

        .prev-btn, .next-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            outline: none;
            transition: color 0.3s ease;
        }

        .prev-btn:hover, .next-btn:hover {
            color: #c00;
        }

        .slider-dots {
            display: none;
        }

        /* Placeholder for images */
        .placeholder-img {
            background: linear-gradient(45deg, #333, #666);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
        }

        /* PRODUKTY */
         .products-section {
            padding: 20px 50px 70px;
            background-color: #f9f9f9;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 50px;
            color: #333;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-item {
            position: relative;
            height: 400px;
            overflow: hidden;
            cursor: pointer;
        }

        .product-img {
            height: 100%;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: transparent;
            color: #fff;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: all 0.3s ease;
        }

        .product-title-section {
            transition: all 0.3s ease;
        }

        .product-overlay h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .product-overlay .japanese-text {
            font-size: 1rem;
            margin-bottom: 0;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .product-description {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.4;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            text-align: left;
            position: absolute;
            top: 40%;
            left: 20px;
            right: 20px;
            transform: translateY(-50%) translateY(20px);
        }

        .btn-zobacz {
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            align-self: flex-start;
            position: absolute;
            bottom: 20px;
            left: 20px;
            border-radius: 10px;
        }

        .btn-red {
            background-color: rgba(227, 16, 25, 1);
            border-color: rgba(227, 16, 25, 1);
            color: #fff;
             border-radius: 10px;
             text-transform: lowercase;
        }

        .btn-red:hover {
            background-color: rgb(100, 3, 3);
            border-color: rgb(107, 2, 2);
        }

        /* Hover effects */
        .product-item:hover .product-overlay {
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
            padding-top: 20px;
        }

        .product-item:hover .product-title-section {
            margin-bottom: 0;
        }

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

        .product-item:hover .product-description {
            opacity: 1;
            transform: translateY(-50%) translateY(0);
        }

        .product-item:hover .btn-zobacz {
            opacity: 1;
            transform: translateY(0);
        }

        .product-item:hover .product-description {
            transition-delay: 0.1s;
        }

        .product-item:hover .btn-zobacz {
            transition-delay: 0.2s;
        }

        /* HISTORIA */
        .historia-section {
            padding: 20px 50px 70px;
            background-color: #fff;
            position: relative;
        }

        .historia-section::before,
        .historia-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background-image: url('https://via.placeholder.com/20x20');
            background-repeat: repeat-x;
            opacity: 0.1;
        }

        .historia-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .historia-img {
            flex: 1;
            position: relative;
        }

        .dragon-img {
            max-width: 100%;
            max-height: 100%;
        }

        .historia-text {
            flex: 1;
        }

        .historia-text h3 {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .historia-text p {
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .btn-zobaczzz {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 10px;
            color: #000000;
        
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: rgb(234, 234, 234);
        }


        /* 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;
}
        /* RESPONSIVE */
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .historia-content {
                flex-direction: column;
            }
            
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .store-text {
                display: none;
            }
            
          .products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .products-section {
                padding: 20px;
            }
        }

            .japanese-text {
                font-size: 3rem;
            }
        
        
      @media (max-width: 1024px) and (min-width: 769px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* ANIMATION */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }



        @media (max-width: 1024px) {
    /* Header adjustments */
    .header {
        padding: 10px 20px;
    }
    
    .search-container {
        width: 120px;
    }
    
    .search-input {
        width: 100px;
        font-size: 12px;
    }
    
    /* Banner slider tablet */
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .logov2 {
        width: 250px;
        height: 70px;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 40px 20px 15px;
    }
    
    .footer-columns {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    /* 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: 768px) {
    /* 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;
    }
}