* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: no-repeat url(./images/img1.png);
    background-size: cover;
}

.navbar {
    display: flex;
    justify-content: space-around;
}

.navlist {
    padding-top: 16px;
}

.navlist ul {
    display: flex;
    gap: 28px;
}

.navlist ul li {
    list-style-type: none;
}

.navlist ul li a {
    text-decoration: none;
    color: #2D2D2D;

}

.user-info {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    gap: 10px;
}

.basket img {
    padding-top: 2px;
}

.logo {
    margin-right: 8rem;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100vh;
    color: #FFFFFF;
    margin-right: 7rem;
}

.navbar-content div {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 15rem;
}

.navbar-content a {
    width: 215px;
    height: 52px;
    border-radius: 12px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.mobile-navbar-container {
    display: flex;
    justify-content: space-between;
    padding: 11px;
}

.hamburger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-menu img {
    width: 38px;
    height: 28px;
}

.mobile-user-info {
    display: flex;
    height: 55px;
    justify-content: center;
    align-items: center;
}

.mobile-navbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: black;
    background: no-repeat right/cover url(./images/mobile-background.png);
}

.mobile-navbarlist {
    display: flex;
}

.mobile-navbarlist div ul {
    display: flex;
}

.mobile-navbarlist div ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

.mobile-navbarlist div ul li a {
    text-decoration: none;
    color: #2D2D2D;
}

.mobile-navbar-content div {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 15rem;
    margin-top: 10rem;
}

.mobile-navbar-content a {
    width: 215px;
    height: 52px;
    border-radius: 12px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.show {
    display: flex !important;
}


@media screen and (min-width:700px) {
    .mobile {
        display: none;
    }
}

@media screen and (max-width:600px) {
    .navbar-container {
        display: none;
    }

    .mobile {
        display: block;
    }

    .mobile-navbarlist {
        display: none;
    }

}

.footer {
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    text-align: center;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: #333;
    text-decoration: none;
}

/* Sosyal Medya */
.social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.social-media ul li {
    margin-right: 10px;
    
}

.social-media ul li:last-child {
    margin-right: 0;
}

.social-media ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width:600px) {
    .footer h2 {
        text-align: center;
    }
}

.footer-menu ul li a {
    text-decoration: none;
    color: #2D2D2D;
    text-align: center;
}

.social-media ul li a {
    text-decoration: none;
    color: #2D2D2D;
    text-align: center;
}

hr {
    border: 1px solid black;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 7rem;
    width: 10rem;
}