/* Footer ana stilleri */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(102, 126, 234, 0.1);
    z-index: 1000;
    padding: 0.15rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    height: auto;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 0 2rem;
    position: relative;
}

/* Footer item stilleri */
.footer-item {
    text-align: center;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.15rem;
    color: #718096;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #2d3748;
}

/* İkonlar */
.footer-link i {
    font-size: 1.25rem;
}

.footer-link span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
}

/* Satış Ekle butonu */
.footer-item.primary {
    margin-top: -1.25rem;
}

.add-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.footer-link.add-sale {
    color: #2d3748;
    font-weight: 600;
}

.footer-link.add-sale:hover .add-button {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Body padding */
body {
    padding-bottom: 3.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-wrapper {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .footer-link span {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .footer-wrapper {
        gap: 0.25rem;
        padding: 0 0.5rem;
    }

    .footer-link span {
        font-size: 0.7rem;
    }
} 