/* Footer stilleri */
.site-footer {
    width: 100%;
    background-color: transparent;
    padding: var(--spacing-lg) 0 0 0;
}

.footer-container {
    width: 95%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--footer-bg-color, #FF3B30);
    border-radius: 4px;
    padding: 20px;
}

/* Sütunlar */
.footer-column {
    display: flex;
    align-items: center;
    color: var(--footer-text-color, #fff);
}

.footer-column.left,
.footer-column.right {
    width: 35%;
}

.footer-column.left {
    justify-content: flex-start;
}

.footer-column.right {
    justify-content: flex-end;
}

.footer-column.left p,
.footer-column.right p {
    margin: 0;
    font-size: var(--footer-text-size, 14px);
    line-height: 1.4;
    text-align: left;
}

.footer-column.right p {
    text-align: right;
}

.footer-column.center {
    width: 30%;
    justify-content: center;
}

/* Logo */
.footer-column.center img {
    max-height: 45px;
    width: auto;
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobil uyumluluk */
@media screen and (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    
    .footer-column.left,
    .footer-column.center,
    .footer-column.right {
        width: 100%;
        justify-content: center;
    }

    .footer-column.left p,
    .footer-column.right p {
        text-align: center;
    }

    /* Başlıkları da ortala */
    .footer-column p {
        text-align: center !important;
    }

    /* Logo container'ı */
    .footer-column.center {
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Mobilde logo boyutu */
    .footer-column.center img {
        max-height: 40px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

/* Daha küçük ekranlar için */
@media screen and (max-width: 480px) {
    .footer-column.center img {
        max-height: 35px;
    }
}

/* Sadece mobil için ek stiller */
@media screen and (max-width: 768px) {
    .footer-container {
        gap: 16px; /* Mobilde elemanlar arası boşluğu biraz azalt */
    }
}

/* Alt metin stilleri */
.footer-column p {
    margin: 0;
    font-size: var(--footer-text-size, 14px);
    line-height: 1.4;
}

.footer-column.left p {
    text-align: left;
}

.footer-column.right p {
    text-align: right;
}

/* HTML içindeki linkler için stil */
.footer-column p a {
    color: var(--footer-text-color, #fff) !important;
    text-decoration: none;
}

.footer-column p a:hover {
    text-decoration: underline;
    color: var(--footer-text-color, #fff) !important;
}

/* HTML içindeki ikonlar için stil */
.footer-column p i,
.footer-column p svg {
    vertical-align: middle;
    margin-right: 4px;
    fill: var(--footer-text-color, #fff) !important;
    color: var(--footer-text-color, #fff) !important;
}

/* Footer link ayırıcı stilleri */
.footer-links a {
    color: var(--footer-text-color, #fff) !important;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--footer-text-color, #fff) !important;
}

.footer-links a:not(:last-child)::after {
    content: '|';
    margin: 0 12px;
    opacity: 0.5;
}

/* Footer link stilleri - daha spesifik seçiciler */
.site-footer .footer-container .footer-column p a,
.site-footer .footer-container .footer-links a,
.site-footer a {
    color: var(--footer-text-color, #fff) !important;
    text-decoration: none;
}

.site-footer .footer-container .footer-column p a:hover,
.site-footer .footer-container .footer-links a:hover,
.site-footer a:hover {
    text-decoration: underline;
    color: var(--footer-text-color, #fff) !important;
    opacity: 0.9;
}

/* İkonlar için de daha spesifik seçiciler */
.site-footer .footer-container .footer-column p i,
.site-footer .footer-container .footer-column p svg,
.site-footer svg {
    vertical-align: middle;
    margin-right: 4px;
    fill: var(--footer-text-color, #fff) !important;
    color: var(--footer-text-color, #fff) !important;
}

/* WooCommerce link stillerini ezme */
.woocommerce-page .site-footer a,
.woocommerce .site-footer a {
    color: var(--footer-text-color, #fff) !important;
} 