/* ===== БЫСТРЫЙ ДОСТУП ===== */
.quick-access {
    margin: 60px 0;
}

.quick-access h2 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 40px;
}

.access-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.access-list {
    width: 100%;
}

.access-list img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
}

.qr-section {
    border-radius: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: #f0f0f0;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-section > p {
    font-size: 16px;
    color: #7b767d;
    line-height: 1.4;
    margin-bottom: 30px;
    text-align:  center;
}

/* Сетка 2x2 для иконок магазинов */
.app-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: #f6f6f9;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #a43ccf;
}

.store-icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    object-fit: contain;
}

.store-name {
    font-size: 12px;
    font-weight: 500;
    color: #433f45;
    line-height: 1.4;
    max-width: 100%;
}

/* Адаптивность */
@media (max-width: 992px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-stores-grid {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .quick-access h2 {
        font-size: 42px;
    }

    .qr-code {
        width: 180px;
        height: 180px;
    }

    .store-icon-img {
        width: 42px;
        height: 42px;
    }

    .store-name {
        font-size: 11px;
    }
}

@media (max-width: 580px) {
    .app-stores-grid {
        grid-template-columns: 1fr; /* На маленьких экранах становится в один столбец */
        gap: 12px;
    }

    .store-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 12px 15px;
    }

    .store-icon-img {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }

    .store-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .quick-access h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .qr-section {
        padding: 20px 15px;
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }

    .qr-section > p {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

