.dest-cat-main-heading-c7b4883f {
    text-align: center;
    color: #111;
    font-size: 2.5rem;
    font-weight: bold;
}

.dest-cat-container-c7b4883f {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.dest-cat-track-c7b4883f {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left-c7b4883f 20s linear infinite;
}

.dest-cat-container-c7b4883f:hover .dest-cat-track-c7b4883f {
    animation-play-state: paused;
}

@keyframes scroll-left-c7b4883f {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly half the width to create seamless loop (since items are duplicated) */
        transform: translateX(calc(-50% - 15px)); /* 15px is half the gap */
    }
}

.dest-cat-item-c7b4883f {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
    width: 250px; /* Default width, overridden by control */
}

.dest-cat-item-c7b4883f:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dest-cat-img-wrapper-c7b4883f {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50% 50% 0 0; 
}

.dest-cat-img-wrapper-c7b4883f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-cat-item-c7b4883f:hover .dest-cat-img-wrapper-c7b4883f img {
    transform: scale(1.08);
}

.dest-cat-content-c7b4883f {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-cat-title-c7b4883f {
    margin: 0;
    font-weight: bold;
    color: #111;
}

.dest-cat-count-c7b4883f {
    color: #27ae60;
    font-size: 0.9em;
}
