.store-category-page {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}


.category-description .description-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.show-more-btn {
    color: var(--ast-global-color-0) !important;
    border: none;
    padding: 10px 0px;
    cursor: pointer;
    background: none !important;
}


.full-description {
    margin-top: 10px;
}

.category-store-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
    flex: 1;
}

.store-item {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
    height: fit-content;
}

.d-flex {
    display: flex;
}

.gap-10 {
    gap: 10px;
}

.align-items-center {
    align-items: center;
}

.store-item h2 {
    font-size: 1.5em;
}

.store-thumbnail {
    width: 100px;
    flex-shrink: 0;
}

.store-thumbnail img {
    width: 100%;
    height: auto;
}

.store-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    align-items: center;
    padding-top: 10px;
}

.category-related {
    background-color: #fff;
    padding: 20px;
    width: 300px;
}

.category-related h3 {
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
}

.category-related ul {
    list-style: none;
    padding: 0;
    margin: 10px 0px;
}

.category-related a {
    text-decoration: none;
    color: var(--ast-global-color-2) !important;
    padding: 10px 0px;
}