body,
.wp-editor-area {
    font-family: 'Noto Sans Bengali', sans-serif !important;
    line-height: 1.8;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.VIpgJd-yAWNEb-L7lbkb>div {
    display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
div#goog-gt-vt,
.goog-te-banner-frame,
.goog-te-menu-frame {
    display: none !important;
}

.scrollbar-none {
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scrollbar-none::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.popup-img {
    width: auto;
    margin: auto;
}

@media (min-width: 768px) {
    .popup-img {
        max-height: 350px;
    }
}

@media (min-width: 1024px) {
    .popup-img {
        max-height: 400px;
    }
}

@media (min-width: 1280px) {
    .popup-img {
        max-height: 500px;
    }
}

.scroll-x::-webkit-scrollbar-track {
    border-radius: 10px;
}

.scroll-x::-webkit-scrollbar {
    height: 5px;
}

.scroll-x::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(145, 145, 145, 0.3);
    background-color: #b7b7b7;
}


.category-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Desktop */
    gap: 12px;
    width: 23%;
    margin-bottom: 8px;
    padding: 10px 50px;
    background-color: #02A7CA;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-pill:hover {
    transform: scale(1.05);
}

/* Icon */
.category-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 4px;
}

/* Text */
.category-text {
    white-space: nowrap;
}

/* 📱 Mobile Fix */
@media (max-width: 767px) {
    .category-pill {
        width: 100%;
        justify-content: flex-start;
        /* Mobile */
        padding: 10px 50px;
        /* As requested */
    }
}


.notification-active {
    color: #FFA700;
    font-weight: 700;
    transform: scale(1.05);
}

.notification-active svg {
    fill: #FFA700;
}

.notification-active::after {
    content: "";
    display: block;
    height: 2px;
    background: #FFA700;
    margin-top: 4px;
    border-radius: 2px;
}

/* Button Active */

/* Badge positioning (perfect corner) */
.notification-badge {
    position: absolute;
    top: -6px;
    left: 10px;

    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    line-height: 18px;
    font-size: 10px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9999px;

    background-color: #FFA700;
    color: #fff;

    box-shadow: 0 0 6px rgba(255, 167, 0, 0.6);
}

.notification-badge {
    background-color: #FFA700;
    color: #fff;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}