@charset "utf-8";
/* CSS Document */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo img {
    max-height: 45px;
}

.header-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/*.cart-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
*/
/*.cart-icon {
    position: relative;
    font-size: 22px;
    color: #333;
    text-decoration: none;
}

.cart-icon #cartCount {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 999px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}
*/
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap; /* 🔴 BU KRİTİK */
}









/*.cart-slot {
    display: flex;
    align-items: center;
}
*/

.cart-slot {
    display: flex;
    align-items: center;
}



.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* 🔒 kırılma yok */
    text-decoration: none;
    color: #333;
    position: relative;
}

.cart-text {
    font-size: 14px;
    margin-right: 2px; /* Sepetim biraz sola */
}



.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-icon-wrapper i {
    font-size: 20px;
}

/*#cartCount {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 999px;
    line-height: 1;
}
*/

#cartCount {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;

    background-color: #dc3545; /* 🔴 kırmızı garanti */
    color: #fff;

    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;

    border-radius: 999px;
    padding: 0 5px;

    pointer-events: none; /* tıklamayı bozmaz */
}







.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
}

/* 📱 MOBİL */
@media (max-width: 991px) {

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav-wrapper {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        display: none;
        border-top: 1px solid #eee;
    }

    .header-nav-wrapper.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .header-right {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 15px;
    }

    .search-form input {
        width: 100%;
    }
    
    .cart-slot {
        align-self: flex-end;
    }
    
}
