/* Стили для блока социальных сетей и приложения */

.block-10 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-title-social {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-wrapper-social {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* Левая секция - социальные сети */
.social-section {
    flex: 0 1 auto;
}

.section-title-social {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.3;
}

.social-container-new {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.social-item {
    text-align: center;
}

.social-icon-wrapper {
    width: 180px;
    height: 180px;
    border: 4px solid #f4b234;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-icon-wrapper:hover {
    transform: translateY(-5px);
}

.social-icon-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin: 15px auto;
}

.qr-code img {
    width: 100%;
    height: 100%;
    display: block;
}

.social-button {
    display: inline-block;
    padding: 12px 40px;
    background: white;
    border: 2px solid #f4b234;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: #f4b234;
    color: white;
}

/* Правая секция - приложение */
.app-section {
    flex: 0 1 auto;
}

.app-container {
    border: 4px solid #f4b234;
    border-radius: 8px;
    padding: 30px 40px;
    background: white;
}

.app-item {
    margin-bottom: 20px;
}

.app-item:last-child {
    margin-bottom: 0;
}

.store-button {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.app-button {
    display: block;
    margin: 0 auto;
    padding: 10px 35px;
    background: white;
    border: 2px solid #f4b234;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 180px;
}

.app-button:hover {
    background: #f4b234;
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-wrapper-social {
        gap: 40px;
    }

    .main-title-social {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-title-social {
        font-size: 20px;
    }

    .social-container-new {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .social-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .social-icon-wrapper img {
        width: 100px;
        height: 100px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .app-container {
        padding: 25px 30px;
    }

    .store-button {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .social-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icon-wrapper {
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-icon-wrapper img {
        width: 80px;
        height: 80px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .app-container {
        padding: 20px 25px;
    }

    .store-button {
        max-width: 220px;
    }
}