/* Add your custom styles here */
.ga-cats {
    padding: 50px 0;
}
.ga-cats__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.ga-cats__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.ga-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ga-cat {
    position: relative;
    display: block;
    overflow: hidden;
    color: #000;
    text-decoration: none;
}
.ga-cat--wide {
    grid-column: span 3;
}
.ga-cat img {
    width: 100%;
    height: auto;
    display: block;
}
.ga-cat__foot {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

@media (max-width: 1024px) {
    .ga-cat__foot {
        flex-direction: column !important;
        align-items: flex-end; /* Align the shop button to the right */
        text-align: right;
    }
    
    .ga-cat__name {
        width: 100%;
        text-align: left; /* Keep category name on the left */
        margin-bottom: 5px; /* Add some space between name and button */
    }
}
