.category-display-container {
    display: inline-block;
    width: 100%;
}

.category-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.category-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.category-image:hover img {
    transform: scale(1.05);
}

.category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    border-width: 2px;
    border-style: solid;
}

.category-button .button-text {
    display: inline-block;
}

.category-button .arrow-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.category-button:hover .arrow-icon {
    transform: translateX(-3px);
}

/* RTL Support */
[dir="rtl"] .category-button .arrow-icon {
    margin-left: 0;
    margin-right: 8px;
    transform: rotate(180deg);
}

[dir="rtl"] .category-button:hover .arrow-icon {
    transform: rotate(180deg) translateX(-3px);
}