body.hyperdaf-commerce-product-archive #primary,
body.hyperdaf-commerce-product-archive .site-main {
    width: 100%;
    max-width: none;
}

body.hyperdaf-commerce-product-archive .woocommerce-products-header,
body.hyperdaf-commerce-product-archive .woocommerce-shop-loop-header,
body.hyperdaf-commerce-product-archive .hdc-product-archive {
    width: min(
        calc(100% - (var(--hdc-archive-page-gutter, 24px) * 2)),
        var(--hdc-archive-page-width, 1800px)
    );
    margin-inline: auto;
}

.hdc-product-archive {
    clear: both;
    width: 100%;
}

body.woocommerce-shop .woocommerce-products-header,
body.woocommerce-shop .woocommerce-shop-loop-header {
    display: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

body.woocommerce-shop .hdc-product-archive {
    margin-block-start: 0;
}


.hdc-archive-layout {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.hdc-product-archive.hdc-product-archive--has-sidebar > .hdc-archive-layout {
    grid-template-columns:
        minmax(var(--hdc-archive-sidebar-min, 220px), var(--hdc-archive-sidebar-max, 250px))
        minmax(0, 1fr);
    gap: var(--hdc-archive-layout-gap, 28px);
}

.hdc-product-archive.hdc-product-archive--no-sidebar > .hdc-archive-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.hdc-product-archive.hdc-product-archive--no-sidebar .hdc-archive-main {
    grid-column: 1 / -1;
}

.hdc-archive-sidebar-column {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
}

.hdc-archive-sidebar-column > .hdc-archive-filters,
.hdc-archive-sidebar-column > .hdf-context-sidebar {
    min-width: 0;
}

.hdc-archive-sidebar-column > .hdf-context-sidebar {
    flex: 1 1 auto;
}

.hdc-archive-main {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.hdc-archive-filter-toggle {
    display: none;
    width: 100%;
    min-height: 44px;
    margin-block-end: 14px;
    border: 1px solid var(--hdc-border);
    border-radius: 4px;
    background: var(--hdc-surface);
    color: var(--hdc-text);
    font-family: var(--hdc-font-ui);
    font-weight: 700;
}

.hdc-archive-filters {
    border: 1px solid var(--hdc-border);
    border-radius: 5px;
    background: var(--hdc-surface);
}

.hdc-archive-filters__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    border-bottom: 1px solid var(--hdc-border);
}

.hdc-archive-filters__heading h2 {
    margin: 0;
    color: var(--hdc-text);
    font-family: var(--hdc-font-heading);
    font-size: 1rem;
}

.hdc-archive-filters__heading a {
    color: var(--hdc-primary-hover);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.hdc-archive-filters__heading a:hover,
.hdc-archive-filters__heading a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hdc-filter-group {
    border-bottom: 1px solid var(--hdc-border);
}

.hdc-filter-group__toggle {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px;
    border: 0;
    background: transparent;
    color: var(--hdc-text);
    font-family: var(--hdc-font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: start;
    cursor: pointer;
}

.hdc-filter-group__toggle > span:last-child {
    transition: transform var(--hdc-transition);
}

.hdc-filter-group.is-open .hdc-filter-group__toggle > span:last-child {
    transform: rotate(180deg);
}

.hdc-filter-group__body {
    display: none;
    padding: 0 15px 14px;
}

.hdc-filter-group.is-open .hdc-filter-group__body {
    display: grid;
    gap: 8px;
}

.hdc-filter-choice {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    color: var(--hdc-muted-text);
    font-size: 0.76rem;
    line-height: 1.25;
    cursor: pointer;
}

.hdc-filter-choice input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--hdc-primary);
}

.hdc-filter-choice small {
    color: var(--hdc-muted-text);
    font-size: 0.68rem;
}

.hdc-filter-choice:hover span,
.hdc-filter-choice:focus-within span {
    color: var(--hdc-text);
}

.hdc-filter-term-list {
    display: grid;
    gap: 8px;
}

.hdc-filter-term-list .is-extra,
.hdc-filter-tags .is-extra {
    display: none;
}

.hdc-filter-term-list.is-expanded .is-extra,
.hdc-filter-tags.is-expanded .is-extra {
    display: grid;
}

.hdc-filter-tags.is-expanded .is-extra {
    display: inline-flex;
}

.hdc-filter-more {
    display: inline-flex;
    width: max-content;
    min-height: 28px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hdc-primary-hover);
    font-family: var(--hdc-font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: start;
    cursor: pointer;
}

.hdc-filter-more:hover,
.hdc-filter-more:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hdc-filter-more [data-hdc-less-label] {
    display: none;
}

.is-expanded > .hdc-filter-more [data-hdc-more-label] {
    display: none;
}

.is-expanded > .hdc-filter-more [data-hdc-less-label] {
    display: inline;
}

.hdc-filter-attributes {
    gap: 14px;
}

.hdc-filter-attribute {
    display: grid;
    gap: 8px;
}

.hdc-filter-attribute + .hdc-filter-attribute {
    padding-block-start: 12px;
    border-block-start: 1px solid var(--hdc-border);
}

.hdc-filter-attribute h3 {
    margin: 0;
    color: var(--hdc-text);
    font-family: var(--hdc-font-ui);
    font-size: 0.74rem;
    font-weight: 700;
}

.hdc-filter-rating span {
    color: var(--hdc-primary);
    letter-spacing: 1px;
}

.hdc-filter-price {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.hdc-filter-price__values,
.hdc-filter-price__inputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hdc-filter-price__values {
    color: var(--hdc-muted-text);
    font-size: 0.7rem;
}

.hdc-filter-price__values .woocommerce-Price-amount {
    color: inherit;
    font-weight: 650;
}

.hdc-filter-price__ranges {
    position: relative;
    height: 24px;
}

.hdc-filter-price__ranges::before {
    position: absolute;
    inset: 10px 0 auto;
    height: 3px;
    border-radius: 3px;
    background: var(--hdc-border);
    content: "";
}

.hdc-filter-price__ranges input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.hdc-filter-price__ranges input[type="range"]::-webkit-slider-runnable-track {
    height: 3px;
    background: transparent;
}

.hdc-filter-price__ranges input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-block-start: -6px;
    border: 2px solid var(--hdc-surface);
    border-radius: 50%;
    appearance: none;
    background: var(--hdc-primary);
    cursor: pointer;
    pointer-events: auto;
}

.hdc-filter-price__ranges input[type="range"]::-moz-range-track {
    height: 3px;
    background: transparent;
}

.hdc-filter-price__ranges input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 2px solid var(--hdc-surface);
    border-radius: 50%;
    background: var(--hdc-primary);
    cursor: pointer;
    pointer-events: auto;
}

.hdc-filter-price__inputs label {
    display: grid;
    min-width: 0;
    flex: 1 1 0;
    gap: 5px;
}

.hdc-filter-price__inputs label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.hdc-filter-price__inputs input[type="number"] {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding-inline: 9px;
    border: 1px solid var(--hdc-border);
    border-radius: 4px;
    background: var(--hdc-surface);
    color: var(--hdc-text);
}

.hdc-filter-tags {
    display: flex;
    flex-wrap: wrap;
}

.hdc-filter-tags label {
    position: relative;
    cursor: pointer;
}

.hdc-filter-tags input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.hdc-filter-tags span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 8px;
    border: 1px solid var(--hdc-border);
    border-radius: 4px;
    color: var(--hdc-muted-text);
    font-size: 0.68rem;
}

.hdc-filter-tags input:checked + span,
.hdc-filter-tags input:focus-visible + span {
    border-color: var(--hdc-primary);
    background: var(--hdc-primary);
    color: var(--hdc-button-text);
}

.hdc-archive-filter-form__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 15px;
}

.hdc-archive-filter-form__actions .button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 4px;
    font-family: var(--hdc-font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.hdc-filter-apply {
    border: 1px solid var(--hdc-primary);
    background: var(--hdc-primary);
    color: var(--hdc-button-text);
}

.hdc-filter-apply:hover,
.hdc-filter-apply:focus-visible {
    border-color: var(--hdc-primary-hover);
    background: var(--hdc-primary-hover);
    color: var(--hdc-button-hover-text);
}

.hdc-filter-clear {
    border: 1px solid var(--hdc-border);
    background: var(--hdc-surface);
    color: var(--hdc-text);
}

.hdc-filter-clear:hover,
.hdc-filter-clear:focus-visible {
    border-color: var(--hdc-primary);
    color: var(--hdc-primary-hover);
}


.hdc-product-archive--empty .woocommerce-info {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--hdc-border);
    border-radius: 5px;
    background: var(--hdc-subtle);
    color: var(--hdc-text);
}

.hdc-archive-toolbar {
    position: relative;
    display: grid;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 58px;
    grid-template-columns: auto minmax(90px, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-block-end: 18px;
    padding: 8px 12px;
    border: 1px solid var(--hdc-flat-border);
    border-radius: min(var(--hdc-radius), 10px);
    background: var(--hdc-flat-surface);
}

.hdc-archive-toolbar__start,
.hdc-archive-toolbar__center,
.hdc-archive-toolbar__end {
    display: flex;
    min-width: 0;
    align-items: center;
}

.hdc-archive-toolbar__center {
    justify-content: center;
    text-align: center;
}

.hdc-archive-toolbar__end {
    justify-content: flex-end;
    gap: 15px;
}

.hdc-archive-view-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, 38px);
    gap: 5px;
}

.hdc-archive-view-toggle button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 1px solid var(--hdc-flat-border);
    border-radius: 8px;
    background: var(--hdc-surface);
    color: var(--hdc-text);
    cursor: pointer;
}

.hdc-archive-view-toggle button:hover,
.hdc-archive-view-toggle button:focus-visible,
.hdc-archive-view-toggle button.is-active {
    border-color: var(--hdc-primary);
    background: color-mix(in srgb, var(--hdc-primary) 14%, var(--hdc-surface));
    color: var(--hdc-text);
}

.hdc-archive-result-count {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    padding: 0 11px;
    border: 1px solid var(--hdc-border);
    border-radius: 8px;
    background: var(--hdc-surface);
    color: var(--hdc-text);
    font-family: var(--hdc-font-ui);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hdc-archive-control-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center;
    color: var(--hdc-text);
}

.hdc-archive-control-icon .hdc-icon,
.hdc-archive-view-toggle .hdc-icon {
    width: 18px;
    height: 18px;
    color: var(--hdc-text);
}

.hdc-archive-ordering .woocommerce-ordering {
    float: none;
    margin: 0;
}

.hdc-archive-select-control {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hdc-archive-select-control > .hdc-archive-control-icon {
    position: absolute;
    inset-inline-start: 11px;
    z-index: 2;
    pointer-events: none;
}

.hdc-archive-ordering select,
.hdc-archive-page-size select {
    height: 40px;
    border: 1px solid var(--hdc-flat-border);
    border-radius: 8px;
    background-color: var(--hdc-surface);
    color: var(--hdc-text);
    font-family: var(--hdc-font-ui);
    font-size: 0.78rem;
    font-weight: 600;
}

.hdc-archive-ordering select {
    min-width: 205px;
    padding-inline: 38px 34px;
}

.hdc-archive-page-size,
.hdc-archive-page-size label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.hdc-archive-page-size .hdc-archive-select-control {
    gap: 8px;
}

.hdc-archive-page-size .hdc-archive-control-icon {
    position: static;
    inset: auto;
    z-index: auto;
    pointer-events: none;
}

.hdc-archive-page-size__label {
    color: var(--hdc-muted-text);
    font-family: var(--hdc-font-ui);
    font-size: 0.76rem;
    white-space: nowrap;
}

.hdc-archive-page-size select {
    min-width: 76px;
    padding-inline: 10px 28px;
}

.hyperdaf-commerce-product-archive .hdc-archive-main ul.products {
    display: grid;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    column-gap: var(--hdc-archive-column-gap, 0);
    row-gap: var(--hdc-archive-row-gap, 5px);
}

.hyperdaf-commerce-product-archive .hdc-archive-main ul.products::before,
.hyperdaf-commerce-product-archive .hdc-archive-main ul.products::after {
    display: none;
}

.hyperdaf-commerce-product-archive .hdc-archive-main ul.products li.product {
    float: none;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.hdc-archive-desktop-3 .hdc-archive-main ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hdc-archive-desktop-4 .hdc-archive-main ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hdc-archive-desktop-5 .hdc-archive-main ul.products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products {
    grid-template-columns: 1fr;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card {
    display: grid;
    min-height: clamp(138px, 14vw, 168px);
    grid-template-columns: minmax(156px, 19%) minmax(0, 1fr);
    grid-template-areas:
        "media category"
        "media main";
    align-items: stretch;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__category {
    grid-area: category;
    display: flex;
    align-items: center;
    padding: 10px 18px 0;
    color: var(--hdc-card-category-color, #374151);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__category-default {
    display: none;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__category-structured {
    display: inline-flex;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__category-parent {
    color: var(--hdc-muted-text);
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__category-child {
    color: var(--hdc-card-category-color, #111827);
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__media {
    grid-area: media;
    min-height: 100%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    border-inline-end: 1px solid color-mix(in srgb, var(--hdc-border) 76%, transparent);
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__image-link {
    box-sizing: border-box;
    height: 100%;
    padding: 10px;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__image-link img {
    object-fit: contain;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__media-actions {
    display: none;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__main {
    grid-area: main;
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: start;
    column-gap: 18px;
    row-gap: 10px;
    padding: 4px 18px 12px;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__title,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__commerce-row,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__chips,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__actions {
    grid-column: 1;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__title {
    align-self: end;
    font-size: 18px;
    line-height: 1.3;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__commerce-row {
    margin-block-start: 0;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__price-stack {
    gap: 6px;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__current-price-row {
    justify-content: flex-start;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__current-price-row .hdc-product-card__rating {
    display: none;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__actions {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-block-start: 2px;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__utility-actions {
    min-width: 30px;
    flex: 0 0 auto;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__cart {
    width: auto;
    min-width: 150px;
    height: 38px;
    padding-inline: 16px;
    justify-content: center;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__cart-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-side {
    grid-column: 2;
    grid-row: 1 / span 4;
    display: flex;
    min-width: 170px;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 2px;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-rating {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: var(--hdc-muted-text);
    font-size: 0.72rem;
    line-height: 1;
    white-space: nowrap;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-selection-button,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-product-card__quick-view {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 7px 14px;
    border: 1px solid var(--hdc-card-hover-action-background, var(--hdc-primary, #F97316));
    border-radius: 999px;
    background: var(--hdc-card-hover-action-background, var(--hdc-primary, #F97316));
    color: var(--hdc-card-hover-action-color, #FFFFFF);
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-selection-button:hover,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-selection-button:focus-visible,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-selection-button[aria-pressed="true"],
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-product-card__quick-view:hover,
.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-product-card__quick-view:focus-visible {
    border-color: var(--hdc-card-hover-action-hover-background, var(--hdc-primary-hover));
    background: var(--hdc-card-hover-action-hover-background, var(--hdc-primary-hover));
    color: var(--hdc-card-hover-action-color, #FFFFFF);
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-selection-button span:not(.hdc-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.hdc-product-archive.hdc-archive-view-list .hdc-archive-main ul.products .hdc-product-card__list-media-actions .hdc-product-card__quick-view span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
}

.hyperdaf-commerce-product-archive .woocommerce-pagination {
    margin-block-start: 24px;
}

.hyperdaf-commerce-product-archive .woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 6px;
    border: 0;
}

.hyperdaf-commerce-product-archive .woocommerce-pagination ul.page-numbers li {
    border: 0;
}

.hyperdaf-commerce-product-archive .woocommerce-pagination .page-numbers a,
.hyperdaf-commerce-product-archive .woocommerce-pagination .page-numbers span {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hdc-border);
    border-radius: 4px;
    background: var(--hdc-surface);
    color: var(--hdc-text);
}

.hyperdaf-commerce-product-archive .woocommerce-pagination .page-numbers a:hover,
.hyperdaf-commerce-product-archive .woocommerce-pagination .page-numbers a:focus-visible,
.hyperdaf-commerce-product-archive .woocommerce-pagination .page-numbers .current {
    border-color: var(--hdc-primary);
    background: var(--hdc-primary);
    color: var(--hdc-button-text);
}

.hdc-archive-view-toggle .hdc-icon {
    width: 18px;
    height: 18px;
}

.hdc-filter-group.is-open .hdc-filter-tags {
    display: flex;
    gap: 7px;
}
