/**
 * Footer, çerez bildirimi ve sabit butonlar — tema gövdesi app.css ile kalır.
 */

/* Footer iletişim */
.footer-contact {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    max-width: 100%;
    width: fit-content;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact__line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
    color: #fff;
}

.footer-contact__line:last-child {
    margin-bottom: 0;
}

.footer-contact__line i {
    width: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

/* Çerez bildirimi */
.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1040;
    max-width: 20rem;
    padding: 1rem 1.25rem;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    background: rgb(var(--primary_color));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.cookie-banner a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
}

.cookie-banner button {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: rgb(var(--primary_color));
    background: #fff;
}

/* Yukarı çık */
.scroll-top-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    z-index: 1035;
    display: none;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: rgb(var(--primary_color));
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.scroll-top-btn:hover {
    filter: brightness(1.08);
}

/* WhatsApp (sayfada kullanılırsa) */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1039;
    padding: 0.85rem;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float img {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}
