/* Genel Sıfırlama ve Font Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff;
    color: #000000;
}

/* Konteyner Düzeni */
.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

/* Ana Logo */
.main-logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* İletişim Satırı */
.contact-info {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 35px;
}

.contact-info a {
    color: #ff0000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Markalar Bölümü */
.marketplaces {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.brand {
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand:hover {
    opacity: 0.8;
}

/* Marka Özel Renkleri */
.trendyol {
    color: #000000;
    font-family: sans-serif; /* Trendyol'un sade font yapısı için */
}

.hepsiburada {
    color: #ff6000; /* Hepsiburada turuncusu */
}

/* Bayi Giriş Linki */
.dealer-login {
    margin-bottom: 40px;
}

.dealer-login a {
    color: #555555;
    font-size: 0.9rem;
    text-decoration: underline;
}

.dealer-login a:hover {
    color: #000000;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #000000;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}