/* ==========================================
   FOOTER - E-TİCARET & SEO UYUMLU
   Modern, responsive, temaya uyumlu footer
   ========================================== */

/* ===================================
   FOOTER ANA ALAN
   =================================== */
.site-footer {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    color: #555;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8b8c0 0%, #d5a0ad 50%, #e8b8c0 100%);
}

.footer-main {
    padding: 60px 5% 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* ===================================
   FOOTER KOLONLARI
   =================================== */
.footer-column {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   KOLON BAŞLIKLARI
   =================================== */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: #e8b8c0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e8b8c0, #d5a0ad);
    border-radius: 2px;
}

/* ===================================
   KOLON 1: HAKKIMIZDA
   =================================== */
.footer-about .footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.footer-social {
    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e8b8c0, #d5a0ad);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 184, 192, 0.3);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(232, 184, 192, 0.5);
    background: linear-gradient(135deg, #d5a0ad, #c28f9c);
}

/* ===================================
   KOLON 2 & 3: MENÜLER
   =================================== */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-menu li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #e8b8c0;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-menu li:hover::before {
    left: 5px;
    color: #d5a0ad;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #e8b8c0;
    padding-left: 5px;
}

/* ===================================
   KOLON 4: İLETİŞİM
   =================================== */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-contact-item i {
    color: #e8b8c0;
    font-size: 18px;
    min-width: 20px;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #e8b8c0;
    text-decoration: underline;
}

/* ===================================
   ALT BAR (COPYRIGHT & ÖDEME)
   =================================== */
.footer-bottom {
    background: #2c2c2c;
    padding: 25px 5%;
    border-top: 1px solid rgba(232, 184, 192, 0.2);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    color: #bbb;
    font-size: 14px;
    margin: 0;
}

.footer-payment-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-payment-logos img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-payment-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   RESPONSIVE TASARIM
   =================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-main {
        padding: 50px 5% 30px;
    }
}

/* Mobile (Max 767px) */
@media (max-width: 767px) {
    .site-footer {
        margin-top: 50px;
    }

    .footer-main {
        padding: 40px 5% 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .footer-title::after {
        width: 40px;
        height: 2px;
    }

    .footer-about .footer-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-menu li {
        margin-bottom: 10px;
    }

    .footer-menu a {
        font-size: 13px;
    }

    .footer-contact-item {
        font-size: 13px;
        gap: 12px;
    }

    .footer-contact-item i {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px 5%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-copyright {
        order: 2;
    }

    .footer-payment-logos {
        order: 1;
        justify-content: center;
    }

    .footer-payment-logos img {
        height: 30px;
    }
}

/* Extra Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .footer-main {
        padding: 30px 5% 20px;
    }

    .footer-title {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-payment-logos {
        gap: 10px;
    }

    .footer-payment-logos img {
        height: 25px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

/* ===================================
   SEO & ACCESSIBILITY
   =================================== */

/* Focus states for keyboard navigation */
.footer-menu a:focus,
.footer-contact-item a:focus,
.footer-social a:focus {
    outline: 2px solid #e8b8c0;
    outline-offset: 3px;
    border-radius: 3px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print styles */
@media print {
    .site-footer {
        background: white !important;
        color: black !important;
    }

    .footer-bottom {
        background: #f0f0f0 !important;
        border-top: 2px solid #ccc !important;
    }

    .footer-social,
    .footer-payment-logos {
        display: none !important;
    }
}
