  * {
            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;
            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(148, 148, 148, 0.397);
    border-color: rgba(150, 150, 150, 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;
        }

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.breadcrumb {
  font-size: 14px;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 50px;
 margin-right: 50px;
}

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

.title {
  text-align: center;
  letter-spacing: 3px;
  font-size: 45px;
  font-weight: normal;
  margin-bottom: 3rem;
}

.news-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.srodek{
    display: flex;
    justify-content: center;
    align-items: center;
     background: #EAEAEA;
    color: #000000;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 210px;
    text-align: center;
   margin-left: 820px;
}
.srodek:hover{
    background-color: rgba(227, 16, 25, 1);
    color: white;
  text-align: center;
}
.image-container {
  position: relative;
  flex: 1 1 45%;
}

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

.date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
}

.content-block {
  flex: 1 1 50%;
}

.content-block h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}

.content-block p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 1rem;
}

.main-text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 2rem;
}



        /* 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;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    background: #ddd;
}

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

/* Zdjęcie – jasne przy hover */
.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); /* półprzezroczyste czarne tło */
    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 */
.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;
}

/* Footer mobile - już jest w oryginalnym CSS */
 


@media (max-width: 480px) {
    .srodek{
        margin-left: 100px;
    }
    /* 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) {
    .srodek{
        margin-left: 200px;
    }
       .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;
    }
    .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;
    }
}

