/* ============================================
   CATEGORY ORDER COUNT BOX - BLUE FLASH STYLE
   ============================================ */
.category-order-count-container {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.category-order-count-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #04548F, #2b86c5);
    /* Blue gradient */
    color: #fff;
    padding: 2px 10px 2px 5px;
    border-radius: 4px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-family: "Roboto Slab", Arial, Tahoma, sans-serif;
    font-weight: 700;
    font-size: 12px;
    position: relative;
    box-shadow: 0 2px 4px rgba(4, 84, 143, 0.3);
    margin-left: 10px;
    /* Space for the protruding icon */
}

.category-order-count-box .fire-icon {
    font-size: 24px;
    color: #f5a623;
    /* Yellow lightning */
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.category-order-count-box .order-text {
    margin-left: 10px;
    /* Push text to right to avoid icon overlap */
    line-height: 1.5;
}

/* Animation for icon */
@keyframes flash-shake {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    25% {
        transform: translateY(-50%) rotate(-10deg);
    }

    75% {
        transform: translateY(-50%) rotate(10deg);
    }
}

.category-order-count-box .fire-icon {
    animation: flash-shake 2s infinite ease-in-out;
}