/* Bottom Navigation Footer - Yeni Footer Stilleri */
.bottom-nav-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--body-bg, #fff);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 8px 0;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    color: var(--primary, #FF8C00);
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    max-width: 80px;
}

.bottom-nav-icon {
    font-size: 18px;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    color: var(--primary, #FF8C00);
    transition: all 0.3s ease;
}

/* Active State - Turuncu Daire Arka Plan */
.bottom-nav-item.bottom-nav-active {
    opacity: 1;
}

.bottom-nav-item.bottom-nav-active .bottom-nav-icon {
    color: #fff !important;
    position: relative;
    transform: translate(2px, 2px);
}

/* Turuncu daire arka plan - ::after kullan (::before font-icon için) */
.bottom-nav-item.bottom-nav-active .bottom-nav-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--primary, #FF8C00);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Font-icon'un ::before elementini beyaz yap */
.bottom-nav-item.bottom-nav-active i::before,
.bottom-nav-item.bottom-nav-active i::after {
    color: #fff !important;
}

/* Hover Effect */
.bottom-nav-item:hover {
    opacity: 1;
}

.bottom-nav-item:hover .bottom-nav-icon {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {
    .bottom-nav-icon {
        font-size: 16px;
        height: 40px;
        width: 40px;
    }
    
    .bottom-nav-item.bottom-nav-active .bottom-nav-icon::before {
        width: 36px;
        height: 36px;
        margin-left: 12px;
        margin-top: 15px;
    }
}
