*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #121212;
}
h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            color: #f0f0f0;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            margin-top: 30px;
        }
h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff3333;
            border-radius: 2px;
        }
.header{
    width: 100%;
    height: 200px;
    background-color: #121212;
    float: left;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}
        .new-banner {
            position: absolute;
            top: 12px;
            right: 12px;
            background-color: #ff1919; /* Kolor pasujący do Twojej strony */
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            z-index: 10; /* Upewnia się, że etykieta jest na wierzchu */
        }
    .header .logo{
        height: 120px;
    }
    .header .logo img{
        width: 600px;
    }
    .menu{
        width: 100%;
        height: 50px;
        float: left;
    }
        .menu a{
            text-decoration: none;
            color: white;
        }
        .menu .nav1{
            float: left;
            width: 10%;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 35%;
            transition: 0.3s;
        }
            .menu .nav1:HOVER{
                font-weight: 500;
            }
        .menu .nav2{
            float: left;
            width: 10%;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
            .menu .nav2:HOVER{
                font-weight: 500;
            }
        .menu .nav3{
            float: left;
            width: 10%;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 35%;
            transition: 0.3s;
        }
            .menu .nav3:HOVER{
                font-weight: 500;
            }
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #121212;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin: 15px 0;
}

.mobile-menu .close-btn {
  font-size: 28px;
  margin-bottom: 20px;
  cursor: pointer;
  align-self: flex-end;
}

@media (max-width: 1000px) {
  .menu {
    display: none; /* Hide desktop menu */
  }

  .hamburger {
    display: block; /* Show hamburger icon */
  }
}



.body{
    width: 100%;
    height: auto;
    background-color: #121212;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
    .body .baner{
        width: 100%;
        height: 700px;
        background-color: BLUE;
        background-image: url(/Assets/baner1-resized.png);
        background-position: center 30%;
        background-size: cover;
        
    }
    .body .bestsellers .h1{
            width: 100%;
            height: 100px;
            background-color: #121212;
            color: white;
            display: flex;
            align-items: center;
            font-weight: 500;
            font-size: 30px;
        }
            .h1 p{
                padding-left: 10%;
                font-weight: 700;
                font-size: 35px;
            }

@media (max-width: 1000px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 20px 0;
    }

    .hamburger {
        position: absolute;
        left: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    .navbar .logo {
        display: flex;
        justify-content: center;
        flex: 1;
        padding-top: 45px;
    }

    .navbar .logo img {
        width: 370px;
        padding: 0;
        margin: 0 auto;
    }

    .header {
        width: 100%;
        height: 150px;
        background-color: #121212;
        text-align: center;
        font-family: "Inter", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 14px;
        float: left;
        margin-top: -50px;
    }

    .menu {
        display: none;
        width: 100%;
        height: 200px;
    }

    .menu .nav1,
    .menu .nav2,
    .menu .nav3 {
        width: 100%;
        height: 50px;
        transition: 0.3s;
        margin-left: 0;
    }
}



.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 10px;
    margin-left: 10%;
    margin-right: 10%;
}

.bestsellers-grid a {
    text-decoration: none;
    color: inherit;
}

.product {
    background-color: #202020;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product .img img {
    width: 100%;
    height: auto;
    display: block;
}

.product .info {
    padding: 15px;
    text-align: center;
}

.product .info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.product .info p {
    font-size: 14.5px;
    color: #ffffff;
}


        .filters-container {
            margin: 20px 10% 40px 10%; /* Dopasowanie marginesów do siatki produktów */
            padding: 20px;
            background-color: #1e1e1e;
            border-radius: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: flex-end;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-grow: 1;
        }
        .filter-group label {
            font-size: 14px;
            color: #aaa;
            font-weight: 500;
        }
        .filter-group select, .filter-group input[type="text"] {
            padding: 10px 15px;
            background-color: #2a2a2a;
            color: white;
            border: 1px solid #444;
            border-radius: 8px;
            font-size: 16px;
            min-width: 180px;
        }
        .filter-group select {
             cursor: pointer;
        }
        .filter-group select:focus, .filter-group input[type="text"]:focus {
            outline: none;
            border-color: #ff3333;
        }
        #reset-filters-btn {
            padding: 10px 20px;
            background-color: #444;
            color: white;
            border: 1px solid #666;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        #reset-filters-btn:hover {
            background-color: #555;
        }
        .section-header-1{
            margin-left: 10%;
        }

@media (max-width: 768px) {
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 5%;
        margin-right: 5%;
    }
    .filters-container{
        margin-left: 5%;
        margin-right: 5%;
    }
    .bestsellers .h1 p{
        text-align: center;
        font-size: 30px;
        margin-left: 5%;
    }
    .section-header-1 h2{
        text-align: center;
        font-size: 2rem;
    }
}












        .main-footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 60px 5% 20px 5%;
            border-top: 1px solid #2a2a2a;
            width: 100%;
            margin: 0;
            clear: both; /* jeśli wcześniej coś pływało */
            box-sizing: border-box;
            font-family: "Inter", sans-serif;
            margin-top: 100px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto 40px auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .footer-column h4 {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #ff3333;
        }
        .footer-column p, .footer-column ul {
            font-size: 14px;
            line-height: 1.8;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-column ul li a:hover {
            color: #ff3333;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        .social-icons a {
            color: #ccc;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons a:hover {
            color: white;
            transform: scale(1.1);
        }
        .social-icons svg {
            width: 28px;
            height: 28px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a2a;
            font-size: 14px;
            color: #888;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
         @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-icons {
                justify-content: center;
            }
         }