<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Footer stilleri */
.footer {
    margin-top: auto; /* Footer'Ä± en alta iter */
    flex-shrink: 0; /* Footer'Ä±n kÃ¼Ã§Ã¼lmesini engelle */
    position: relative;
    z-index: 10;
    background: #fff; /* Footer arka planÄ±nÄ±n gÃ¶rÃ¼nÃ¼r olmasÄ± iÃ§in */
}

/* Modern Footer TasarÄ±mÄ± */
.footer-modern {
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-top: 4px solid #ff8006;
}

/* Footer Container - Header ile aynÄ± padding */
.footer-modern .container-xxl {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

.footer-main {
    padding: 3rem 0 2rem;
    color: #ecf0f1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Footer Brand */
.footer-brand {
    max-width: 500px;
}

.footer-logo img {
    width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin: 0;
    text-align: justify;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff8006;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #ff8006;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #ff8006;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Social Media */
.footer-social {
    margin-top: 1rem;
}

.social-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ff8006;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
    border-color: #e1306c;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.linkedin:hover {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    color: #ff8006;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #95a5a6;
}

.copyright-text,
.year-text {
    margin: 0;
}

.year-text {
    font-weight: 600;
    color: #ff8006;
}

/* Responsive TasarÄ±m */
@media (max-width: 1199.98px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo img {
        width: 240px;
    }
}

@media (max-width: 991.98px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo img {
        width: 200px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-content {
        font-size: 0.8rem;
    }
}


/* Responsive iÃ§in ek header stilleri */
@media (max-width: 991.98px) {

    /* Mobil gÃ¶rÃ¼nÃ¼mde alt header'Ä± collapse iÃ§ine al */
    .sub-header {
        position: static !important;
        width: 100%;
        border-top: 1px solid #e2e8f0;
        margin-top: 1rem;
    }

    /* Collapse aÃ§Ä±kken gÃ¶rÃ¼nÃ¼r yap */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
    }

        .navbar-collapse.show {
            padding: 1rem 0;
        }

    /* Mobilde search bar dÃ¼zeni */
    .search-bar {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        margin-left: 0 !important;
    }

    .search-input {
        flex: 1;
        padding: 12px 15px 12px 15px !important;
    }

    .search-icon {
        display: none;
    }

    /* Action buttons mobil dÃ¼zeni */
    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .action-btn,
    .dropdown,
    .sepet-btn {
        width: 100%;
        justify-content: flex-start;
    }

    /* Kategori dropdown mobil */
    .kategori-dropdown {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .top-header-content {
        padding: 0.75rem 0;
    }

    .header-right-section {
        gap: 0.75rem;
    }

    .user-info-display {
        padding: 0.5rem;
        background: transparent;
    }
}

/* GeÃ§iÅŸ animasyonlarÄ± */
.navbar-collapse {
    transition: all 0.3s ease;
}

.dropdown-menu {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}</pre></body></html>