/* Additional layout tweaks for Reifen Reber theme */

:where(.popular-product-card__purchase .button,
        .popular-product-card__purchase .add_to_cart_button,
        .popular-product-card__purchase .added_to_cart,
        .popular-products__button,
        .product-card__button,
        .products-archive-hero__filters-actions .button,
        .product-purchase__button,
        .product-purchase__actions .button,
        .product-recommendations__button,
        .unsere-produkte-category-card__button) {
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance:    none;
}

:where(button:focus){
    outline: none;
}

.popular-products__list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(14.375rem, 1fr));
}

.popular-product-card {
    background: var(--rr-surface-alt);
    border-radius: var(--rr-radius);
    padding: 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    justify-content: space-between;
    color: var(--rr-lighted);
}

.popular-product-card.is-active,
.popular-product-card:focus-within {
    border-color: var(--rr-primary);
    background-color: var(--rr-primary);
    color: var(--rr-background);
}

.popular-product-card.is-active svg {
    color: black;
}

@media (hover:none) {
    .popular-product-card:active svg,
    .popular-product-card:focus svg,
    .popular-product-card:focus-within svg {
        color: var(--rr-primary);
    }
}

@media (hover: hover) and (pointer: fine) {
    .popular-product-card:hover {
        border-color: var(--rr-primary);
        background-color: var(--rr-primary);
        color: var(--rr-background);
    }

    .popular-product-card:focus-within svg {
        color: black;
    }

    .popular-product-card:focus-within .popular-product-card__badge {
        color: var(--rr-background);
        border-color: var(--rr-background);
    }
}

.popular-product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-product-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.popular-product-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--rr-lighted);
    background: none;
    color: var(--rr-lighted);
    font-weight: 500;
    font-size: 1.5rem;
    width: 61px;
    height: 34px;
}

.popular-product-card.is-active .popular-product-card__badge {
    color: var(--rr-background);
    border-color: var(--rr-background);
}

.popular-product-card__title {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    width: 215px;
}

.popular-product-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    padding: 0.25rem 0.75rem;
    border: 0.09375rem solid var(--rr-primary);
    border-radius: 62.4375rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.popular-product-card__media {
    position: relative;
    border-radius: var(--rr-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-product-card__media img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.popular-product-card__placeholder {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    display: block;
}

.popular-product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
}

.popular-product-card__excerpt {
    margin: 0;
    font-size: 15px;
    line-height: 15px;
    max-width: 250px;
}

.popular-product-card__purchase {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.popular-product-card__price {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--rr-primary);
}

.popular-product-card__purchase .button,
.popular-product-card__purchase .added_to_cart,
.popular-product-card__purchase .add_to_cart_button {
    border-radius: 62.4375rem;
    padding: 0.65rem 1.5rem;
    background: var(--rr-primary);
    color: var(--rr-navy);
    -webkit-text-fill-color: var(--rr-navy);
    -webkit-appearance: none;
    appearance: none;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.popular-product-card__purchase .button:is(:hover, :focus-visible, :active),
.popular-product-card__purchase .add_to_cart_button:is(:hover, :focus-visible, :active),
.popular-product-card__purchase .added_to_cart:is(:hover, :focus-visible, :active) {
    background: var(--rr-primary-light);
    transform: translateY(-0.125rem);
    color: var(--rr-navy);
}

.popular-product-card__arrow svg {
    width: 1rem;
    color: var(--rr-primary);
}

.popular-product-card__arrow svg path {
    fill: currentColor;
}

.popular-products__cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.popular-products__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.75rem;
    border-radius: 62.4375rem;
    border: 0.125rem solid var(--rr-primary);
    color: var(--rr-primary);
    -webkit-text-fill-color: var(--rr-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.popular-products__button:is(:hover, :focus-visible, :active) {
    background: var(--rr-primary);
    color: var(--rr-navy);
    box-shadow: 0 1rem 2.5rem rgba(131, 211, 80, 0.35);
}

.popular-products__empty {
    text-align: center;
    background: rgba(29, 29, 29, 0.85);
    border: 0.0625rem dashed rgba(131, 211, 80, 0.35);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.popular-products__empty h3 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.popular-products__empty p {
    margin-bottom: 1.5rem;
    color: rgba(var(--rr-ice-rgb), 0.7);
}



.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--rr-surface-alt);
    border-radius: var(--rr-radius);
    overflow: hidden;
    transition: transform 0.25s ease;
    font-family: 'Inter';
    --card-padding: 20px;
    padding: var(--card-padding);
    gap: 20px;
}

.product-card:hover::after,
.product-card:focus-within::after {
    opacity: 1;
}

.product-card__header {
    display: flex;
    justify-content: space-between;
    height: 24px;
    align-items: center;
}

.product-card__thumbnail {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.product-card__gallery {
    position: relative;
    display: flex;
}

.product-card__gallery-slide {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-card__gallery-slide.is-active {
    display: flex;
}

.product-card__variations {
    position: absolute;
    top: var(--card-padding);
    left: var(--card-padding);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
    flex-wrap: wrap;
    align-items: center;
}

.product-card__variation-thumb {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius-xs);
    background: var(--rr-surface-alt);
    padding: 0.125rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card__variation-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-card__variation-thumb.is-active,
.product-card__variation-thumb:focus-visible,
.product-card__variation-thumb:hover {
    border-color: var(--rr-primary);
    box-shadow: 0 0 0 2px rgba(131, 211, 80, 0.2);
}

.product-card__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--rr-primary);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.product-card__gallery-nav svg {
    width: 24px;
    height: 24px;
    display: block;
}

.product-card__gallery-nav:focus-visible,
.product-card__gallery-nav:hover {
    color: rgba(var(--rr-primary-rgb), 0.8);
}

.product-card__gallery-nav--prev {
    left: 0.5rem;
}

.product-card__gallery-nav--next {
    right: 0.5rem;
}

.product-card__gallery-nav--next svg {
    transform: rotate(-90deg);
}

.product-card__gallery-nav--prev svg {
    transform: rotate(90deg);
}

.product-card__season {
    display: inline-flex;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.product-card__season-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
}

.product-card__season-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.product-card__season--dual .product-card__season-icon+.product-card__season-icon {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid var(--rr-border);
}

.product-card__thumbnail img {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.35s ease;
    margin: auto;
}

.product-card:hover .product-card__thumbnail img,
.product-card:focus-within .product-card__thumbnail img {}

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    flex-grow: 1;
    padding-bottom: 16px;
}

.product-card__body h3 {
    color: var(--rr-primary);
    font-family: 'Orbitron';
    font-weight: 600;
}

.product-card__attr {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
    color: rgba(var(--rr-text-soft-rgb), 0.75);
    font-size: 0.875rem;
}

.product-card__attr-item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.35rem;
    row-gap: 0.1rem;
    align-items: baseline;
}

.product-card__attr-label {
    font-weight: 600;
    color: var(--rr-primary);
}

.product-card__attr-values {
    color: rgba(var(--rr-text-soft-rgb), 0.9);
}

.product-card__sku {
    color: var(--rr-lighted);
    margin: 0;
    font-size: 14px;
}

.product-card__title {
    font-size: 1.25rem;
    line-height: 1.375rem;
    margin: 0;
    letter-spacing: -0.02rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__excerpt {
    color: rgba(var(--rr-text-soft-rgb), 0.7);
    margin: 0;
    line-height: 1.55;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding-top: 0.75rem;
    gap: 1rem;
    border-top: 1px solid var(--rr-border);
}

.product-card__footer {
    margin-top: 16px;
}

.product-card__price {
    font-weight: 400;
}

.product-card__stock-badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--rr-primary);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    z-index: 1;
    margin-left: auto;
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 0.75rem;
    background: var(--rr-primary);
    color: #1D1D1D;
    -webkit-text-fill-color: #1D1D1D;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: var(--rr-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.04rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.product-card__button:is(:hover, :focus-visible, :active) {
    box-shadow: 0px 8px 21px 0px rgba(142, 232, 85, 0.25), 0px -8px 21px 0px rgba(142, 232, 85, 0.25);
}

.product-card__button:focus-visible {
    outline: none;
}

.product-card__button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.feature-list li span {
    display: block;
    color: var(--rr-muted);
    font-size: 0.95rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--rr-text);
    border-radius: var(--rr-radius);
    padding: 2rem;
    box-shadow: 0 0.75rem 1.875rem rgba(29, 29, 29, 0.08);
}

.contact-card__item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-card__item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--rr-primary);
}

.contact-card__item:last-child {
    margin-bottom: 0;
}

.contact-section {
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.contact-layout__info,
.contact-layout__map {
    grid-column: span 6;
}

.contact-layout__form {
    grid-column: 1 / -1;
}

.contact-card h2 {
    margin: 0;
}

.contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-details__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-details__item svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--rr-primary);
    flex-shrink: 0;
}

.contact-details__item p {
    margin: 0.35rem 0 0;
    color: var(--rr-secondary);
    line-height: 1.6;
}

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

.contact-map {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--rr-radius-sm);
    overflow: hidden;
    box-shadow: var(--rr-shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--rr-muted);
}





.products-archive-hero {
    background: radial-gradient(120% 120% at 0% 0%, rgba(131, 211, 80, 0.12) 0%, rgba(48, 48, 48, 0.9) 48%, var(--rr-background-deep) 100%);
    padding: 4rem 0 2.5rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
}

.products-archive-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.products-archive-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(var(--rr-ice-rgb), 0.7);
}

.products-archive-hero__eyebrow::before {
    content: '';
    width: 2.25rem;
    height: 0.0625rem;
    background: rgba(131, 211, 80, 0.6);
}

.products-archive-hero__title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin: 0;
    letter-spacing: -0.01em;
}

.products-archive-hero__subtitle {
    max-width: 40rem;
    margin: 0;
    color: rgba(var(--rr-ice-rgb), 0.75);
    line-height: 1.6;
}

.products-archive-hero__filters ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.products-archive-hero__controls {
    display: grid;
    gap: 1.25rem;
}

.products-archive-hero__filters a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 62.4375rem;
    border: 0.0625rem solid rgba(131, 211, 80, 0.35);
    color: var(--rr-text-soft);
    background: rgba(131, 211, 80, 0.12);
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.products-archive-hero__filters a:hover,
.products-archive-hero__filters a:focus-visible {
    background: rgba(131, 211, 80, 0.2);
    transform: translateY(-0.0625rem);
}

.products-archive-hero__filters-form {
    background: rgba(29, 29, 29, 0.65);
    border: 0.0625rem solid rgba(131, 211, 80, 0.25);
    border-radius: 1.125rem;
    padding: 1.25rem 1.5rem;
    display: grid;
    gap: 1rem;
    color: rgba(var(--rr-ice-rgb), 0.85);
}

.products-archive-hero__filters-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.products-archive-hero__filters-form legend {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(var(--rr-ice-rgb), 0.7);
    margin-bottom: 0.75rem;
}

.products-archive-hero__filters-grid {
    display: grid;
    gap: 0.65rem;
}

.products-archive-hero__filter-option {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.products-archive-hero__filter-option input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--rr-primary);
}

.products-archive-hero__filters-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.products-archive-hero__filters-actions .button {
    padding: 0.65rem 1.75rem;
    border-radius: var(--rr-radius);
    background: var(--rr-primary);
    color: var(--rr-background);
    -webkit-text-fill-color: var(--rr-background);
    -webkit-appearance: none;
    appearance: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products-archive-hero__filters-actions .button:is(:hover, :focus-visible, :active) {
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.875rem 2.25rem rgba(131, 211, 80, 0.35);
}

.products-archive-hero__filters-reset {
    color: rgba(var(--rr-ice-rgb), 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.products-archive-hero__filters-reset:is(:hover, :focus-visible, :active) {
    color: var(--rr-primary);
}

.products-archive {
    padding: 4rem 0 5rem;
}

.products-archive__layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.products-archive__content {
    display: grid;
    gap: 2.5rem;
}

.products-archive__sidebar {
    position: relative;
}

.product-filter {
    background: rgba(29, 29, 29, 0.9);
    border: 0.0625rem solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.75rem;
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 1.5rem 3.75rem rgba(var(--rr-background-deep-rgb), 0.35);
}

.product-filter__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-filter__title {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-filter__apply {
    border: 0.0625rem solid rgba(255, 255, 255, 0.18);
    border-radius: 62.4375rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--rr-text-soft);
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.product-filter__apply:hover,
.product-filter__apply:focus-visible {
    background: rgba(131, 211, 80, 0.2);

}

.product-filter__form {
    display: grid;
    gap: 1rem;
}

.product-filter__field {
    display: grid;
    gap: 0.45rem;
}

.product-filter__field label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(var(--rr-ice-rgb), 0.75);
}

.product-filter__field select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.875rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
    background: rgba(48, 48, 48, 0.85);
    color: var(--rr-text-soft);
    font-size: 0.95rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cpath fill='%23f4f7ff' d='M5.646 7.854a.5.5 0 0 1 .708-.708L10 10.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.15rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-filter__field select:focus-visible {
    outline: none;

    box-shadow: 0 0 0 0.1875rem rgba(131, 211, 80, 0.2);
}

.product-filter__field select option {
    color: var(--rr-navy);
}

.products-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
    gap: 1.75rem;
}

.products-archive__pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.products-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.625rem;
    height: 2.625rem;
    padding: 0 0.85rem;
    border-radius: 62.4375rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
    color: rgba(var(--rr-ice-rgb), 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.products-archive__pagination .page-numbers:hover,
.products-archive__pagination .page-numbers:focus-visible {

    color: var(--rr-text-soft);
}

.products-archive__pagination .page-numbers.current {
    background: var(--rr-primary);
    border-color: var(--rr-primary);
    color: var(--rr-navy);
    box-shadow: 0 1rem 2.5rem rgba(131, 211, 80, 0.28);
}

.products-archive__empty {
    text-align: center;
    background: rgba(29, 29, 29, 0.85);
    border: 0.0625rem dashed rgba(131, 211, 80, 0.35);
    border-radius: 1.5rem;
    padding: 2.75rem;
    max-width: 45rem;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.products-archive__empty h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.products-archive__empty p {
    margin: 0;
    color: rgba(var(--rr-ice-rgb), 0.7);
}

.cart-page__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rr-text);
    margin-bottom: 2.5rem;
}

.cart-page__breadcrumbs-current {
    color: var(--rr-primary);
}

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

.cart-page__breadcrumbs a:hover,
.cart-page__breadcrumbs a:focus {
    color: var(--rr-primary);
}

.cart-page__breadcrumbs svg {
    width: 1rem;
    height: 1rem;
}

.cart-page__header {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.cart-page__title {
    margin: 0 0 0.35rem;
    font-size: 4.125rem;
    font-weight: 800;
}

.cart-page__subtitle {
    margin: 0;
    color: rgba(var(--rr-ice-rgb), 0.75);
    font-size: 1rem;
}

.cart-page__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: var(--rr-radius);
    color: var(--rr-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    width: fit-content;
}

.cart-page__back-link svg {
    width: 1.1rem;
    height: 1.1rem;
}

.cart-page__back-link:hover,
.cart-page__back-link:focus-visible {
    border-color: var(--rr-primary);
    color: var(--rr-primary);
    background: rgba(131, 211, 80, 0.08);
}

.cart-summary {
    background: var(--rr-surface-alt);
    border-radius: var(--rr-radius);
    padding: 1.25rem;
    display: grid;
    position: sticky;
    font-family: 'Inter';
}

.cart-summary hr {
    margin: 0;
}

.cart-summary__title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-family: 'Inter';
    font-weight: 500;
    color: var(--rr-lighted);
    border-bottom: 1px solid var(--rr-border);
    padding-bottom: 1rem;
    margin: 0;
}

.cart-summary__totals {
    margin: 30px 0 0 0;
    display: grid;
    gap: 80px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.cart-summary__row dt {
    margin: 0;
}

.cart-summary__row dd {
    margin: 0;
    font-weight: 600;
}

.cart-summary__row--total {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.cart-summary__cta {
    letter-spacing: -0.01rem;
    white-space: normal;
    text-align: center;
    background-color: var(--rr-primary);
    color: var(--rr-background);
    font-size: 16px;
    font-weight: 500;
}

.cart-summary__cta:hover {
    box-shadow: 0px 6px 12px 0px #83D3501F;
    background: var(--rr-primary) !important;
    transform: none !important;
}

.cart-summary__note {
    margin: 0;
    font-size: 0.85rem;
}

.cart-information {
    margin-top: 5rem;
}

.cart-information p {
    color: rgba(255, 255, 255, 0.7);
}

.cart-items__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.cart-item {
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius);
    display: grid;
}

.cart-item__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.65rem;
    height: 3.75rem;
    border-top-left-radius: var(--rr-radius);
    border-top-right-radius: var(--rr-radius);
    padding: 0 1rem;
    background-color: var(--rr-surface-alt);
    align-items: center;
}

.cart-item__header h3 {
    margin: 0;
}

.cart-item__name {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
}

.cart-item__name a {
    color: var(--rr-primary);
    text-decoration: none;
}

.cart-item__category {
    color: var(--rr-text);
    font-size: 1.25rem;
}

.cart-item__title {
    display: inline-flex;
    align-items: baseline;
    gap: 1rem;
}

.cart-item__sku {
    font-size: 1rem;
    color: var(--rr-text);
    font-family: 'Inter';
}



.cart-item__content {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    grid-template-areas: "media values remove";
    align-items: center;
    font-family: 'Inter';
    gap: 1.5rem;
    margin: 20px;
}

.cart-item__media {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: media;
    max-width: 6.25rem;
    margin: 0;
}

.cart-item__media img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.cart-item__placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.0625rem dashed rgba(131, 211, 80, 0.3);
}

.cart-item__cell {
    display: grid;
    gap: 0.625rem;
}



.cart-item__cell--quantity {
    display: flex;
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius-xs);
    flex: 0 1 auto;
    justify-content: flex-start;
    width: fit-content;
    align-items: center;
}


.cart-item__label {
    font-weight: 400;
    color: var(--rr-lighted);
}

.cart-item__value {
    font-size: 1.375rem;
    font-weight: 500;
}

.cart-item__quantity {
    font-size: 1.5rem;
    font-weight: 500;
    min-width: 2.5rem;
    text-align: center;
    color: #82d250;
    font-family: 'Orbitron';
}

.cart-item__quantity-btn {
    background: none;
    color: var(--rr-text);
    width: 2.25rem;
    height: 2.25rem;
    BORDER: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.cart-item__quantity-btn:hover,
.cart-item__quantity-btn:focus-visible {}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--rr-lighted);
    padding: 0;
    width: 24px;
    height: 24px;
    align-items: center;
    cursor: pointer;
    justify-self: end;
    -webkit-tap-highlight-color: transparent;
}

.cart-item__remove svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-items__empty {
    text-align: center;
    border: 0.0625rem dashed rgba(131, 211, 80, 0.35);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    display: grid;
    gap: 1.25rem;
    background: rgba(29, 29, 29, 0.65);
}

.cart-items__empty h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-items__empty p {
    margin: 0;
    color: rgba(var(--rr-ice-rgb), 0.7);
}

.product-single {
    display: grid;
    grid-template-columns: minmax(10rem, 25rem) minmax(10rem, 1fr);
    gap: clamp(2rem, 2.5rem, 3rem);
    align-items: start;
    padding-bottom: 40px;
}

.product-single__media {
    position: relative;
}

.product-single__image,
.product-gallery__image {
    width: 100%;
    height: auto;
    display: block;
}

.product-gallery {
    display: grid;
    gap: 8px;
}

.product-gallery__main {
    margin: 0;
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius);
}

img.product-gallery__image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin: 20px auto;
}

.product-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-gallery__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1;
    padding: 0.25rem;
    border-radius: var(--rr-radius-sm);
    border: 1px solid #4D4D4D80;
    background-color: var(--rr-white);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
    
}

.product-gallery__thumb.is-active {
    border-color: var(--rr-primary);
}

.product-gallery__thumb-image {
    width: 100%;
    height: calc(100% - 10px);
    object-fit: contain;
    border-radius: inherit;
}

.product-single__content {
    display: flex;
    flex-direction: column;
}

.product-single__title {
    margin: 0;
    font-size: 42px;
    line-height: 44px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-single__meta {
    display: flex;
    gap: 100px;
    margin: 0;
    padding-top: 40px;
}

.product-single__meta-item {
}

.product-single__meta-item dt {
    font-family: 'Inter';
    color: var(--rr-muted);
    margin-bottom: 8px;
}

.product-single__meta-item dd {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-single__meta-item:nth-child(-n+3) dd {
    color: var(--rr-primary);
}

.product-single__meta-item--custom dd {
    color: var(--rr-primary);
}

.product-single__description,
.product-single__excerpt {
    display: grid;
    gap: 1rem;
    padding-top: 40px;
    margin-bottom: 40px;
}

.product-single__description p:last-child,
.product-single__excerpt p:last-child {
    margin: 0;
    font-size: 22px;
    line-height: 24px;
    font-family: 'Inter';
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.product-variations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.product-variations__title {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
}

.product-variations__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-variations__option {
    padding: 0;
    border-radius: 100%;
    box-shadow: none;
    height: 48px;
    width: 48px;
    border-color: transparent;
}

.product-variations__option:is(:hover, :focus-visible, :active) {
    transform: initial;
    box-shadow: initial;
}

.product-variations__option img {
    border-radius: initial;
}

.product-variations__option.is-active {
    border: 1px solid var(--rr-primary);
}

.product-single__section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 40px;
    border-top: 1px solid var(--rr-border);
}

.product-single__subtitle {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'Inter';
}

.product-single-page {
    margin-top: 80px;
}

.product-recommendations__title {
    margin: 0;
    font-size: 46px;
    line-height: 48px;
    font-weight: 800;
    max-width: 1010px;
}

.product-specs__wrapper {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.border-top {
    border-top: 1px solid var(--rr-border);
}

.product-specs {
    width: auto;
    border-collapse: separate;
    border-spacing: 12px;
    margin: -12px 0 -12px -12px;
    font-family: 'Inter';
    font-size: 18px;
    color: var(--rr-text);
    flex-grow: 1;
    padding-bottom: 40px;
}

.product-specs th,
.product-specs td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-radius: var(--rr-radius-xs);
    font-weight: 400;
}

.product-specs th {
    min-width: 270px;
    max-width: fit-content;
    white-space: nowrap;
}

.product-specs td {
    width: 100%;
}

.product-specs tbody tr:nth-child(odd) {
    background: var(--rr-surface-alt);
}

.product-specs tbody tr:nth-child(even) td,
.product-specs tbody tr:nth-child(even) th {
    border: 1px solid var(--rr-surface-alt);
}

.product-qty__btn svg {
    height: 24px;
    width: 24px;
}

.product-purchase--disabled {
    opacity: 0.55;
}

.product-purchase__body {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
}

.product-purchase__field {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.product-purchase__field--qty {
    text-align: left;
}

.product-purchase__field--total {
    justify-items: flex-end;
    text-align: right;
}

.product-purchase__label {
    font-family: 'Inter';
}

.product-purchase__value {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
}

.product-purchase__value--accent {
    font-size: clamp(1.85rem, 2rem, 4rem);
    font-weight: 700;
    color: var(--rr-primary);
}

.product-purchase__value--total {
    font-size: clamp(1.85rem, 2.625rem, 4rem);
    font-weight: 700;
    color: var(--rr-primary);
}

.product-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.3125rem;
    border-radius: var(--rr-radius-xs);
    border: 1px solid var(--rr-border);
    overflow: hidden;
}

.product-qty__btn {
    background: none;
    border: none;
    color: var(--rr-text);
    cursor: pointer;
    font-size: 2rem;
    place-items: center;
}

.product-qty__btn[disabled] {
    cursor: not-allowed;
    opacity: 0.4;
}

.product-qty__input {
    width: 3rem;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--rr-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.product-qty__input::-webkit-inner-spin-button,
.product-qty__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-single__description+.product-specs__wrapper {
    padding-top: 0;
}

.product-purchase__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron';
    text-transform: uppercase;
    background: var(--rr-primary);
    border-radius: var(--rr-radius-sm);
    border: 1px solid var(--rr-primary);
    color: #1D1D1D;
    -webkit-text-fill-color: #1D1D1D;
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    padding: 0.75rem;
    margin-top: 2.5rem;
    gap: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.product-purchase__button:is(:hover, :focus-visible, :active) {
    background: none;
    color: var(--rr-primary);
    -webkit-text-fill-color: var(--rr-primary);
}

.product-purchase__actions .button {
    -webkit-text-fill-color: currentColor;
    -webkit-appearance: none;
    appearance: none;
}

.product-purchase__actions .button svg {
    width: 1.3125rem;
    height: 1.3125rem;
}

.product-purchase__actions .button:is(:hover, :focus-visible, :active) {
    background: none;
    color: var(--rr-primary);
    translate: unset;
}

.product-related {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    display: grid;
    gap: 2rem;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(3rem, 1fr));
    gap: 1.75rem;
}

.product-recommendations {
    margin-top: 80px;
    display: grid;
    gap: 30px;
}

.product-recommendations__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.product-recommendations__controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.product-recommendations__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #929292;
    background: none;
    color: #929292;
    -webkit-text-fill-color: #929292;
    transition: background-color 0.2s ease, 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.product-recommendations__button:is(:hover, :focus-visible, :active) {
    background: var(--rr-primary, #83d350);
    border-color: var(--rr-primary, #83d350);
    color: #010101;
    cursor: pointer;
}

.product-recommendations__button:focus-visible {
    outline: 2px solid var(--rr-primary, #83d350);
    outline-offset: 2px;
}

.product-recommendations__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: none;
    color: inherit;
    border-color: inherit;
}

.product-recommendations__button-icon {
    display: inline-flex;
}

.product-recommendations__button-icon svg {
    width: 22px;
    height: auto;
}

.product-recommendations__button-icon--prev {
    transform: scaleX(-1);
}

.product-recommendations__viewport {
    overflow: hidden;
}

.product-recommendations__viewport::-webkit-scrollbar {
    display: none;
}

.select2-container--open .select2-results__options::-webkit-scrollbar {
    width: 2px;
}

.select2-container--open .select2-results__options::-webkit-scrollbar-track {
    background: none;
}

.select2-container--open .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #FFFFFF4D;
    border-radius: 8px;
}

.select2-container--open .select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: #FFFFFF4D transparent;
}

.rr-modal__body .select2-container--open .select2-results__options {
    background-color: #ACACAC33;
    border-radius: 8px;
    color: #4D4D4D;
    padding: 8px;
}

.rr-shop-ordering .select2-container--open .select2-results__options {
    background-color: #303030;
    padding: 8px;
    max-height: initial !important;
    margin-top: 6px;
    border-radius: 8px;
}

.rr-shop-ordering .select2-results__option {
    border-radius: 4px;
    text-align: center;
    background-color: #303030;
}

.rr-shop-ordering .select2-container {
    background-color: #303030;
    color: white;
    border-radius: 8px;
}

.rr-shop-ordering .select2-results__option--highlighted {
    background-color: var(--rr-primary) !important;
    color: #1D1D1D !important;
}

.rr-shop-ordering .select2-selection {
    height: auto !important;
}

.rr-shop-ordering .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-radius: 8px !important;
    border: 0;
}

.rr-shop-ordering .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #303030;
}

.product-filters__panel .select2-container--default .select2-selection--multiple {
    position: relative;
    padding-right: 36px;
    cursor: pointer;
}

.select2-container--default .select2-selection--multiple:not(.select2-selection--has-value) {
    position: relative;
}

.select2-container--default .select2-selection--multiple:not(.select2-selection--has-value)::before {
    content: attr(data-placeholder);
    position: absolute;
    left: 12px;
    color: #A9A8A8;
    pointer-events: none;
    line-height: 1.4;
}

.select2-container--default .select2-selection--multiple.select2-selection--has-value::before {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: var(--rr-radius-sm) !important;
    border-bottom-right-radius: var(--rr-radius-sm) !important;
}

.product-filters__panel .select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: absolute;
    right: 12px;
    top: 10px;
    margin: 0;
    color: var(--rr-primary);
    display: none;
    font-weight: 400;
    font-size: 25px;
    line-height: 25px;
    font-family: 'dashicons';
}

.product-filters__panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    display: none;
}

.product-filters--modal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    display: none;
}

.product-filters__panel .select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-left: 12px;
    cursor: pointer;
}

.product-recommendations__track {
    --slider-gap: 20px;
    display: flex;
    gap: var(--slider-gap);
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.product-recommendations__track>.product-card {
    flex: 0 0 calc((100% - (var(--slider-gap)*3 + var(--card-padding)*8) ) / 4);
    max-width: calc((100% - (var(--slider-gap)*3 + var(--card-padding)*8) ) / 4);
}

.product-filters__panel .select2-container--default .select2-selection--single .select2-selection__arrow b,
.product-filters__panel .select2-container--default .select2-selection--multiple::after {
    border-color: transparent white white transparent !important;
    border-style: solid !important;
    border-width: 2px !important;
    border-radius: 2px !important;
    margin-left: -4px !important;
    position: absolute !important;
    left: 50%;
    top: 15% !important;
    width: 8px !important;
    height: 8px !important;
    transform: rotate(45deg) !important;
    background: none;
}

.product-filters__panel .select2-container--default .select2-selection--multiple::after {
    content: '';
    pointer-events: none;
    left: initial;
    top: 25% !important;
    right: 5% !important;
}

.product-filters__panel .select2-container--default .select2-selection--multiple.select2-selection--has-value::after {
    display: none;
}

.rr-modal__body .select2-container--default .select2-selection--multiple.select2-selection--has-value::after {
    display: none;
}

.product-filters__panel .select2-container--default .select2-selection--multiple.select2-selection--has-value .select2-selection__clear {
    display: inline-flex;
    align-items: center;
}

.product-filters--modal .select2-container--default .select2-selection--multiple.select2-selection--has-value .select2-selection__arrow {
    display: none;
}

.product-filters--modal .select2-container--default .select2-selection--multiple .select2-selection__clear {
    right: 12px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #30303066;
}

.product-filters--modal .select2-container--default .select2-selection--multiple {
    position: relative;
    padding-right: 33px;
}

.product-filters--modal .select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: absolute;
    right: 15px;
    top: 7px;
    display: none;
    margin: 0;
    color: #1d1d1d;
    font-family: 'dashicons';
    font-size: 24px;
    line-height: 24px;
}

.product-filters--modal .select2-container--default .select2-selection--multiple.select2-selection--has-value .select2-selection__clear {
    display: inline-flex;
    align-items: center;
}

.product-filters--modal .select2-container--default .select2-selection--multiple.select2-selection--has-value .select2-selection__arrow {
    display: none;
}


.select2-results__option .select2-multi-checkbox-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.select2-multi-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #FFFFFF4D;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 16px;
    color: #3C3C3C !important;
    background-color: #3C3C3C;
}

.added_to_cart.wc-forward {
    display: none !important;
}

.select2-multi-checkbox::after {
    content: '';
    width: 12px;
    height: 9px;
    background-image: var(--rr-checkbox-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 9px;
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.select2-results__option[aria-selected="true"] .select2-multi-checkbox {
    background-color: var(--rr-primary);
    border-color: transparent;
}

.select2-results__option[aria-selected="true"] .select2-multi-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

.select2-multi-checkbox-option__label {
    flex: 1;
    text-align: left;
}

.select2-selection__rendered {
	line-height: 22px !important;
    padding: 0;
}

.modal-order .rr-modal__header {
    align-items: flex-start;
}

.modal-order .rr-modal__title {
    font-family: 'Orbitron';
    margin-bottom: 12px;
}

.contact-section__field .select2-container--default .select2-selection--single .select2-selection__arrow b {
    height: 20px;
    width: 20px;
    border: none;
    left: initial;
    top: 20%;
    right: 21%;
    background-size: 22px;
}

.product-filters__panel .select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--rr-primary);
    color: #1d1d1d;
}

.product-filters__panel .select2-results__options {
    background-color: #3C3C3C;
    margin: 10px 0;
    padding: 8px;    
    border-radius: 4px;
}

.product-filters__panel .select2-results__options[aria-multiselectable="true"] {
    margin: 6px 0;
}


.product-filters__panel .select2-results__option {
    background-color: none;
    color: #FFFFFFE5 ;    
    border-radius: 4px;
}

.product-filters__panel .select2-results__options[aria-multiselectable="true"] .select2-results__option {
    padding: 6px 10px;
    gap: 6px;
}

.product-filters__panel .select2-results__options[aria-multiselectable="true"] .select2-results__option,
.product-filters__panel .select2-results__options[aria-multiselectable="true"] .select2-results__option:hover {
    background: #3C3C3C !important;
    text-align: left;
    color: #FFFFFFE5;
}

.product-filters__panel .select2-results__option--highlighted {
    background-color: var(--rr-primary) !important;
    color: #1D1D1D;
}

.product-filters__panel .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #3C3C3C;
}

.product-filters__panel .select2-results__option {
    text-align: center;
}

.product-filters__panel .select2-search--dropdown,
.product-filters__panel .select2-search--inline {
    display: none !important;
}

.filter__short-field option[disabled] {
    display: none;
}

#select2-preis-container .select2-selection__clear {
    display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin: 0 !important;
}

.select2-selection--multiple .select2-search--inline {
    color: var(--rr-lighted);
}

.unsere-produkte-hero__logo-image,
.unsere-produkte-hero__logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.unsere-produkte-hero__subtitle {
    max-width: 40rem;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.6;
}

.unsere-produkte-category-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unsere-produkte-category-card__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unsere-produkte-category-card__title {
    letter-spacing: -0.02em;
    margin: 0;
    font-size: 32px;
    color: var(--rr-primary);
    font-weight: 600;
}

.unsere-produkte-category-card__description {
    margin: 0;
    height: 91px;
    align-content: flex-end;
}

.unsere-produkte-category-card__button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 20px;
    padding: 12px 18px;
    border: 1px solid var(--rr-primary);
    border-radius: 62.4375rem;
    background: var(--rr-primary);
    color: var(--rr-background);
    -webkit-text-fill-color: var(--rr-background);
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.unsere-produkte-category-card__image {
    width: 165px;
    height: 165px;
    object-fit: contain;
    border: 1px solid #4D4D4D66;
    border-radius: var(--rr-radius-sm);
}

.unsere-produkte-category-card__placeholder {
    display: block;
    width: 70%;
    padding-top: 70%;
    border-radius: 1rem;
}

.unsere-produkte-category-card__button svg {
    width: 14px;
    height: 14px;
}

.unsere-produkte-category-card__button>span {
    text-transform: uppercase;
    font-size: 16px;
}

.unsere-produkte-category-card__button:is(:hover, :focus-visible, :active) {
    box-shadow: 0px 4px 16px 0px #83D35026;
}

.unsere-produkte-categories__empty {
    text-align: center;
    max-width: 30rem;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.product-qty__cover {
    display: flex;
    gap: 0.75rem;
}

.cart-item__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-area: values;
    justify-items: center;
}

ul.page-numbers {
    background: none;
    color: var(--rr-text);
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 0 !important;
    font-family: 'Inter';    
}

span.page-numbers,
a.page-numbers {
    border: 1px solid #A9A8A866;
    border-radius: 4px;
    font-size: 14px;
    height: 20px;
    padding: 8px 12px !important;
    color: white !important;
    align-items: center;
    justify-content: center;
    min-width: fit-content !important;
    display: flex !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.next svg {
    transform: rotate(-90deg);
}

.back svg {
    transform: rotate(90deg);
}

.woocommerce-pagination ul li a:is(:focus, :hover) {
    background: transparent !important;
    color: var(--rr-primary) !important;
}

.rr-pagination__label,
.rr-pagination__icon {
    padding: 0 !important;
}

.rr-pagination__label {
    line-height: 20px;
    font-size: 14px;
}

/* Media queries */


@media (max-width: 75rem) {
    .product-recommendations__track>.product-card {
        flex: 0 0 calc((100% - (var(--slider-gap) * 2) + var(--card-padding)*6) / 3);
        max-width: calc((100% - (var(--slider-gap) * 2) + var(--card-padding)*6) / 3);
    }
}

@media (max-width: 64rem) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout__info,
    .contact-layout__map,
    .contact-layout__form {
        grid-column: 1 / -1;
    }

    .contact-map {
        aspect-ratio: 16 / 9;
    }

    .popular-products__list {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 60rem) {
    .product-single__meta {
    }

    .cart-item__remove {
        justify-self: start;
        align-self: start;
    }

    .cart-item__content {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "values remove"
            "values media";
        align-items: start;
        column-gap: 1rem;
        row-gap: 1rem;
        padding: 0 !important;
    }

    .product-purchase__body {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        grid-template-areas:    "price price"
                                "qty total";
    }

    .product-purchase__column--aside {
        justify-items: start;
    }

    .product-recommendations__controls {
        gap: 0.5rem;
    }

    .product-recommendations__track>.product-card {
        flex: 0 0 calc((100% - (var(--slider-gap)+var(--card-padding)*4)) / 2);
        max-width: calc((100% - (var(--slider-gap)+var(--card-padding)*4)) / 2);
    }
}

@media (max-width: 40rem) {

    .cart-information {
        flex-direction: column;
        margin-top: 40px;
        padding: 0;
    }

    .cart-information h3 {
        font-size: 22px;
        line-height: 22px;
    }

    .cart-information p {
        font-size: 16px;
    }

    .cart-information__icon svg {
        width: 24px;
        height: 24px;
    }

    .cart-information__icon {
        height: 24px;
        margin-bottom: 20px;
    }

    .popular-product-card__header {
        padding-right: 2.75rem;
    }

    .popular-product-card__badge {
        width: 55px;
        height: 30px;
        font-size: 20px;
        padding: 0 4px;
    }

    .popular-product-card__link {
        gap: 0;
    }

    .contact-card {
        padding: 1.75rem;
    }

    .contact-details__item {
        gap: 0.75rem;
    }

    .cart-item__header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 0.75rem 1rem 1rem;
        gap: 0.35rem;
    }

    .cart-item__category,
    .cart-item__name,
    .cart-item__sku {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .cart-item__sku {
        align-self: flex-start;
    }

    .product-filter {
        padding: 1.25rem;
    }

    .product-filter__title {
        font-size: 1.1rem;
    }

    .product-filter__apply {
        font-size: 0.75rem;
    }

    .cart-item__values {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        align-items: flex-start;
        gap: 20px;
    }

    .cart-item {
        padding: 1.25rem;
    }

    
    .cart-item__media {
        width: 100%;
        justify-self: end;
        align-self: start;
    }

    .cart-item__remove {
        justify-self: end;
        margin: 0;
    }

    .cart-summary {
        position: static;
    }

    .cart-summary__totals {
        gap: 24px;
    }

    .product-specs {
        border-spacing: 8px;
        margin: -0.5rem;
    }

    .product-specs th,
    .product-specs td {
        padding: 16px;
    }

    .product-qty__input {
        font-size: 16px;
        width: 20px;
    }

    .product-qty__btn {
        width: 32px;
        height: 37px;
        padding: 0;
    }

    .product-recommendations__header {
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
    }

    .product-recommendations {
        margin-top: 40px;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .product-recommendations__track {
        --slider-gap: 1.25rem;
    }

    .product-recommendations__track>.product-card {
        flex: 0 0 calc((100% - (var(--slider-gap)+var(--card-padding)*4)) / 2);
        width: calc((100% - (var(--slider-gap)+var(--card-padding)*4)) / 2);
        min-width: calc((100% - var(--slider-gap) - var(--card-padding)*4)/2);
    }

    .product-purchase__remove {
        width: 2.75rem;
        height: 2.75rem;
    }

    .product-purchase__value--accent,
    .product-purchase__value--total {
        font-size: 1.5rem;
    }

    .product-single__title {
        font-size: 22px;
        line-height: 22px;

    }

    .product-single__description,
    .product-single__excerpt {
        display: grid;
        gap: 1rem;
        padding-top: 30px;
    }

    .product-purchase__field--price {
        align-items: flex-start;
        grid-area: price;
    }

    .product-purchase__field--qty {
        grid-area: qty;
    }

    .product-purchase__value--total {
        grid-area: total;
    }

    .product-specs__wrapper {
        padding-top: 30px;
    }

    .product-card__price {
        font-weight: 400;
        font-size: 15px;
    }

    .product-single-page {
        margin-top: 24px;
    }

    .cart-item__name,
    .cart-item__category {
        font-size: 16px;
        line-height: 18px;
        font-weight: 500;
    }

    .cart-item__quantity {
        min-width: 26px;
    }

    .cart-item__cell--quantity {
        gap: 0;
        padding: 2px 0;
    }

    .cart-item__quantity-btn svg {
        width: 20px;
        height: 20px;
    }

    .cart-item__header {
        gap: 12px;
    }

    .cart-summary__title {
        font-size: 20px;
        padding-bottom: 24px;
    }

    .cart-summary__totals {
        margin: 24px 0 0 0;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b,
    .product-filters__panel .select2-container--default .select2-selection--multiple::after {
        border-color: transparent #1D1D1D #1D1D1D transparent !important;
    }

}


@media (hover: none) {

    .popular-product-card:hover:not(.is-active),
    .popular-product-card:focus-within:not(.is-active),
    .popular-product-card:active:not(.is-active) {

        border-color: initial;
        background-color: var(--rr-surface-alt);
        color: var(--rr-lighted);

    }

    .popular-product-card:active:not(.is-active) .popular-product-card__badge,
    .popular-product-card:focus-within:not(.is-active) .popular-product-card__badge {
        color: var(--rr-lighted);
        border-color: var(--rr-lighted);
    }
}

@media (max-width: 33.75rem) {

    .product-purchase__value--accent {
        font-size: 18px;
    }

    .product-purchase__value--total {
        font-size: 20px;
    }

    .product-purchase__label,
    .measure_units {
        font-size: 14px;
    }

    .product-qty__cover {
        gap: 8px;
    }

    .product-qty__btn svg {
        width: 20px;
        height: 20px;
    }

    .cart-summary {
        width: 100%;
    }

    .cart-items__list {
        grid-template-columns: minmax(0, 1fr);
    }

    .cart-item__media {
        justify-self: stretch;
        align-self: stretch;
    }

    .cart-item__media img {
        max-width: 100%;
    }

    .cart-page .products-categories__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .cart-page .products-categories__grid>* {
        scroll-snap-align: start;
    }

    .cart-page .product-category-card {
        flex: 0 0 auto;
        min-width: clamp(14rem, 80vw, 18rem);
    }
}


@media (max-width: 500px) {

    .unsere-produkte-category-card__button {
        align-self: auto;
        width: auto;
    }

    .product-recommendations__track {
        --slider-gap: 8px;
        display: flex;
        flex-wrap: nowrap;
        grid-template-columns: unset;
    }

    .product-single__meta {
        display: flex;
        gap: 16px 100px;
        flex-wrap: wrap;
        padding-top: 20px;
    }

    .product-single__content {
    }

    .product-specs th {
        min-width: 175px;
        font-size: 14px;
    }

    .product-specs td {
        font-size: 16px;
    }

    .product-recommendations__title {
        font-size: 20px;
        line-height: 20px;
        font-weight: 700;
    }

    .product-recommendations__controls {
        gap: 10px;
    }

    .product-card__body {
        padding-bottom: 10px;
    }

    .product-card__footer {
        margin-top: 10px;
    }

    .product-card__button {
        font-size: 15px;
        margin-top: 20px;
        padding: 10px;
    }

    .product-card {
        padding: var(--card-padding);
        justify-content: space-between;
    }

    .popular-products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
        margin-bottom: 1.75rem;
    }

    .popular-products__header h2 {
        font-size: 1.75rem;
        letter-spacing: 0.06em;
    }

    .popular-products__list {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .popular-product-card {
        padding: 1rem;
        text-align: left;
    }

    .popular-product-card__header {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .popular-product-card__title {
        font-size: 20px;
        line-height: 1;
    }

    .popular-product-card__footer {}

    .popular-product-card__purchase {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .popular-product-card__purchase .button,
    .popular-product-card__purchase .added_to_cart,
    .popular-product-card__purchase .add_to_cart_button {
        width: 100%;
        justify-content: center;
    }

    .popular-product-card__price {
        font-size: 0.95rem;
    }

    .popular-products__cta {
        justify-content: flex-start;
    }

    .popular-products__button {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .product-related__grid {
        grid-template-columns: 1fr;
    }

    .product-related__grid {
        grid-template-columns: 1fr;
    }

    .cart-page__header {
        margin: 24px 0 30px;
    }

    .site-main {
        padding-bottom: 40px;
    }

    .product-purchase__field {
        gap: 8px;
    }

    .product-qty {
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .cart-item__cell--price {
        grid-area: price;
    }

    .cart-item__cell--total {
        grid-area: total;
    }
}

@media (min-width: 45rem) {
    .products-archive-hero__filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
    }
}

@media (min-width: 60rem) {
    .cart-page__header {
        flex-direction: row;
    }

    .cart-layout {
        grid-template-columns: 1fr minmax(16.25rem, 21.25rem);
    }

    .products-archive-hero__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .products-archive-hero__controls {
        max-width: 28.75rem;
    }
}

@media (min-width: 65rem) {
    .products-archive__layout {
        grid-template-columns: minmax(0, 1fr) 20rem;
    }

    .products-archive__sidebar {
        position: sticky;
        top: 6rem;
    }
}

.scroll-to-top {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
    border-radius: 0.5rem;
    background: none;
    color: var(--rr-primary);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.scroll-to-top:focus-visible {
    outline: 0.125rem solid rgba(255, 255, 255, 0.6);
    outline-offset: 0.125rem;
}

.scroll-to-top--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(-90deg);
}

.scroll-to-top svg path {
    fill: currentColor;
}

.product-filters__panel--hidden {
    display: none !important;
}

.rr-modal .select2-no-search .select2-search--dropdown,
.rr-modal .select2-no-search .select2-search--inline,
.rr-modal .select2-no-search input.select2-search__field {
    display: none !important;
}

@media (min-width: 75rem) {
    .popular-products__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}