
.gt-store{}

.gt-store__header {
    text-align: center;
    padding-block: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    border-bottom: 1px solid #3367CD80;
}
.gt-store__title{}
.gt-store__detail{}
.gt-store__filter{
    background: #3367CD1A;
    border: 1px solid var(--gt-color-primary);
    padding: 20px;
    border-radius: 16px;
    color: var(--gt-color-black);
    max-height: 300px;
    max-width: 250px;
    min-width: 250px;
}
.gt-store__filter-title{
    font-size: 22px;
    font-weight: 700;
    color: var(--gt-color-primary);
    margin-bottom: 10px;
}
.gt-store__group{
    display: flex;
    gap: 20px;
    margin-block: 20px;
}
.gt-store__items{
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.gt-store__items .gt-card-store{
    width: 31%;
}

.gt-store__actions{
    display: none;
    padding-block: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Responsive */

@media (max-width: 768px) {
    .gt-store__group{
        flex-direction: column;
    }
    .gt-store__filter{
        max-width: 100%;
    }
    .gt-store__items .gt-card-store {
        width: 100%;
    }
    .gt-store__actions{
        display: flex;
    }
}


@media (max-width: 1200px) {
    .gt-store__items {
        gap: 25px;
    }
}
