#main #content-wrap, .separate-layout #main #content-wrap {
    padding-top: 25px !important;
}

.breadcrumbs {
    margin: 20px 0 0 0;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.woocommerce .oceanwp-toolbar {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

h1.category-heading__title {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 480px) {
    .woocommerce .oceanwp-grid-list {
        float: left !important;
        margin-top: 14px !important;
    }

    .woocommerce .woocommerce-ordering {
        float: right !important;
        width: calc(100% - 88px);
    }
}

/* Category desc */
.category-description {
    position: relative;
    margin-top: 48px;
}

.category-description__content {
    max-height: 160px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.category-description__content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0),
            #fff
    );
}

.category-description.is-open .category-description__content {
    max-height: 9999px;
}

.category-description.is-open .category-description__content::after {
    display: none;
}

.category-description__toggle {
    margin-top: 16px;
    padding: 0 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
}