.hagg-counters-wrap {
    width: 100%;
    margin: 20px 0;
    direction: rtl;
}

.hagg-counters-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: url("/bource/wp-content/uploads/2026/07/0a342a17-2079-49ef-b9c4-c8720a0c74cb.webp");
    background-size:cover;
    background-repeat:no-repeat;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #edf0f2;
    color:#fff;
}

.hagg-counter-item {
    position: relative;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
}

.hagg-counter-item:not(:last-child) {
    border-left: 1px solid #edf0f2;
}

.hagg-counter-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    justify-content: center;
    text-align: right;
}

.hagg-counter-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.hagg-counter-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
}

.hagg-counter-value {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.hagg-counter-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.hagg-counter-desc {
    font-size: 13px;
    color: #fff;
}

@media (max-width: 991px) {
    .hagg-counters-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .hagg-counter-item:nth-child(2n+1) {
        border-left: 1px solid #edf0f2;
    }

    .hagg-counter-item:nth-child(-n+2) {
        border-bottom: 1px solid #edf0f2;
    }
}

@media (max-width: 575px) {
    .hagg-counters-box {
        grid-template-columns: 1fr;
    }

    .hagg-counter-item {
        border-left: none !important;
        border-bottom: 1px solid #edf0f2;
    }

    .hagg-counter-item:last-child {
        border-bottom: none;
    }

    .hagg-counter-inner {
        justify-content: flex-start;
    }
}
