/* =============================================
   SIDE ACTION MENU - SAĞ TARAF FLOATING BUTONLAR
   ============================================= */
.side-actions {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.side-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 12px;
    background: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    transition: all 0.3s;
    min-width: 70px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.side-action-item:hover {
    border-color: #22d3ee;
    color: #22d3ee;
    transform: translateX(-5px);
}

.side-action-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.side-action-item span {
    font-weight: 500;
    white-space: nowrap;
}

/* Canlı Destek - Özel Renk */
.side-action-support {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: transparent;
    color: white;
}

.side-action-support:hover {
    color: white;
    transform: translateX(-5px) scale(1.05);
}

/* Mobilde gizle - Bottom nav göster */
@media (max-width: 768px) {
    .side-actions {
        display: none !important;
    }
}

/* Tablet ve küçük ekranlarda gizle */
@media (max-width: 1200px) {
    .side-actions {
        display: none;
    }
}

/* =============================================
   MOBILE BOTTOM NAVIGATION
   ============================================= */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 8px;
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 8px 4px;
    gap: 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.mobile-nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Her buton için farklı renkler */
.mobile-nav-item:nth-child(1) i {
    color: #ffd700; /* İlan Ver - Altın */
}

.mobile-nav-item:nth-child(2) i {
    color: #4caf50; /* Bakiye - Yeşil */
}

.mobile-nav-item:nth-child(4) i {
    color: #2196f3; /* İlanlarım - Mavi */
}

.mobile-nav-item:nth-child(5) i {
    color: #9c27b0; /* Siparişlerim - Mor */
}

.mobile-nav-item:active {
    transform: translateZ(0) scale(0.95);
}

/* Canlı Destek - Özel Tasarım */
.mobile-nav-support {
    background: linear-gradient(135deg, #ff9800, #ff6b00);
    color: white !important;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 16px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    width: 80px;
    height: 56px;
}

.mobile-nav-support i {
    font-size: 20px !important;
    color: white !important;
    filter: none !important;
}

.mobile-nav-support span {
    font-size: 0.6rem;
    line-height: 1;
}

.mobile-nav-support:active {
    transform: translateZ(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.6);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    .main-content {
        padding-bottom: 70px;
    }

    .footer {
        margin-bottom: 60px;
    }
}
