/* === TRUEMAX GAYRİMENKUL ÇEREZ POLİTİKASI BAR === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.cookie-consent-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    color: #000000;
    z-index: 999999;
    padding: 18px 20px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
    display: none;
    font-family: 'Poppins', sans-serif;
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a21;
    max-width: 750px;
}

.cookie-consent-text a {
    color: #151245; /* Yeşil yerine yeni renk */
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* === BUTONLAR === */
.cookie-btn {
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all .25s ease;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn.accept {
    background: #151245; /* Yeşil yerine yeni renk */
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1e1a5a; /* Hover için biraz daha açık ton veya opacity kullanılabilir */
    opacity: 0.9;
}

.cookie-btn.reject {
    background: #f2f2f2;
    color: #000;
    border: 1px solid #ddd;
}

.cookie-btn.reject:hover {
    background: #e6e6e6;
}

.cookie-btn.settings {
    background: transparent;
    color: #000;
    border: 1px solid #ccc;
}

.cookie-btn.settings:hover {
    background: #f7f7f7;
}

/* === AYAR MODAL === */
.cookie-settings-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.cookie-settings-box {
    background: #ffffff;
    color: #000;
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    padding: 22px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cookie-settings-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* === AYAR SATIRLARI === */
.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-item span {
    font-weight: 500;
    color: #1a1a21;
}

/* === TOGGLE SWITCH === */
.cookie-toggle {
    width: 42px;
    height: 22px;
    background: #d6d6d6;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background .25s ease;
}

.cookie-toggle::after {
    content: "";
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all .3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.cookie-toggle.active {
    background: #151245; /* Yeşil yerine yeni renk */
}

.cookie-toggle.active::after {
    left: 22px;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}