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

        body {
          font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
    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;
        }

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

        .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: 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: #fff;
            padding: 50px 0;
            border-bottom: 5px solid #fff;
            color: black;
            text-align: left;
            padding-right: 300px;
        }

        .breadcrumbs-container {
            max-width: 1200px;
            margin: 5px auto;
            padding: 0 20px;
            padding-top: 50px;
              text-align: left;
        }

        .breadcrumbs a {
            color: #000;
            text-decoration: none;
            font-size: 14px;
        }

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

        .breadcrumbs span {
            color: #6c757d;
            font-size: 14px;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #f5f5f5;
      
        }

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

        .section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #333;
            font-weight: bold;
        }

        .content-text {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .content-text a {
            color: #333;
            text-decoration: none;
        }

        .content-text a:hover {
            color: #333;
        }

        .definition-item {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .definition-item a {
            color: #333;
            text-decoration: none;
        }

        .definition-item a:hover {
            color: #333;
        }
/* REGULAMIN */
.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; /* <-- nad przezroczystą warstwą */
    color: #ffffff; /* <-- dodatkowo zapewnij jasny kolor tekstu */
        }

       
.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: 768px) {
            
            .container {
                margin: 1rem;
                padding: 1rem;
            }

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

            .nav-text {
                display: none;
            }
        }




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

        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(1, 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: 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;
    }
}



