.store-home {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.store-home__hero {
    border-radius: 8px;
    padding: 24px;
    background: var(--white--white100);
    box-shadow: 0 0 3.6px 0 rgba(0, 0, 0, 0.15);
}

.store-home__popular {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 8px;
    padding: 24px;
    background: var(--white--white100);
    box-shadow: 0 0 3.6px 0 rgba(0, 0, 0, 0.15);
}

.store-home__section-title {
    font-size: 24px;
    font-style: normal;
    line-height: 120%;
}

.store-home__tags {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
}

.store-home__tag {
    background: var(--grey--grey90);
    border: 1px solid var(--grey--grey80);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.store-home__tag:hover {
    border: 1px solid var(--azure--azure90);
    background: var(--azure--azure100);
    box-shadow: 2px 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30);
}

.store-home__offers {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.store-home__offers-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 1199px) {
    .store-home {
        gap: 32px;
    }

    .store-home__hero {
        padding: 20px;
    }

    .store-home__popular {
        gap: 20px;
        padding: 20px;
    }

    .store-home__tags {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-home__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .store-home {
        gap: 24px;
    }

    .store-home__hero {
        padding: 16px;
    }

    .store-home__popular {
        gap: 16px;
        padding: 16px;
    }

    .store-home__section-title,
    .store-home__offers-title {
        font-size: 20px;
    }

    .store-home__tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .store-home__tag {
        font-size: 14px;
        padding: 10px 8px;
    }
}