.footer {
    background: #f8f3eb;
    border-top: 1px solid #d8a07e;
    color: #333;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.desktop-schedule,
.mobile-schedule {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.desktop-schedule {
    display: flex;
}

.mobile-schedule {
    display: none;
}

.schedule-icon {
    width: 22px;
    height: 30px;
}

.schedule-text {
    display: flex;
    flex-direction: column;
}

.schedule-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.schedule-hours {
    font-size: 13px;
    color: #666;
}

.footer-catalog,
.footer-info,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-catalog h3,
.footer-info h3,
.footer-social h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-catalog ul,
.footer-info ul,
.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-catalog li,
.footer-info li,
.footer-social li {
    margin-bottom: 8px;
}

.footer-catalog a,
.footer-info a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-catalog a:hover,
.footer-info a:hover {
    color: #d8a07e;
    transform: translateX(5px);
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-social a:hover {
    color: #d8a07e;
    transform: translateX(5px);
}

.footer-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #d8a07e;
}

.footer-copyright p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-catalog,
    .footer-info,
    .footer-social {
        align-items: center;
    }

    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: flex;
    }

    .footer-catalog h3,
    .footer-info h3,
    .footer-social h3 {
        font-size: 16px;
    }

    .footer-catalog a,
    .footer-info a,
    .footer-social a {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}