html{
    background-color: #121212;
}
*{
    margin: 0;
    padding: 0;
}

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;
        }
button {
            margin-top: 25px;
            width: auto; /* Szerokość dopasowuje się do treści */
            padding: 15px 40px; /* Lepsze proporcje */
            height: auto;
            background-image: linear-gradient(to right, #ff3333, #e60000);
            border: 0;
            font-size: 1.1rem;
            border-radius: 10px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 51, 51, 0.3);
}

/* NAV-BAR */
/* NAV-BAR */
/* NAV-BAR */
/* NAV-BAR */
.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: 16px;
}
    .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%;
        }
            .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; 
            }

            .hamburger {
                display: block; 
            }
            }



/* BODY */
/* BODY */
/* BODY */
/* BODY */
.body{
    width: 100%;
    height: 2450px;
    background-color: #121212;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/* BANER */
/* BANER */
/* BANER */
/* BANER */
/* BANER */
        .baner {
            width: 100%;
            height: 60vh;
            border: 0;
            margin: 0;
            max-height: 500px;
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/Assets/baner1-resized.png');
            background-position: center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .baner h1 {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        .baner p {
            font-size: 1.25rem;
            color: #ccc;
            margin-top: 10px;
            margin-bottom: 30px;
            max-width: 600px;
        }





/* BMYSTERYBOX*/
/* BMYSTERYBOX*/
/* BMYSTERYBOX*/
/* BMYSTERYBOX*/
/* BMYSTERYBOX*/
.mysterybox {
            display: flex; /* Użycie Flexboxa dla lepszego układu */
            align-items: center;
            width: 80%;
            margin-left: 10%;
            margin-right: 10%;
            padding: 30px 0px 30px 0px;
            background-image: linear-gradient(135deg, #2a2a2a 0%, #1c1c1c 100%);
            border-radius: 20px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin-top: 100px;
        }

        .mysterybox .photo {
            flex-basis: 40%; /* Zdjęcie zajmuje 40% szerokości */
            text-align: center;
        }

        .mysterybox .photo img {
            max-width: 75%;
            height: auto;
            filter: drop-shadow(0 0 25px rgba(255, 51, 51, 0.4));
            animation: pulse 2s infinite; /* Dodanie animacji pulsowania */
            border-radius: 20px;
        }

        .mysterybox .info {
            flex-basis: 60%; /* Tekst zajmuje 60% szerokości */
        }

        .mysterybox .info h1 {
            font-size: 2.5rem; /* Użycie rem dla lepszej skalowalności */
            color: white;
            font-weight: 900;
            margin-bottom: 15px;
        }

        .mysterybox .info h3 { /* Zmienione z h2 dla lepszej semantyki */
            font-size: 1.5rem;
            color: #ccc;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .mysterybox .info button {
            margin-top: 25px;
            width: auto; /* Szerokość dopasowuje się do treści */
            padding: 15px 40px; /* Lepsze proporcje */
            height: auto;
            background-image: linear-gradient(to right, #ff3333, #e60000);
            border: 0;
            font-size: 1.1rem;
            border-radius: 10px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .mysterybox .info button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 51, 51, 0.3);
        }

        @keyframes pulse {
            0% {
                filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 30px rgba(255, 51, 51, 0.6));
            }
            100% {
                filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.3));
            }
        }

        /* Responsywność */
        @media (max-width: 900px) {
            .mysterybox {
                flex-direction: column; /* Zmiana układu na pionowy */
                text-align: center;
                width: 90%;
                margin-left: 5%;
                margin-right: 5%;
            }
            .mysterybox .info h1 {
                font-size: 2.5rem;
                padding-top: 50px;
            }
            .mysterybox .info h3 {
                font-size: 1.2rem;
            }
        }
            



/* PRODUKTY*/

/* PRODUKTY*/

/* PRODUKTY*/

/* PRODUKTY*/

/* PRODUKTY*/
.section-header-1{
    margin-left: 10%;
    margin-top: 100px;
}


    .body .products{
        width: 100%;
        height: 550px;
        background-color: #121212;
    }
    .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%;
    }

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

                .all-products{
                    width: 100%;
                    height: 50px;
                    float: left;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-top: 30px;
                }
                .all-products .all-products-btn{
                    width: 250px;
                    height: 40px;
                    background-color: #ff1919;
                    color: white;
                    font-size: 17px;
                    border: 0;
                    border-radius: 10px;
                }

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

/* OPINIE*/

/* OPINIE*/

/* OPINIE*/

/* OPINIE*/

/* OPINIE*/


.section-container {
            margin-left: 10%;
            margin-right: 10%;
            margin-top: 100px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background-color: #1e1e1e;
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #ff3333;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .testimonial-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid #ff3333;
        }
        .author-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            color: white;
        }
        .stars {
            color: #ffc107;
            font-size: 1rem;
        }
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #ccc;
            font-style: italic;
        }


/* FOOTER*/

/* FOOTER*/

/* FOOTER*/

/* FOOTER*/

/* FOOTER*/


        .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: 775px;
        }
        .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;
            }
         }



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

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

    .body .baner {
        height: 50px;
        padding-top: 300px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .baner h1{
        margin-top: -210px;
    }





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

            .baner h1 { 
                font-size: 2.8rem; 
            }
            .baner p {
                font-size: 1.1rem;
            }

            .mysterybox { grid-template-columns: 1fr; text-align: center; }
            .mysterybox .photo { order: -1; }
        }
        @media (max-width: 480px) {

             .baner h1 { 
                font-size: 2.2rem; 
            }
            .baner p {
                font-size: 0.9rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
        }
    