.roland-category-view {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-bottom: 24px;
    padding-right: var(--layout-gutter);
    padding-left: var(--layout-gutter);
    box-sizing: border-box;
    background: var(--color-white);
}

.roland-category-page {
    width: 100%;
    max-width: var(--layout-max);
    margin-right: auto;
    margin-left: auto;
    padding-top: 24px;
}

.roland-category-page--index {
    padding-bottom: 24px;
}

.roland-category-layout__breadcrumb .woocommerce-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: var(--text-small);
    line-height: 1.4;
    color: var(--color-gray);
    opacity: 1;
    visibility: visible;
}

.roland-category-layout__breadcrumb .woocommerce-breadcrumb a,
.roland-category-layout__breadcrumb .woocommerce-breadcrumb span {
    display: inline-flex;
    align-items: center;
    color: var(--color-gray);
    opacity: 1;
    visibility: visible;
}

.roland-category-layout__breadcrumb .woocommerce-breadcrumb a {
    text-decoration: none;
}

.roland-category-layout__breadcrumb .woocommerce-breadcrumb .crumb__home-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.roland-category-layout__breadcrumb .woocommerce-breadcrumb .crumb--cat {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.roland-category-layout__breadcrumb .woocommerce-breadcrumb .crumb--current {
    color: var(--color-gray);
}

.roland-category-layout {
    display: grid;
    row-gap: 24px;
    column-gap: var(--layout-gap);
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
}

.roland-category-layout__sidebar:empty,
.roland-category-children:empty {
    display: none;
}

.roland-category-layout__sidebar {
    display: none;
}

.roland-category-page__title {
    margin: 0 0 16px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-h2);
    font-weight: var(--font-weight-bold);
}

.roland-category-sidebar__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.roland-category-sidebar {
    display: grid;
    gap: 24px;
    align-content: start;
    border-radius: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    background: var(--color-background);
}

.roland-category-sidebar__title {
    margin: 0 0 16px;
    padding-bottom: 12px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--text-body-2);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    border-bottom: 1px solid var(--color-primary);
}

.roland-category-sidebar__filters:empty {
    display: none;
}

.roland-product-filters,
.roland-product-filter {
    display: grid;
    gap: 12px;
}

.roland-product-filters {
    gap: 20px;
}

.roland-product-filter__title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-body-2);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
}

.roland-product-filter ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.roland-product-filter a {
    color: var(--color-primary);
    text-decoration: none;
}

.roland-product-filter a:hover,
.roland-product-filter a:focus {
    text-decoration: underline;
}

.roland-product-filter .price_slider_amount {
    display: grid;
    gap: 8px;
}

.roland-product-filter .price_slider_amount .button {
    width: 100%;
    min-height: 40px;
    border-radius: 5px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold);
}

.roland-product-filter .price_label {
    color: var(--color-gray);
    font-family: var(--font-body);
    font-size: var(--text-small);
    line-height: 1.4;
    text-align: left;
}

.roland-price-band-filter {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.roland-price-band-filter__link {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-small);
    line-height: 1.35;
    text-decoration: none;
}

.roland-price-band-filter__link:hover,
.roland-price-band-filter__link:focus {
    color: var(--color-primary);
    text-decoration: none;
}

.roland-price-band-filter__marker {
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
}

.roland-price-band-filter__link.is-active .roland-price-band-filter__marker {
    border-width: 5px;
}

.roland-category-sidebar__link {
    display: inline;
    padding: 0;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-body-2);
    font-weight: var(--font-weight-regular);
    line-height: 1.4;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.roland-category-sidebar__item.is-active .roland-category-sidebar__link,
.roland-category-sidebar__link:hover,
.roland-category-sidebar__link:focus {
    color: var(--color-text);
    background: transparent;
    text-decoration: underline;
}

.roland-category-filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: calc((180px * 2) + 8px);
    margin-bottom: 24px;
    box-sizing: border-box;
}

.roland-category-filter-tabs__item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 6px 8px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    box-sizing: border-box;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--text-body-2);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    text-decoration: none;
}

.roland-category-filter-tabs__media {
    display: grid;
    place-items: center;
    width: 54px;
    height: 50px;
    min-width: 0;
    overflow: hidden;
}

.roland-category-filter-tabs__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roland-category-filter-tabs__label {
    min-width: 0;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.roland-category-filter-tabs__item.is-active,
.roland-category-filter-tabs__item:hover,
.roland-category-filter-tabs__item:focus {
    background: var(--color-primary);
    color: var(--color-white);
}

.roland-category-filter-tabs__item:first-child {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
}
.woocommerce-result-count{
    margin-bottom: 0 !important;
    color: var(--color-gray);
}

.roland-ordering-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-text);
}

.roland-ordering-tabs__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.roland-ordering-tabs__item:hover {
    background-color: rgba(10, 71, 52, 0.1);
}

.roland-ordering-tabs__item.is-active {
    border-bottom: 2px solid var(--color-primary);
    background-color: rgba(10, 71, 52, 0.2);
    font-weight: var(--font-weight-bold);
}
.woocommerce-ordering.roland-ordering-tabs::after,
.roland-ordering-tabs::after {
    content: none !important;
    display: none !important;
}

.roland-category-listing-tabs__products,
.roland-category-products-frame {
    padding-bottom: 16px;
    transition: opacity 0.16s ease;
}

.roland-category-listing-tabs__products.is-loading,
.roland-category-products-frame.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.roland-category-products ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.roland-category-products ul.products li.product.roland-category-product-card {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 12px;
    align-items: stretch;
    width: 100% !important;
    min-height: 168px;
    margin: 0 !important;
    padding: 12px;
    float: none !important;
    box-sizing: border-box;
    border: 1px solid rgba(2, 16, 12, 0.08);
    border-radius: 5px;
    background: var(--color-white);
}

.roland-category-product-card__media {
    display: grid;
    place-items: center;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.roland-category-product-card__media:hover,
.roland-category-product-card__media:focus {
    color: inherit;
    text-decoration: none;
}

.roland-category-product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roland-category-product-card__body {
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 8px;
    min-width: 0;
    height: 100%;
}

.roland-category-product-card__title {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.roland-category-product-card__title:hover,
.roland-category-product-card__title:focus {
    color: var(--color-text);
    text-decoration: underline;
}

.roland-category-product-card__price {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: baseline;
    align-self: center;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.roland-category-product-card__price .woocommerce-Price-amount {
    font-size: 20px;
}

.roland-category-product-card__price del {
    color: var(--color-gray);
    font-weight: var(--font-weight-regular);
}

.roland-category-product-card__price ins {
    text-decoration: none;
}

.roland-category-product-card__button {
    display: inline-flex;
    align-items: center;
    align-self: end;
    justify-content: center;
    width: 130px;
    height: 34px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 5px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.roland-category-product-card__button:hover,
.roland-category-product-card__button:focus {
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.roland-category-products__loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0;
    color: var(--color-gray);
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: var(--font-weight-medium);
}

.roland-category-products__loading-more[hidden] {
    display: none;
}

.roland-category-products__loading-more::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(10, 71, 52, 0.18);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: roland-product-loading-spin 0.8s linear infinite;
}

@keyframes roland-product-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.has-infinite-scroll .roland-category-products .woocommerce-pagination {
    display: none;
}

.roland-category-products .woocommerce-pagination {
    padding-top: 16px;
    margin-top: 0 !important;
}

.roland-category-products .woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.roland-category-products .woocommerce-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
    border: 0;
    float: none;
}

.roland-category-products .woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    border-top: 0;
    border-right: 0;
    border-bottom: 2px solid transparent;
    border-left: 0;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-body-2);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    text-decoration: none;
}

.roland-category-products .woocommerce-pagination .page-numbers.current {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    background-color: rgba(10, 71, 52, 0.2);
}

.roland-category-products .woocommerce-pagination a.page-numbers:hover,
.roland-category-products .woocommerce-pagination a.page-numbers:focus {
    color: var(--color-primary);
    text-decoration: none;
    background-color: rgba(10, 71, 52, 0.1);
    border-bottom-color: var(--color-primary);
}

.roland-category-filter-error {
    margin: 0 0 16px;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: var(--text-small);
}

.roland-category-listing-tabs__best-sellers:empty {
    display: none;
}

.roland-category-best-sellers {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
}

.roland-category-best-sellers__title {
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--text-h3);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
}

.roland-category-best-sellers__grid {
    display: grid;
    gap: 16px;
}

.roland-category-best-sellers__item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) max-content;
    gap: 12px;
    align-items: center;
    min-width: 0;
    color: var(--color-text);
    text-decoration: none;
    background: transparent;
}

.roland-category-best-sellers__media {
    display: grid;
    place-items: center;
    width: 64px;
    height: 56px;
    overflow: hidden;
}

.roland-category-best-sellers__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roland-category-best-sellers__meta {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.roland-category-best-sellers__category {
    color: var(--color-gray);
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    text-transform: uppercase;
}

.roland-category-best-sellers__name {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.roland-category-best-sellers__index {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

.roland-category-best-sellers__price {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-h3);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    text-align: right;
    white-space: nowrap;
}

.roland-category-best-sellers__item:hover .roland-category-best-sellers__name,
.roland-category-best-sellers__item:focus .roland-category-best-sellers__name {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .roland-category-best-sellers__item {
        grid-template-columns: 64px minmax(0, 1fr);
        grid-template-areas:
            "media meta"
            "media price";
        align-items: start;
        column-gap: 12px;
        row-gap: 6px;
    }

    .roland-category-best-sellers__media {
        grid-area: media;
        align-self: center;
    }

    .roland-category-best-sellers__meta {
        grid-area: meta;
    }

    .roland-category-best-sellers__price {
        grid-area: price;
        justify-self: start;
        text-align: left;
    }
}

.roland-recently-viewed-products {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.roland-recently-viewed-products__title {
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--text-h3);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
}

.roland-recently-viewed-products__carousel {
    position: relative;
    overflow: visible;
}

.roland-category-products ul.products.roland-recently-viewed-products__list {
    display: flex !important;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.roland-category-products ul.products.roland-recently-viewed-products__list::-webkit-scrollbar {
    display: none;
}

.roland-category-products ul.products li.product.roland-recently-viewed-products__item {
    flex: 0 0 clamp(240px, 80%, 273px);
    min-width: 0;
    height: 204px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.roland-recently-viewed-products__item .roland-category-product-card__body {
    grid-template-rows: minmax(0, 1fr) auto auto;
}

.roland-recently-viewed-products__item .roland-category-product-card__title {
    -webkit-line-clamp: 2;
}

.roland-recently-viewed-products__item .roland-category-product-card__price {
    align-self: end;
    min-height: 24px;
}

.roland-recently-viewed-products__item .roland-category-product-card__button {
    align-self: end;
}

.woocommerce ul.products.roland-recently-viewed-products__list::before,
.woocommerce ul.products.roland-recently-viewed-products__list::after {
    content: none;
    display: none;
}

.roland-recently-viewed-products__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(10, 71, 52, 0.58);
    transform: translateY(-50%);
    cursor: pointer;
}

.roland-recently-viewed-products__arrow:hover,
.roland-recently-viewed-products__arrow:focus,
.roland-recently-viewed-products__arrow:active {
    color: var(--color-white);
    background: rgba(10, 71, 52, 0.58);
}

.roland-recently-viewed-products__arrow--prev {
    left: -24px;
    display: none;
    transform: translateY(-50%) rotate(180deg);
}

.roland-recently-viewed-products__arrow--next {
    right: -24px;
}

.roland-recently-viewed-products__carousel.is-at-end .roland-recently-viewed-products__arrow--prev {
    display: flex;
}

.roland-recently-viewed-products__carousel.is-at-end .roland-recently-viewed-products__arrow--next {
    display: none;
}

.roland-recently-viewed-products__arrow svg {
    width: 36px;
    height: 24px;
    margin-left: -8px;
}

.roland-recently-viewed-products__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    margin-top: 8px;
}

.roland-recently-viewed-products__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: color-mix(in srgb, var(--color-primary) 20%, transparent);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.roland-recently-viewed-products__dot.is-active {
    background: var(--color-primary);
    transform: scale(1.15);
}

.roland-ads {
    margin: 0 0 24px;
}

.roland-ads__carousel {
    position: relative;
    overflow: visible;
}

.roland-ads__track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.roland-ads__track::-webkit-scrollbar {
    display: none;
}

.roland-ads__item {
    position: relative;
    flex: 0 0 clamp(240px, 80%, 273px);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.roland-ads__media {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    background: var(--color-background);
    aspect-ratio: 273 / 124;
}

.roland-ads__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roland-ads__slogan {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: -webkit-box;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 65px);
    overflow: hidden;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-body);
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    pointer-events: none;
}

.roland-ads__button {
    position: absolute;
    left: 16px;
    right: auto;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 107px;
    max-width: calc(100% - 32px);
    height: 33px;
    padding: 0 8px;
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background: var(--color-accent);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.roland-ads__button-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.roland-ads__button:hover {
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.roland-ads__button::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 8px;
    flex: 0 0 auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.roland-ads__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(10, 71, 52, 0.58);
    transform: translateY(-50%);
    cursor: pointer;
}

.roland-ads__arrow:hover,
.roland-ads__arrow:focus,
.roland-ads__arrow:active {
    color: var(--color-white);
    background: rgba(10, 71, 52, 0.58);
}

.roland-ads__arrow--prev {
    left: -24px;
    display: none;
    transform: translateY(-50%) rotate(180deg);
}

.roland-ads__arrow--next {
    right: -24px;
}

.roland-ads__carousel.is-at-end .roland-ads__arrow--prev {
    display: flex;
}

.roland-ads__carousel.is-at-end .roland-ads__arrow--next {
    display: none;
}

.roland-ads__arrow svg {
    width: 36px;
    height: 24px;
    margin-left: -8px;
}

.roland-ads__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    margin-top: 8px;
}

.roland-ads__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: color-mix(in srgb, var(--color-primary) 20%, transparent);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.roland-ads__dot.is-active {
    background: var(--color-primary);
    transform: scale(1.15);
}

.roland-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    gap: 8px;
}

.roland-category-card {
    width: 100%;
    height: 145px;
    overflow: hidden;
    border-radius: 5px;
}

.roland-category-card__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--color-white);
    text-decoration: none;
    background: var(--color-white);
    border-radius: 5px;
}

.roland-category-card__link:hover,
.roland-category-card__link:focus {
    color: var(--color-white);
}

.roland-category-card__media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.roland-category-card__image {
    display: block;
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.roland-category-card__title {
    position: absolute;
    bottom: 50%;
    left: 50%;
    z-index: 1;
    display: inline;
    width: fit-content;
    max-width: 80%;
    padding: 6px;
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    background: var(--color-primary);
    border-radius: 4px;
    transform: translate(-50%, 50%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.roland-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roland-subcategory-card {
    height: 62px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    box-sizing: border-box;
}

.roland-subcategory-card__link {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    color: var(--color-primary);
    border-radius: 5px;
}

.roland-subcategory-card__link:hover,
.roland-subcategory-card__link:focus {
    color: var(--color-primary);
}

.roland-subcategory-card__media {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 100%;
    box-sizing: border-box;
    padding: 8px;
    overflow: hidden;
}

.roland-subcategory-card__image {
    display: block;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.roland-subcategory-card__title {
    position: static;
    display: block;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    padding: 8px 10px 8px 0;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: var(--text-small);
    line-height: 1.2;
    text-align: left;
    text-shadow: none;
    overflow-wrap: anywhere;
    background: transparent;
    border-radius: 0;
    transform: none;
}

.roland-ordering {
    width: 100%;
}

.roland-ordering-tabs--desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.roland-ordering-mobile {
    display: none;
    position: relative;
    width: 100%;
    margin: 0 0 20px;
}

.roland-ordering-mobile__toggle {
    width: 100%;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background-color: var(--color-white);
    color: var(--color-text);
    border: 1.5px solid var(--color-primary);
    border-radius: 5px;
    font: inherit;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    text-align: left;
}

.roland-ordering-mobile.is-open .roland-ordering-mobile__toggle {
    border-bottom: 0;
}

.roland-ordering-mobile.is-open .roland-ordering-mobile__toggle {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.roland-ordering-mobile__toggle-left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.roland-ordering-mobile__icon,
.roland-ordering-mobile__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.roland-ordering-mobile__chevron {
    transition: transform 0.2s ease;
}

.roland-ordering-mobile.is-open .roland-ordering-mobile__chevron {
    transform: rotate(90deg);
}

.roland-ordering-mobile__menu {
    background-color: var(--color-white);
    border: 1.5px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 5px 5px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.roland-ordering-mobile.is-open .roland-ordering-mobile__menu {
    display: flex;
}

.roland-ordering-mobile__menu[hidden] {
    display: none !important;
}

.roland-ordering-mobile__item {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    text-decoration: none;
}

.roland-ordering-mobile__item.is-active {
    background-color: rgba(10, 71, 52, 0.2);
}

@media (max-width: 767px) {
    .roland-ordering-tabs--desktop {
        display: none;
    }

    .roland-ordering-mobile {
        display: block;
    }
}

@media (min-width: 560px) {
    .roland-subcategory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .roland-category-view,
    .roland-category-page--index {
        padding-bottom: 36px;
    }

    .roland-category-layout__breadcrumb {
        grid-column: 2;
        grid-row: 1;
    }

    .roland-category-layout__sidebar {
        display: block;
        grid-column: 1;
        grid-row: 2;
    }

    .roland-category-layout__main {
        grid-column: 2;
        grid-row: 2;
    }

    .roland-category-layout--index {
        grid-template-columns: var(--layout-sidebar) var(--layout-content);
    }

    .roland-category-layout--index .roland-category-layout__breadcrumb,
    .roland-category-layout--index .roland-category-layout__main {
        grid-column: 2;
    }

    .roland-category-layout__breadcrumb .woocommerce-breadcrumb {
        margin-bottom: 0;
    }

    .roland-category-grid {
        grid-template-columns: repeat(2, minmax(0, 440px));
        gap: 16px;
    }

    .roland-category-card {
        height: 213px;
    }

    .roland-subcategory-grid {
        grid-template-columns: repeat(3, minmax(0, 206px));
    }

    .roland-subcategory-card {
        height: 156px;
    }

    .roland-subcategory-card__link {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 112px) 44px;
    }

    .roland-subcategory-card__media {
        width: 100%;
        height: 112px;
        min-height: 0;
        padding: 16px 16px 8px;
    }

    .roland-subcategory-card__title {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0 12px;
        font-size: var(--text-body);
        text-align: center;
    }

    .roland-category-best-sellers {
        margin-bottom: 32px;
    }

    .roland-category-best-sellers__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .roland-category-best-sellers__item {
        grid-template-columns: 72px minmax(0, 1fr) max-content;
    }

    .roland-category-best-sellers__media {
        width: 72px;
        height: 64px;
    }

    .roland-ads {
        margin-bottom: 32px;
    }

    .roland-ads__track {
        gap: 16px;
    }

    .roland-ads__item {
        flex-basis: min(80%, 753px);
    }

    .roland-ads__media {
        aspect-ratio: 753 / 273;
    }

    .roland-ads__slogan {
        top: 24px;
        left: 24px;
        max-width: calc(100% - 48px);
        max-height: calc(100% - 99px);
        font-size: var(--text-h3);
    }

    .roland-ads__button {
        left: 24px;
        right: auto;
        bottom: 24px;
        min-width: 243px;
        max-width: calc(100% - 48px);
        height: 51px;
        padding: 0 16px;
        font-size: var(--text-body);
    }

    .roland-ads__arrow {
        color: var(--color-primary);
        background: rgba(255, 255, 255, 0.82);
    }

    .roland-ads__arrow:hover,
    .roland-ads__arrow:focus,
    .roland-ads__arrow:active {
        color: var(--color-primary);
        background: rgba(255, 255, 255, 0.82);
    }

    .roland-category-filter-tabs {
        grid-template-columns: repeat(auto-fit, minmax(0, 216px));
        max-width: calc((216px * 4) + (8px * 3));
    }

    .roland-category-filter-tabs__item {
        width: 100%;
        min-height: 56px;
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .roland-category-filter-tabs__media {
        width: 48px;
        height: 44px;
    }

    .roland-category-filter-tabs__item:first-child {
        grid-column: auto;
        width: 100%;
        min-height: 56px;
    }

    .roland-category-listing-tabs__products,
    .roland-category-products-frame {
        padding-bottom: 36px;
    }

    .roland-category-products ul.products.roland-recently-viewed-products__list {
        display: grid !important;
        grid-template-columns: repeat(4, 213px) !important;
        gap: 12px;
        overflow: visible;
        scroll-snap-type: none;
    }

    .roland-recently-viewed-products__arrow,
    .roland-recently-viewed-products__dots {
        display: none !important;
    }

    .roland-category-products ul.products {
        grid-template-columns: repeat(4, 213px) !important;
        gap: 12px;
    }

    .roland-category-products ul.products li.product.roland-category-product-card {
        grid-template-columns: 1fr;
        grid-template-rows: 160px minmax(0, 1fr);
        width: 213px !important;
        height: auto;
        min-height: 320px;
        padding: 8px 4px;
    }

    .roland-category-product-card__body {
        grid-template-rows: minmax(min-content, 1fr) auto auto;
        align-content: stretch;
        justify-items: center;
        height: 100%;
    }

    .roland-category-product-card__title {
        display: -webkit-box;
        overflow: hidden;
        font-weight: var(--font-weight-bold);
        text-align: center;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .roland-category-product-card__price {
        align-self: auto;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .roland-category-product-card__button {
        align-self: auto;
    }
}

@media (min-width: 1080px) {
    .roland-subcategory-grid {
        grid-template-columns: repeat(4, 206px);
    }
}
