.categoryopeners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 12px 14px;
}

.categoryopeners .categoryopener {
    appearance: none;
    -webkit-appearance: none;
    min-width: 0;
    min-height: 112px;
    padding: 10px 5px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    box-shadow: 0 1px 10px rgba(15, 23, 42, 0.55);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font: inherit;
    text-align: center;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.categoryopeners .categoryopener:hover {
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.28);
}

.categoryopeners .categoryopener:focus-visible {
    outline: 3px solid rgba(20, 115, 230, 0.28);
    outline-offset: 2px;
}

.categoryopener-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
}

.categoryopener-icon svg {
    width: 29px;
    height: 29px;
    display: block;
    fill: currentColor;
}

.categoryopener-name {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

/* Ăn ở Bolsa */
.categoryopener-food {
    color: #e85d04;
}

.categoryopener-food .categoryopener-icon {
    background: #fff0e2;
}

/* Uống ở Bolsa */
.categoryopener-drink {
    color: #1473e6;
}

.categoryopener-drink .categoryopener-icon {
    background: #e9f2ff;
}

/* Ăn Vặt ở Bolsa */
.categoryopener-snack {
    color: #d63384;
}

.categoryopener-snack .categoryopener-icon {
    background: #fdebf3;
}

/* Home Chef */
.categoryopener-homechef {
    color: #198754;
}

.categoryopener-homechef .categoryopener-icon {
    background: #e9f8ef;
}

.categoryopeners .categoryopener:active {
    transform: scale(0.98);
}

@media (max-width: 360px) {
    .categoryopeners {
        gap: 9px;
        margin-right: 8px;
        margin-left: 8px;
    }

    .categoryopeners .categoryopener {
        min-height: 104px;
        padding: 9px 4px;
    }

    .categoryopener-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .categoryopener-icon svg {
        width: 27px;
        height: 27px;
    }

    .categoryopener-name {
        font-size: 11px;
    }
}
