/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #5d007a; /* Görseldeki mor tonu */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 30px;
}

.logo {
    width: 100px;
    margin-bottom: 15px;
}

header h1 {
    font-size: 1.4rem;
    font-weight: bold;
}

header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Butonlar */
.btn {
    display: flex;
    align-items: center;
    background: white;
    color: #000000;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: transform 0.2s;
    position: relative;
}

.btn:hover {
    transform: scale(1.02);
}

.white-btn {
    justify-content: center;
    font-size: 1.1rem;
}

.white-btn i {
    margin-right: 10px;
    color: #7a0063;
}

h3 {
    font-size: 0.85rem;
    margin: 25px 0 15px 0;
    letter-spacing: 1px;
}

.list-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 15px;
}

.list-item span {
    flex-grow: 1;
    text-align: left;
}

/* Sosyal Medya */
.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    margin: 0 10px;
    text-decoration: none;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.7rem;
    opacity: 0.0;
}
/* Üst Bölüm Konumu */
.top-bar {
    display: flex;
    justify-content: flex-end; /* Sağ üstte dursun */
    margin-bottom: 5px;
    padding-right: 5px;
}

/* Küçük ve Şık Google Butonu */
.mini-google-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15); /* Hafif şeffaf beyaz */
    color: white;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px); /* Arka planı hafif bulandırır (modern görünüm) */
    transition: all 0.3s ease;
}

/* Yıldız İkonu Rengi */
.mini-google-btn i {
    margin-right: 6px;
    color: #FFD700; /* Altın sarısı yıldız */
    font-size: 0.7rem;
}

.mini-google-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px); /* Üstüne gelince hafif yukarı kalkar */
}

/* Alt taraftaki ana sipariş butonlarının yazılarını da büyük tutuyoruz */
.list-item span {
    font-size: 1rem; /* Sipariş yazıları net ve büyük */
    font-weight: 600;
}

.list-item img {
    width: 55px; /* Logolar belirgin */
    height: 55px;
}
/* Sosyal Medya ve Konum İkonları */
.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px; /* İkonlar arası boşluk */
}

.social-icons a {
    color: white;
    font-size: 3.5rem; /* İkon büyüklüğü */
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Konum ikonuna özel kırmızı renk istersen (opsiyonel): */
.fa-location-dot {
    color: #ffffff; 
}