* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
    
}
    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(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 {
            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;
        }

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

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
 .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;
        }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 60px;
}

.articles-column {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.article-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
position: relative;
gap: 50px;
}



.left-column .article-card {
    flex-direction: column;
}


.right-column .article-card {
    flex-direction: column;
}

.article-image {
    position: relative;
    height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    gap: 100px;
}

.article-image::before {
    font-size: 3rem;
    opacity: 0.3;
}

.date-badge {
    position: absolute;
    top: 45px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
    border-radius: 15px;
}

.article-content {
    padding: 30px;
    flex: 1;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
    gap: 50px;
}

.article-excerpt {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.read-more-btn {
    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;
    display: inline-block;
    width: 210px;
    text-align: center;
 
align-items: center;
}

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

.read-more-btn.secondary {
    background: #e8e8e8;
    color: #000000;
}

.read-more-btn.secondary:hover {
    background-color: rgba(227, 16, 25, 1);
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.pagination-arrow {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.pagination-arrow:hover {
    color: #333;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.page-number:hover {
    background: #f0f0f0;
    color: #333;
}

.page-number.active {

    color: rgb(255, 0, 0);
}
.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;
}
/* Responsywność */
@media (max-width: 968px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .right-column .article-card {
        flex-direction: column;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }

    .article-content {
        padding: 20px;
    }

    .pagination-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-image {
        height: 250px;
    }
}


    @media (max-width: 1024px) {
    
    .header {
        padding: 10px 20px;
    }
    
    .search-container {
        width: 120px;
    }
    
    .search-input {
        width: 100px;
        font-size: 12px;
    }
    
   
    .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 {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-icons {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: 10px;
    }
    
 
    .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;
    }
}