/* Genel Stiller */
body {
    font-family: 'Inter', sans-serif;
    color: #171717;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666666;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
header {
    border-bottom: 1px solid #E3E8EF;
    padding: 20px 0;
    background-color: #fff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    font-size: 24px;
    font-weight: 700;
}

header nav a {
    margin-left: 25px;
    font-size: 16px;
}

header .header-right {
    display: flex;
    align-items: center;
}

header .search-form input {
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
}

header .cart-icon {
    margin-left: 20px;
}

header .header-right a {
     margin-left: 20px;
}

/* Bildirimler Stilleri */
.notification-icon {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}
.notification-icon span {
    font-size: 20px;
}
.notification-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    width: 350px;
    padding: 15px;
    z-index: 100;
}
.notification-icon:hover .notification-dropdown {
    display: block;
}
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #E3E8EF;
}
.notification-item:last-child {
    border-bottom: none;
}
.notification-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}
.notification-item .content b {
    font-size: 14px;
}
.notification-item .content p {
    font-size: 13px;
    color: #666666;
    margin: 5px 0 0 0;
}

/* Main Content */
main.container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Footer Stilleri */
footer {
    border-top: 1px solid #E3E8EF;
    padding: 20px 0;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

/* Genel Elemanlar */
button, .btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #fff;
    color: #000;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E3E8EF;
    border-radius: 5px;
    font-size: 16px;
}

/* KVKK Çerez Bandı */
#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #171717;
    color: #fff;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
}

#cookie-consent-banner a {
    color: #fff;
    text-decoration: underline;
}

#cookie-consent-banner button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
}
