.plustik-catalog-archive .site-content {
    background:
        radial-gradient(circle at 8% 4%, rgba(0, 139, 222, 0.065), transparent 22rem),
        linear-gradient(180deg, var(--plustik-white), #fbfdfb 42%, var(--plustik-white));
}

.plustik-catalog-archive .content-area {
    float: none;
    width: 100%;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.plustik-catalog-archive .site-main {
    margin-bottom: 0;
}

.plustik-catalog-archive .storefront-breadcrumb {
    margin-bottom: 1rem;
}

.plustik-catalog-archive .woocommerce-products-header {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-bottom: 1rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(11, 128, 67, 0.14);
    border-radius: var(--plustik-radius-xl);
    background:
        linear-gradient(115deg, rgba(234, 248, 239, 0.96), rgba(232, 246, 253, 0.82)),
        var(--plustik-white);
    text-align: start;
}

.plustik-catalog-archive .woocommerce-products-header::before,
.plustik-catalog-archive .woocommerce-products-header::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
}

.plustik-catalog-archive .woocommerce-products-header::before {
    inset-block-start: -5rem;
    inset-inline-end: -2rem;
    width: 12rem;
    height: 12rem;
    border: 2rem solid rgba(92, 180, 26, 0.09);
}

.plustik-catalog-archive .woocommerce-products-header::after {
    inset-block-end: -3.5rem;
    inset-inline-start: 18%;
    width: 7rem;
    height: 7rem;
    background: rgba(0, 139, 222, 0.06);
}

.plustik-catalog-archive .woocommerce-products-header__title {
    max-width: 44rem;
    margin: 0;
    font-size: clamp(2rem, 1.55rem + 1.8vw, 3.25rem);
}

.plustik-catalog-intro,
.plustik-catalog-archive .term-description {
    position: relative;
    max-width: 42rem;
}

.plustik-catalog-intro,
.plustik-catalog-archive .term-description p {
    margin: 0.75rem 0 0;
    color: var(--plustik-muted);
    font-size: var(--plustik-font-size-lead);
    line-height: 1.9;
}

.plustik-catalog-categories {
    margin-bottom: 1rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border: 1px solid var(--plustik-border);
    border-radius: var(--plustik-radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--plustik-shadow-soft);
}

.plustik-catalog-categories__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.plustik-catalog-categories__eyebrow {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--plustik-primary);
    font-size: 0.75rem;
    font-weight: var(--plustik-weight-strong);
}

.plustik-catalog-categories h2 {
    margin: 0;
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
}

.plustik-catalog-categories__header p {
    max-width: 27rem;
    margin: 0;
    color: var(--plustik-muted);
    font-size: 0.875rem;
}

.plustik-catalog-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.625rem;
}

.plustik-catalog-categories__item {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--plustik-border);
    border-radius: var(--plustik-radius-lg);
    background: var(--plustik-white);
    color: var(--plustik-ink);
    font-size: 0.875rem;
    font-weight: var(--plustik-weight-bold);
    line-height: 1.5;
    text-decoration: none;
    transition:
        border-color var(--plustik-motion-fast) var(--plustik-easing),
        box-shadow var(--plustik-motion-fast) var(--plustik-easing),
        transform var(--plustik-motion-fast) var(--plustik-easing);
}

.plustik-catalog-categories__item > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.plustik-catalog-categories__item:hover,
.plustik-catalog-categories__item:focus {
    border-color: rgba(0, 107, 159, 0.42);
    color: var(--plustik-ink);
    box-shadow: 0 0.4rem 1rem rgba(0, 107, 159, 0.09);
    transform: translateY(-1px);
}

.plustik-catalog-categories__item.is-current {
    border-color: rgba(0, 107, 159, 0.38);
    background: var(--plustik-brand-blue-soft);
    color: var(--plustik-link-hover);
}

.plustik-catalog-categories__item small {
    flex: 0 0 auto;
    color: var(--plustik-muted);
    font-size: 0.6875rem;
    font-weight: var(--plustik-weight-bold);
}

.plustik-catalog-categories__item .plustik-icon {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--plustik-link);
}

.plustik-catalog-archive .storefront-sorting {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--plustik-border);
    border-radius: var(--plustik-radius-lg);
    background: var(--plustik-white);
    box-shadow: 0 0.35rem 1rem rgba(13, 30, 14, 0.04);
}

.plustik-catalog-archive .storefront-sorting::before,
.plustik-catalog-archive .storefront-sorting::after {
    display: none;
}

.plustik-catalog-archive .woocommerce-ordering,
.plustik-catalog-archive .woocommerce-result-count {
    float: none;
    margin: 0;
}

.plustik-catalog-archive .woocommerce-ordering {
    order: 2;
}

.plustik-catalog-archive .woocommerce-result-count {
    order: 1;
    color: var(--plustik-muted);
    font-size: 0.875rem;
}

.plustik-catalog-archive .woocommerce-ordering select {
    min-width: min(17rem, 100%);
    background-color: var(--plustik-surface);
    font-size: 0.875rem;
}

.plustik-catalog-archive .site-main ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
}

.plustik-catalog-archive .site-main ul.products::before,
.plustik-catalog-archive .site-main ul.products::after {
    display: none;
}

.plustik-catalog-archive .site-main ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    padding-bottom: 1rem;
    border-radius: var(--plustik-radius-xl);
    text-align: start;
}

/*
 * Storefront's full-width columns selector has greater specificity than the
 * generic card primitive. Reset its percentage width inside the CSS Grid.
 */
.plustik-catalog-archive.storefront-full-width-content .site-main ul.products[class*="columns-"] li.product {
    clear: none;
    float: none;
    width: 100%;
    margin: 0;
}

.plustik-catalog-archive .site-main ul.products li.product img {
    padding: 0.625rem;
    background: linear-gradient(145deg, #f8fbf9, var(--plustik-primary-soft));
    object-fit: contain;
}

.plustik-catalog-product__meta {
    display: flex;
    min-height: 1.75rem;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    margin: 0.875rem 1rem 0;
}

.plustik-catalog-product__category,
.plustik-catalog-product__type {
    display: inline-flex;
    min-height: 1.5rem;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--plustik-radius-pill);
    font-size: 0.75rem;
    font-weight: var(--plustik-weight-regular);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.plustik-catalog-product__category {
    min-width: 0;
    max-width: 100%;
    background: var(--plustik-primary-soft);
    color: var(--plustik-primary-hover);
}

.plustik-catalog-product__type {
    flex: 0 0 auto;
    border: 1px solid rgba(0, 107, 159, 0.16);
    background: var(--plustik-brand-blue-soft);
    color: var(--plustik-link);
    font-weight: var(--plustik-weight-bold);
}

.plustik-catalog-archive .site-main ul.products li.product .woocommerce-loop-product__title {
    min-height: 2.8em;
    margin-top: 0.625rem;
    color: var(--plustik-ink);
    font-size: 1.0625rem;
    font-weight: var(--plustik-weight-strong);
    line-height: 1.4;
}

.plustik-catalog-archive .site-main ul.products li.product .price {
    display: flex;
    min-height: 4rem;
    flex-wrap: wrap;
    align-content: center;
    align-items: baseline;
    gap: 0.25rem 0.5rem;
    margin-top: auto;
    padding: 0.625rem 0.75rem;
    border: 1px solid rgba(11, 128, 67, 0.11);
    border-radius: var(--plustik-radius-md);
    background: linear-gradient(145deg, rgba(234, 248, 239, 0.68), rgba(255, 255, 255, 0.98));
    color: var(--plustik-ink);
    font-size: 1.125rem;
    font-weight: var(--plustik-weight-strong);
    line-height: 1.3;
    text-align: start;
}

.plustik-catalog-archive .site-main ul.products li.product .price .woocommerce-Price-amount {
    color: inherit;
    white-space: nowrap;
}

.plustik-catalog-archive .site-main ul.products li.product .price .woocommerce-Price-currencySymbol {
    color: var(--plustik-muted);
    font-size: 0.72em;
    font-weight: var(--plustik-weight-bold);
}

.plustik-catalog-archive .site-main ul.products li.product .price del,
.plustik-catalog-archive .site-main ul.products li.product .price ins {
    display: inline-flex;
    align-items: baseline;
    margin: 0;
    line-height: 1.2;
}

.plustik-catalog-archive .site-main ul.products li.product .price del {
    order: 2;
    color: var(--plustik-muted);
    font-size: 0.75rem;
    opacity: 0.72;
}

.plustik-catalog-archive .site-main ul.products li.product .price ins {
    order: 1;
    color: var(--plustik-primary-hover);
    font-size: 1.125rem;
    font-weight: var(--plustik-weight-strong);
}

.plustik-catalog-archive .site-main ul.products li.product.product-type-variable .price {
    color: var(--plustik-link-hover);
}

.plustik-catalog-archive .site-main ul.products li.product .plustik-catalog-product__view {
    align-self: stretch;
    justify-content: space-between;
    margin: 0.875rem 1rem 0;
    white-space: normal;
}

.plustik-catalog-archive .site-main ul.products li.product .plustik-catalog-product__view .plustik-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.plustik-catalog-archive .site-main ul.products li.product .onsale {
    background: var(--plustik-warning-soft);
    color: var(--plustik-warning);
    font-weight: var(--plustik-weight-bold);
}

.plustik-catalog-archive > .woocommerce-pagination,
.plustik-catalog-archive .site-main > .woocommerce-pagination {
    margin-block: 1.5rem 0;
}

@media (max-width: 64rem) {
    .plustik-catalog-archive .site-main ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plustik-catalog-product__meta {
        min-height: 3.5rem;
        align-content: center;
    }
}

@media (max-width: 47.9375rem) {
    .plustik-catalog-archive .woocommerce-products-header {
        padding: 1.5rem;
    }

    .plustik-catalog-categories__header {
        align-items: start;
        flex-direction: column;
        gap: 0.375rem;
    }

    .plustik-catalog-categories__grid,
    .plustik-catalog-archive .site-main ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plustik-catalog-archive .storefront-sorting {
        align-items: stretch;
        flex-direction: column;
        gap: 0.625rem;
    }

    .plustik-catalog-archive .woocommerce-ordering {
        width: 100%;
    }

    .plustik-catalog-archive .woocommerce-ordering select {
        width: 100%;
    }

    .plustik-catalog-product__meta {
        margin-inline: 0.75rem;
    }

    .plustik-catalog-archive .site-main ul.products li.product .woocommerce-loop-product__title,
    .plustik-catalog-archive .site-main ul.products li.product .price {
        margin-inline: 0.75rem;
    }

    .plustik-catalog-archive .site-main ul.products li.product .woocommerce-loop-product__title {
        font-size: 1rem;
    }

    .plustik-catalog-archive .site-main ul.products li.product .price,
    .plustik-catalog-archive .site-main ul.products li.product .price ins {
        font-size: 1rem;
    }

    .plustik-catalog-archive .site-main ul.products li.product .price del {
        font-size: 0.6875rem;
    }

    .plustik-catalog-archive .site-main ul.products li.product .plustik-catalog-product__view {
        margin-inline: 0.75rem;
    }
}

@media (max-width: 22rem) {
    .plustik-catalog-categories__grid,
    .plustik-catalog-archive .site-main ul.products {
        grid-template-columns: minmax(0, 1fr);
    }

    .plustik-catalog-product__meta {
        min-height: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .plustik-catalog-categories__item {
        transform: none;
    }
}
