/* 🎨 СУПЕР МИНИМАЛИСТИЧНЫЙ ФУТЕР */

/* App Download Icons in Footer */
.footer__bottom_left {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.footer__bottom_left a {
    flex-shrink: 0 !important;
}

.footer {
    background: #000;
    color: white;
    padding: 50px 0 30px;
    position: relative;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Основная структура */
.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Секция ссылок */
.footer__links {
    flex: 1;
}

.footer__nav_wrapper {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer__nav {
    min-width: 150px;
}

.footer__nav_title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer__nav_link {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav_link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.2s ease;
    line-height: 2;
}

.footer__nav_link a:hover {
    color: white;
}

/* Copyright - минималистичный */
.copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Newsletter секция - супер минималистичная */
.footer__newsletter {
    flex: 0 0 380px;
    background: transparent;
    padding: 0;
}

.footer__newsletter_title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Форма подписки - минималистичная с отступом */
.footer__newsletter_form {
    display: flex;
    gap: 12px;
    position: relative;
    align-items: center;
}

.footer__newsletter_form input {
    flex: 1;
    padding: 12px 4px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: white;
    font-size: 14px;
    transition: border-color 0.2s ease;
    outline: none;
    font-weight: 300;
    min-height: 40px;
}

.footer__newsletter_form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter_form input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.footer__newsletter_form button {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 40px;
}

.footer__newsletter_form button:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.footer__newsletter_form button img {
    display: none;
}

/* Bottom секция */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Кнопка "Наверх" - минималистичная */
.toTop {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.toTop:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.toTop img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.toTop:hover img {
    opacity: 1;
}

/* 📱 МОБИЛЬНАЯ АДАПТАЦИЯ - ПЕРЕОПРЕДЕЛЯЕТ footer-minimal-mobile.css */
@media (max-width: 768px) {
    .footer {
        background: #000 !important;
        padding: 40px 0 30px !important;
        margin-top: 40px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .footer .container {
        padding: 0 20px !important;
    }
    
    .footer__main {
        flex-direction: column !important;
        gap: 35px !important;
        margin-bottom: 35px !important;
    }
    
    .footer__links {
        width: 100% !important;
    }
    
    .footer__nav_wrapper {
        flex-direction: column !important;
        gap: 30px !important;
        display: flex !important;
        grid-template-columns: none !important;
        margin-bottom: 30px !important;
    }
    
    .footer__nav {
        min-width: 100% !important;
    }
    
    .footer__nav_title {
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
    }
    
    .footer__nav_link {
        gap: 8px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .footer__nav_link a {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 14px !important;
        font-weight: 300 !important;
        line-height: 2 !important;
        text-decoration: none !important;
        transition: color 0.2s ease !important;
    }
    
    .footer__nav_link a p {
        margin: 0 !important;
    }
    
    .footer__nav_link a:active,
    .footer__nav_link a:focus {
        color: white !important;
    }
    
    .copy {
        font-size: 11px !important;
        color: rgba(255, 255, 255, 0.4) !important;
        text-align: left !important;
        margin: 0 !important;
        font-weight: 300 !important;
    }
    
    .footer__newsletter {
        flex: 1 !important;
        width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
    }
    
    .footer__newsletter_title {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        margin-bottom: 12px !important;
    }
    
    .footer__newsletter_form {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .footer__newsletter_form input {
        padding: 12px 4px !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 0 !important;
        font-size: 14px !important;
        min-height: 42px !important;
        flex: 1 !important;
        color: white !important;
        outline: none !important;
    }
    
    .footer__newsletter_form input::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }
    
    .footer__newsletter_form input:focus {
        border-bottom-color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .footer__newsletter_form button {
        padding: 12px 16px !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 0 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 13px !important;
        min-height: 42px !important;
        font-weight: 400 !important;
        white-space: nowrap !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }
    
    .footer__newsletter_form button span {
        display: inline !important;
    }
    
    .footer__newsletter_form button img {
        display: none !important;
    }
    
    .footer__newsletter_form button:active {
        color: white !important;
        border-bottom-color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .footer__bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        padding-top: 25px !important;
        margin-top: 30px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    
    .footer__bottom_left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        width: 100% !important;
    }
    
    .footer__bottom_left span {
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        font-weight: 500 !important;
        text-align: center !important;
        margin-bottom: 2px !important;
    }
    
    .footer__bottom_left > div {
        display: flex !important;
        gap: 12px !important;
        justify-content: center !important;
    }
    
    .footer__bottom_left a {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer__bottom_left a svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .footer__bottom_right {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .toTop {
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .toTop img {
        width: 16px !important;
        height: 16px !important;
        filter: brightness(0) invert(1) !important;
        opacity: 0.6 !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 35px 0 25px !important;
        margin-top: 30px !important;
    }
    
    .footer .container {
        padding: 0 16px !important;
    }
    
    .footer__main {
        gap: 28px !important;
        margin-bottom: 28px !important;
    }
    
    .footer__nav_wrapper {
        gap: 24px !important;
        margin-bottom: 24px !important;
    }
    
    .footer__nav_title {
        font-size: 11px !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.5px !important;
    }
    
    .footer__nav_link a {
        font-size: 14px !important;
        line-height: 2 !important;
        padding: 2px 0 !important;
    }
    
    .footer__newsletter_title {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
    
    .footer__newsletter_form input,
    .footer__newsletter_form button {
        font-size: 13px !important;
        min-height: 40px !important;
        padding: 10px 4px !important;
    }
    
    .footer__newsletter_form button {
        padding: 10px 14px !important;
    }
    
    .footer__bottom {
        gap: 18px !important;
        padding-top: 20px !important;
        margin-top: 24px !important;
    }
    
    .footer__bottom_left {
        gap: 12px !important;
    }
    
    .footer__bottom_left span {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }
    
    .footer__bottom_left a {
        width: 42px !important;
        height: 42px !important;
    }
    
    .footer__bottom_left a svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .toTop {
        width: 42px !important;
        height: 42px !important;
        padding: 8px !important;
    }
    
    .toTop img {
        width: 14px !important;
        height: 14px !important;
    }
}


