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: auto;
    background-color: #121212;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

        .main-content {
            width: 80%;
            margin-left: 10%;
            margin-right: 10%;
            padding: 20px;
            font-family: "Inter", sans-serif;
            padding-top: 150px;
            border-radius: 12px;
            padding-top: 200px;
        }
        .terms-container {
            background-color: #1e1e1e;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .terms-container h1 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ff3333;
            text-align: center;
            margin-bottom: 30px;
        }
        .terms-container h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .terms-container p, .terms-container li {
            font-size: 1rem;
            line-height: 1.7;
            color: #ccc;
            margin-bottom: 10px;
        }
        .terms-container ul {
            list-style-position: inside;
            padding-left: 20px;
        }
        .terms-container strong {
            color: #fff;
            font-weight: 500;
        }

/* 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: 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;
            }
         }



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





    .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;
    }
    .main-content {
        width: 90%;
        margin: 0 auto;
    }
}
