/* Footer */
.footer {
    background: #f5f5f5;
    color: #333;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 100px;
}

.footer-logo-img {
    height: 40px;
}

.footer-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.footer-info p {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
    margin: 0;
}

.footer-shoes {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 100px;
}

.footer-shoes-icon {
    height: 30px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-shoes-icon:hover {
    opacity: 1;
    transform: scale(1.05);
}

