/* CSS Güncellemeleri - Custom Grid System for Footer */
/* Scoped Footer Container to avoid breaking global site layout */
.footer-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

/* Fix Slider Content Centering */
.slide-content {
    margin: 0 auto;
    /* Ensure content is centered horizontally within its container */
}

/* Ensure Slider Buttons are Clickable */
.slider-btn {
    z-index: 100 !important;
    /* Force buttons on top */
    cursor: pointer;
}

/* Flexbox Grid Wrapper for Footer */
footer .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

footer .col-md-3 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
}

footer .mb-4 {
    margin-bottom: 1.5rem !important;
}

footer .d-flex {
    display: flex !important;
}

footer .gap-2 {
    gap: 0.5rem !important;
}

footer .align-items-center {
    align-items: center !important;
}

footer .text-center {
    text-align: center !important;
}

footer .text-md-left {
    text-align: left !important;
}

footer .text-md-right {
    text-align: right !important;
}

footer .text-white {
    color: #fff !important;
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

footer .small {
    font-size: 80%;
    font-weight: 400;
}

footer .list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Mobile Responsive Overrides for Grid */
@media (max-width: 768px) {
    footer .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    footer .text-md-left,
    footer .text-md-right {
        text-align: center !important;
    }

    footer .row {
        flex-direction: column;
    }
}

/* --- Top Bar --- */
.top-bar {
    background: #fdfdfd;
    /* Beyazımsı Gri */
    color: #444;
    border-bottom: 1px solid #ebebeb;
}

.top-bar a {
    color: #444;
    margin-right: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.top-right a {
    margin-left: 20px;
    margin-right: 0;
}

/* --- Header Re-design --- */
.header-inner {
    padding: 25px 0;
}

.logo-text {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-accent {
    color: #27ae60;
    /* Divona Yeşilimsi */
    border: 2px solid #27ae60;
    border-radius: 50%;
    padding: 0 5px;
    margin-left: 2px;
    font-size: 1.4rem;
    vertical-align: middle;
}

.search-bar {
    max-width: 600px;
}

.search-bar form {
    position: relative;
    width: 100%;
}

.search-bar input {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 12px 15px 12px 45px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.login-link {
    font-size: 0.85rem;
    margin-right: 20px;
    color: #333;
    font-weight: 500;
}

.cart-icon {
    position: relative;
    color: #333;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #27ae60;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav Menu */
.nav-container {
    border-top: none;
    /* Üst çizgi kaldırıldı */
}

.nav-menu {
    gap: 30px;
    justify-content: center;
    /* Ortaya hizala */
}

.nav-menu a {
    font-size: 0.8rem;
    padding: 10px 0;
    color: #222;
    font-weight: 600;
}

.nav-menu a:hover {
    color: #27ae60;
}

.nav-menu a::after {
    display: none;
    /* Alt çizgi animasyonunu kaldır, sadece renk değişsin */
}

/* Footer Redesign - Premium & Spacious */
footer {
    background: #111;
    color: #b0b0b0;
    /* Softer text color for better readability */
    padding-top: 80px;
    /* More top padding */
    padding-bottom: 30px;
    margin-top: auto;
    border-top: 5px solid #27ae60;
    /* Accent border on top */
    font-family: 'Inter', sans-serif;
    /* Use modern font if available, fallback exists */
}

footer h6 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

/* Decorative underline for titles */
footer h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #27ae60;
}

footer p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    /* Increased spacing */
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    /* Move right on hover */
    color: #27ae60;
    /* Accent color on hover */
}

.footer-social-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    /* Circle looks more premium usually, or soft square */
    color: white;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-box:hover {
    background: #27ae60;
    border-color: #27ae60;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Specific brand colors on hover (optional, keeping uniform green for premium look is often better, but let's stick to brand colors if preferred or just accent) */
/* Let's go with the green accent for uniformity as it looks more 'brand' focused */

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    /* Spacing before copyright */
    padding-top: 20px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .col-md-3 {
        margin-bottom: 40px;
        /* Space between columns on mobile */
    }
}