.honeycomb-wrapper {
    width: 100%;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.honeycomb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    transform: translateY(20px);
    margin-top: 60px;
    width: 1260px;
}

.honeycomb-cell {
    flex: 0 1 180px;
    max-width: 180px;
    height: 135px;
    margin: 10px 10px 20px;
    position: relative;
    padding: 10px;
    text-align: center;
    z-index: 1;
    user-select: none;
}

.honeycomb-cell-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-gap: 8px;
    hyphens: auto;
    word-break: break-word;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: opacity 350ms;
    text-shadow: 0 1px 1px rgba(11 11 11/ 77%);
}

.honeycomb-count {
    font-size: 13px;
}

.honeycomb-name {
    text-transform: uppercase;
}

.honeycomb-cell-title>small {
    font-weight: 300;
    margin-top: 0.25em;
}

.honeycomb-cell-image {
    object-fit: cover;
    object-position: center;
}

.honeycomb-cell::before,
.honeycomb-cell::after {
    content: '';
}

.honeycomb-cell::before,
.honeycomb-cell::after,
.honeycomb-cell-image {
    top: -50%;
    left: 0;
    width: 100%;
    height: 150%;
    display: block;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.honeycomb-cell::before {
    background: #fff;
    transform: scale(1.055);
}

.honeycomb-cell::after {
    background: #111;
    opacity: 0.5;
    transition: opacity 350ms;
}

.honeycomb-cell:hover .honeycomb-cell-title {
    opacity: 0;
}

.honeycomb-cell:hover::before {
    background: var(--primary);
}

.honeycomb-cell:hover::after {
    opacity: 0;
}

.honeycomb-placeholder {
    display: none;
    opacity: 0;
    width: 180px;
    margin: 0 12px;
}

.honeycomb-cell:nth-child(11n + 7) {
    margin-left: 110px;
}

.honeycomb-cell:nth-child(11n + 11),
.honeycomb-cell:nth-child(11n + 7):nth-last-child(2) {
    margin-right: 110px;
}

.honeycomb-placeholder:nth-child(11n + 11),
.honeycomb-placeholder:nth-child(11n + 13),
.honeycomb-placeholder:nth-child(11n + 15) {
    display: block;
}

@media (max-width: 1280px) {
    .honeycomb {
        justify-content: flex-start;
        max-width: 1050px;
    }

    .honeycomb-cell {
        flex: 0 1 152px;
        max-width: 152px;
        height: 115px;
    }

    .honeycomb-cell:nth-child(11n + 7) {
        margin-left: 95px;
    }

    .honeycomb-cell:nth-child(11n + 11),
    .honeycomb-cell:nth-child(11n + 7):nth-last-child(2) {
        margin-right: 95px;
    }

    .honeycomb-wrapper {
        padding-left: 20px;
    }

    .shopping-trends .landing-section {
        padding: 60px 0;
    }
}

@media (max-width: 760px) {
    .honeycomb-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
    }
}