/*
Theme Name: Reifen Reber
Theme URI: https://example.com/reifen-reber
Author: Reifen Reber Dev Team
Author URI: https://example.com
Description: A modern WordPress theme for selling tires and alloy wheels with dedicated landing sections, product highlights, and a conversion-focused layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reifen-reber
*/
@import url('adaptive.css');

/* Root variables */
:root {
    --rr-primary: #83D350;
    --rr-secondary: #4d4d4d;
    --rr-secondary-soft: #A9A8A8;
    --rr-surface: #4d4d4d;
    --rr-background: #1D1D1D;
    --rr-lighted: #A9A8A8;
    --rr-button-secondary: #1D1D1D;
    --rr-border: #4D4D4D;
    --rr-surface-alt: #303030;
    --rr-text: #ffffff;
    --rr-lighter: rgba(255, 255, 255, 0.25);
    --rr-muted: rgba(255, 255, 255, 0.8);

    --rr-checkbox-icon: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2165 0.549805L3.88314 7.88314L0.549805 4.5498' stroke='%231D1D1D' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    --rr-primary-dark: #7ed629;
    --rr-accent: #83D350;
    --rr-success: 131, 211, 80;
    --rr-danger: 240, 68, 56;

    --rr-radius: 0.75rem;
    --rr-radius-sm: 0.5rem;
    --rr-radius-xs: 0.25rem;
    --rr-max-width: 118.75rem;
}

:where(button,
    .button,
    .button-cart,
    .submit,
    .popular-products__button,
    .product-card__button,
    .product-purchase__button,
    .product-recommendations__button,
    .product-filter__apply,
    .product-card__gallery-nav,
    .product-gallery__thumb,
    .cart-item__quantity-btn,
    .cart-item__remove,
    .scroll-to-top,
    .reviews__nav-button,
    .product-category-card__button,
    .products-list__mobile-action,
    .product-filters__reset,
    .products-list__filters-active-link,
    .rr-modal__close,
    .rr-modal__option,
    .unsere-produkte-category-card__button) {
    -webkit-tap-highlight-color: transparent;    
}

body {
    font-family: "Orbitron", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--rr-text);
    background-color: var(--rr-background);
    margin: 0;
    letter-spacing: -0.02em;
}

.site {
    min-height: 100vh;
    max-width: 1360px;
    background-color: var(--rr-background);
    margin: 0 auto;
}

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

.section {
    padding: clamp(2rem, 2.5rem, 3rem) 0;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin: 0 0 0.75rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 45rem;
    margin: 0 auto 3.5rem;
    color: var(--rr-muted);
    font-size: 1.05rem;
}

.submit {
    background-color: var(--rr-background);
    color: var(--rr-text);
    padding: 0.75rem;
    font-weight: 600;
}

.submit:focus {
    background-color: #ffffff;
    color: var(--rr-background);
}

.submit:is(:hover, :focus-visible, :active) {
    background-color: #ffffff;
    color: var(--rr-background);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 800;
    font-size: 3.25rem;
    line-height: 3.25rem;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 0.5rem;
    background: var(--rr-background);
    color: var(--rr-text);
    padding: 0.9rem 2.5rem;
    border-radius: var(--rr-radius-sm);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}

.button svg,
.product-category-card__button svg,
.testimonial-card__rating svg {
    height: 1.125rem;
    width: 1.125rem;
}

.button:focus {
    background: var(--rr-background);
    transform: translateY(-0.125rem);
    box-shadow: var(--rr-shadow-sm);
}

.button:is(:hover, :focus-visible, :active) {
    background: var(--rr-background);
    transform: translateY(-0.125rem);
    box-shadow: var(--rr-shadow-sm);
}

.button.button--outline {
    background: transparent;
    color: var(--rr-secondary);
    box-shadow: none;
}

.button.button--outline:focus {
    color: var(--rr-primary);
}

.button.button--outline:is(:hover, :focus-visible, :active) {
    color: var(--rr-primary);
}

.button.button--light {
    color: var(--rr-primary);
    box-shadow: none;
}

.button.button--light:focus {
    background: var(--rr-primary);
    color: var(--rr-background-deep);
}

.button.button--light:is(:hover, :focus-visible, :active) {
    background: var(--rr-primary);
    color: var(--rr-background-deep);
}

.button.button--dark {
    background: var(--rr-background-deep);
    color: var(--rr-secondary);
    border: 0.0625rem solid rgba(var(--rr-text), 0.12);
}

.button.button--dark:focus {
    background: var(--rr-secondary);
    color: var(--rr-background-deep);
}

.button.button--dark:is(:hover, :focus-visible, :active) {
    background: var(--rr-secondary);
    color: var(--rr-background-deep);
}

.advantage-grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(16.25rem, 1fr));
    gap: 20px;
}

.columns-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.625rem;
}

.card {
    background: var(--rr-surface);
    border-radius: var(--rr-radius);
    padding: 2rem;
    border: 0.0625rem solid rgba(var(--rr-text), 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.advantage-card::after,
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.advantage-card.is-active {
    background-color: var(--rr-surface-alt);
    color: var(--rr-primary);
    border-color: var(--rr-surface-alt);
}

.advantage-card.is-active .advantage-card__icon {
    border-color: var(--rr-surface-alt);
}

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

    .advantage-card:hover .advantage-card__icon {
        border-color: var(--rr-surface-alt);
    }
}

.card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.card p {
    margin: 0;
    color: var(--rr-muted);
}

/* Header */
.site-header {
    margin: 2.5rem 0;
    font-family: 'Inter';
    color: var(--rr-lighted);
}

.site-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    background: rgba(var(--rr-text), 0.02);
    border-bottom: 0.0625rem solid rgba(var(--rr-text), 0.05);
}

.site-header__location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--rr-secondary);
}

.footer-branding__contacts svg,
.site-header__contacts svg,
.site-header__location svg {
    color: var(--rr-primary);
    height: 1.125rem;
    width: 1.125rem;
}

.products-meta__cta,
.site-header__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.site-header__top a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.site-header__phone {
    font-weight: 700;
    color: var(--rr-secondary);
}

.site-header__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem;
    border: 0.0625rem solid var(--rr-secondary);
    border-radius: 0.75rem;
}

.site-branding a {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--rr-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.site-branding svg {
    width: 2.625rem;
    height: 2.625rem;
    color: var(--rr-primary);
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex: 1 1 auto;
    margin-left: 0;
}

.main-navigation__group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1 1 0;
}

.main-navigation__group--left {
    justify-content: flex-start;
}

.main-navigation__group--right {
    justify-content: flex-end;
    gap: 1.75rem;
}

.main-navigation__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rr-lighted);
    text-decoration: none;
    cursor: pointer;
}

.main-navigation__dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rr-lighted);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.main-navigation__link:hover,
.main-navigation__dropdown-toggle:hover {
    color: var(--rr-primary);
}

.main-navigation__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.5rem;
    border-radius: 50%;
    color: var(--rr-primary);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.main-navigation__home:hover {
    background-color: var(--rr-border);
}

.main-navigation__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--rr-surface);
    border: 0.0625rem solid var(--rr-border);
    color: var(--rr-primary);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
}

.main-navigation__icon-link--cart {
    position: relative;
}

.main-navigation__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-navigation__badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 62.4375rem;
    background: var(--rr-primary);
    color: var(--rr-background);
    font-size: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-navigation__icon-link:hover {
    box-shadow: rgba(255, 255, 255, 0.08) 0px 4px 8px 0px;
}


details.main-navigation__dropdown:open svg {
    transform: rotate(180deg);
}

.main-navigation__link:focus-visible,
.main-navigation__dropdown-toggle:focus-visible,
.main-navigation__home:focus-visible,
.main-navigation__icon-link:focus-visible,
.main-navigation__dropdown-menu a:focus-visible {
    outline: 0.125rem solid var(--rr-primary);
    outline-offset: 0.25rem;
}

.main-navigation__icon svg {
    width: 1.375rem;
    height: 1.375rem;
    display: block;
    color: var(--rr-primary);
}

.main-navigation__dropdown {
    position: relative;
}

.main-navigation__dropdown summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker,
.main-navigation__dropdown summary::-webkit-details-marker {
    display: none;
}

.main-navigation__caret {
    font-size: 0.7rem;
    transform: translateY(-0.0625rem);

}

.main-navigation__dropdown .main-navigation__caret {}

.main-navigation__dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    background: var(--rr-surface-alt);
    border-radius: var(--rr-radius-sm);
    border: 0.0625rem solid rgba(var(--rr-text), 0.06);
    box-shadow: var(--rr-shadow-sm);
    min-width: 12.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.625rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.main-navigation__dropdown[open] .main-navigation__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation__dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 500;
    color: var(--rr-lighted);
}

.main-navigation__dropdown-menu a:hover {
    color: var(--rr-primary);
}

.mobile-navigation {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: var(--rr-radius);
    color: var(--rr-primary);
}

.mobile-navigation__home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    border-radius: 100%;
    text-decoration: none;
    color: var(--rr-primary);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-navigation__cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    border-radius: 100%;
    text-decoration: none;
    color: var(--rr-primary);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    background: var(--rr-surface);
    position: relative;
}

.mobile-navigation__badge {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--rr-primary);
    color: var(--rr-background);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.mobile-navigation__actions {
    display: flex;
    align-items: center;
    color: var(--rr-text);
}

.mobile-navigation__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.mobile-navigation__text {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.mobile-navigation__more {
    position: relative;
}

.mobile-navigation__summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: transparent;
    color: var(--rr-lighted);
    border: 0.0625rem solid rgba(var(--rr-text), 0.12);
    border-radius: var(--rr-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    list-style: none;
}

.mobile-navigation__summary::-webkit-details-marker {
    display: none;
}

.mobile-navigation__panel {
    position: absolute;
    right: -12px;
    top: -12px;
    min-width: 350px;
    padding: 20px;
    background: var(--rr-background);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 20;
    height: 100vh;
}

.mobile-navigation__more[open] .mobile-navigation__panel,
.mobile-navigation__more.is-open .mobile-navigation__panel {
    opacity: 1;
    visibility: visible;
}

.mobile-navigation__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    font-family: 'Orbitron';
}

.mobile-navigation__item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 22px 0;
}

.mobile-navigation__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation__dropdown {
    width: 100%;
    color: var(--rr-primary);
}

.mobile-navigation__dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--rr-text);
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 16px;
}

.mobile-navigation__dropdown-toggle::-webkit-details-marker {
    display: none;
}

.mobile-navigation__caret {
    display: flex;
    align-items: center;
}

.mobile-navigation__caret svg {
    color: var(--rr-primary);
    width: 28px;
    height: 28px;
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.mobile-navigation__dropdown[open] .mobile-navigation__caret svg {
    transform: rotate(0);
    color: white;
}

.mobile-navigation__label {
    font-weight: 700;
    color: var(--rr-text);
}

.mobile-navigation__sublist {
    margin: 0.25rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: 'Inter';
}

.mobile-navigation__sublist .mobile-navigation__link {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

.mobile-navigation__link {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 18px;
    line-height: 16px;
}

li.mobile-navigation__subitem {
    padding: 10px 0;
}

li.mobile-navigation__subitem:last-child {
    padding-bottom: 0;
}

.mobile-navigation__link:hover,
.mobile-navigation__link:focus {
    color: var(--rr-primary);
}

.mobile-navigation__dropdown-toggle:hover,
.mobile-navigation__dropdown-toggle:focus {}


.mobile-navigation__home:hover,
.mobile-navigation__home:focus {
    background-color: var(--rr-border);
}

.mobile-navigation__cart:hover,
.mobile-navigation__cart:focus {
    background: var(--rr-primary);
    color: var(--rr-background);
    border-color: transparent;
    box-shadow: var(--rr-shadow-sm);
}

.mobile-navigation__summary:hover,
.mobile-navigation__summary:focus {
    background: var(--rr-primary);
    color: var(--rr-background);
    border-color: transparent;
    box-shadow: var(--rr-shadow-sm);
    text-decoration: none;
}

.mobile-navigation__home:focus-visible,
.mobile-navigation__cart:focus-visible,
.mobile-navigation__summary:focus-visible,
.mobile-navigation__link:focus-visible,
.mobile-navigation__dropdown-toggle:focus-visible {
    outline: 0.125rem solid var(--rr-primary);
    outline-offset: 0.25rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 0 0 80px;
    margin-bottom: 80px;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
    text-align: center;
    gap: clamp(1rem, 1.875rem, 2rem);
}

.hero__branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.hero__branding>p>span {
    color: var(--rr-primary);
}

.hero__branding>p {
    font-family: 'Inter';
    margin: 8px 0 0 0;
}

.hero__logo {
    margin-bottom: 2rem;
    max-width: 780px;
    height: 62px;
    color: var(--rr-primary);
}

.hero__kicker {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;

}

.hero__title {
    margin: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    font-family: Orbitron;
    font-weight: 800;
    font-size: 3.875rem;
    line-height: 3.875rem;
    text-transform: uppercase;
    padding-bottom: 8px;
    letter-spacing: -0.025em;
}

.hero__subtitle {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;

}

.hero__gallery {

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.25rem;

}

.hero-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.hero-gallery__item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.hero-gallery__item img {
    display: block;
    border-radius: var(--rr-radius);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    height: auto;
    width: auto;
}

.hero-gallery__item figcaption,
.hero-gallery__item p {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--rr-text);
}

.hero-gallery__item--video {
    padding: 1.25rem 1.25rem 1.5rem;
}

.hero-gallery__media--video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: inset 0 0 0 0.0625rem var(--rr-text);
}

.hero-gallery__media--video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-gallery__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: var(--rr-primary);
    color: var(--rr-background);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    justify-self: center;
}

.hero-gallery__cta:hover,
.hero-gallery__cta:focus {
    box-shadow: 0px 8px 21px 0px rgba(142, 232, 85, 0.25), 0px -8px 21px 0px rgba(142, 232, 85, 0.25);
}

.hero-gallery__cta>span {
    margin-right: 6px;
}

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

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

.brand-strip {
    background: rgba(var(--rr-graphite), 0.85);
    backdrop-filter: blur(0.75rem);
    border: 0.0625rem solid rgba(var(--rr-text), 0.05);
    border-radius: var(--rr-radius);
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.cart-information {
    display: flex;
}

.cart-information h3 {
    margin: 0;
    font-size: 42px;
    line-height: 42px;
    font-weight: 700;
}

.cart-information p {
    font-family: 'Inter';
    font-size: 20px;
}

.cart-information__icon {
    margin-right: 20px;
}

.brand-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
}

.brand-strip__inner span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.brand-strip__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    align-items: center;
}

.brand-strip__logos span {
    font-weight: 700;
}

/* Advantages */
.advantages,
.popular-products,
.reviews,
.contact-section {
    margin-top: 80px;
    padding-bottom: 80px;
}

.faq {
    margin-top: clamp(2.5rem, 5rem, 6rem);
}

.cart-page {
    margin-top: clamp(2rem, 2.5rem, 3rem);
}

.contact-section__list .social__list {
    margin: clamp(0.5rem, 1.25rem, 1.5rem) 0 0;
}

.advantage-card {
    position: relative;
    background: none;
    border-radius: var(--rr-radius);
    padding: 20px;
    border: 0.0625rem solid var(--rr-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.advantage-card__icon {
    color: var(--rr-primary);
    border: var(--rr-secondary) 0.0625rem solid;
    background-color: var(--rr-background);
    border-radius: 100%;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0.9375rem;
}

.advantage-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.advantage-card p {
    margin: 0;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

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

.button-cart {
    grid-column: 2 / span 3;
    padding: 0.9375rem;
    text-align: center;
    border: var(--rr-primary) 0.0625rem solid;
    border-radius: 0.75rem;
    margin: 1.5rem 0 0;
    color: var(--rr-primary);
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    gap: 8px;
    display: flex;
    justify-content: center;
}

.button-cart:focus {
    color: var(--rr-background);
    background-color: var(--rr-primary);
}

.button-cart:is(:hover, :focus-visible, :active) {
    color: var(--rr-background);
    background-color: var(--rr-primary);
}

.columns4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Sections with shared padding */
.service-highlight {
    margin: clamp(2.5rem, 5rem, 6rem) 0;
}

.popular-products .cards-grid {
    gap: 2rem;
}

.popular-product-card {
    position: relative;
}

.popular-product-card__header {}

.popular-product-card__badge {}

.section-header {
    text-align: center;
    max-width: 47.5rem;
    margin: 0 auto 3.5rem;
}

.section-header .section-subtitle {
    margin-bottom: 0;
}

.section-header__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.section-heading {
    margin-bottom: 30px;
    padding-left: 345px;
}

.section-heading>.eyebrow {
    margin-bottom: 0.25rem;
}

.section-heading__top {
    display: grid;
    gap: 0.75rem;
}

.section-heading__top h2,
.section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.3rem);
}

.section-heading__top p,
.section-heading p {
    margin: 0;
    max-width: 42.5rem;
}

.section-heading__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.section-heading.section-heading--center {
    justify-items: center;
    text-align: center;
}

.section-heading.section-heading--center .section-heading__actions {
    justify-content: center;
}

/* Services */
.process,
.services {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 2.25rem;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(var(--rr-danger), 0.12);
    pointer-events: none;
}

.service-card__icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    background: rgba(var(--rr-danger), 0.1);
    color: var(--rr-primary);
}

.service-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Process */

.process-steps {
    display: grid;
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 1.7rem;
    bottom: 1.7rem;
    left: 1.6875rem;
    width: 0.125rem;
    background: rgba(var(--rr-danger), 0.25);
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative;
}

.process-step__index {
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 1.125rem;
    background: rgba(var(--rr-danger), 0.1);
    color: var(--rr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step__body {
    background: var(--rr-surface);
    border-radius: var(--rr-radius);
    padding: 1.75rem 2rem;
    box-shadow: var(--rr-shadow-sm);
    border: 0.0625rem solid rgba(var(--rr-text), 0.7);
}

.process-step__body h3 {
    margin: 0 0 0.75rem;
}

/* Reviews */

.reviews__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.reviews__title {
    display: inline-flex;
    align-items: flex-end;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    flex-wrap: wrap;
    flex-grow: 1;
}

.reviews__heading {
    margin: 0;
    font-size: clamp(3rem, 5vw, 3.25rem);
    font-weight: 800;
}

.reviews__rating-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: var(--rr-lighted);
}

.reviews__rating-inline-scale,
.reviews__rating-inline-value {
    color: var(--rr-primary);
}

.reviews__rating-inline-label {
    text-transform: none;
    padding-right: 0.375rem;
}

.reviews__nav {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: auto;
}

.reviews__nav-button {
    border-radius: 100%;
    border: 0;
    background: none;
    color: var(--rr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.reviews__nav-button svg {
    width: 1.375rem;
    height: 1.375rem;
    border: 1px solid var(--rr-lighted);
    border-radius: 100%;
    padding: 0.5rem;
}

.reviews__nav-button:is(:hover, :focus-visible, :active) svg {
    background: var(--rr-primary);
    color: #010101;
    border-color: var(--rr-primary);
}

.reviews__nav-button:disabled:is(:hover, :focus-visible, :active) svg,
.reviews__nav-button[aria-disabled="true"]:is(:hover, :focus-visible, :active) svg {
    background: none;
    color: var(--rr-primary);
}

.reviews__nav-button:disabled,
.reviews__nav-button[aria-disabled="true"] {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews__nav-button--prev {
    transform: rotate(180deg);
}

.reviews__rating-page-counter {
    font-family: 'Inter';
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 400;
    color: var(--rr-primary);
}

.reviews__viewport {
    overflow: hidden;
    margin: 1.875rem 0 0;
}

.reviews__track {
    display: flex;
}


.reviews__group {
    min-width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
    background: var(--rr-surface-alt);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 21.875rem 1fr;
    grid-template-rows: repeat(2, 192.5px);
    color: #A9A8A8B2;
}

.review-card__identity {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 0;
    font-family: 'Inter';
    font-size: 1.25rem;
    font-weight: 500;
}

.review-card__photo {
    width: 5.5rem;
    height: 6.75rem;
    border-radius: 0.25rem;
    object-fit: cover;
}

.review-card__meta {
    display: grid;
    gap: 0.25rem;
}

.review-card__name {
    color: var(--rr-primary);
}

.review-card__date {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(169, 168, 168, 0.7);
}

.review-card__text {
    font-family: 'Inter';
    margin: 0;
    color: var(--rr-lighted);
}

.review-card__title {
    color: var(--rr-primary);
    margin: 0;
    align-items: flex-end;
    display: flex;
    font-size: 1.5rem;
    font-weight: 600;
}

.review-card__source {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-family: 'Inter';
    font-size: 14px;
    justify-content: flex-end;
}

.review-card__source-label {}

.review-card__rating {
    display: inline-flex;
    color: var(--rr-primary);
}

.review-card__rating-star svg {
    display: block;
    width: 0.75rem;
    height: 0.75rem;
}

/* Contact section */


.contact-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "info map"
        "form form";
    gap: 1.25rem;
    border-radius: var(--rr-radius);
    overflow: hidden;
}

.contact-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    color: white !important;
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    color: white !important;
    grid-area: info;
}

.contact-section__content p {
    margin: 0;
}

.contact-section__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: 'Inter';
    font-weight: 400;
}

.contact-section__list a {
    font-weight: 400;
}

.contact-section__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    grid-column: 1 / span 2;
    padding: 1rem 0;
    border-bottom: var(--rr-secondary) 0.0625rem solid;
}

.contact-section__item p {
    color: var(--rr-primary);
    font-size: 18px;
}

.contact-section__item span {
    font-size: 20px;
}

.contact-section__item-left {
    grid-column: 1;
}

.contact-section__item-right {
    grid-column: 2;
    flex-direction: column;
}

.contact-section__item-right p {
    margin-bottom: 10px;
}

option {
    background-color: var(--rr-primary);
    border-radius: var(--rr-radius-sm);
}

option:hover {
    background-color: #CAFFA9;
    color: var(--rr-background);
}

option:active {
    background: none;
}

.contact-section__item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--rr-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-section__item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.contact-section__item a {
    color: var(--rr-text);
    font-weight: 400;
    text-decoration: none;
}

.contact-section__item h {
    color: var(--rr-primary);

}

.contact-section__item ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs {
    margin-bottom: 2.5rem;
    font-family: 'Inter';
}

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

.contact-section__item a:focus,
.contact-section__item a:hover,
.breadcrumbs a:focus,
.breadcrumbs a:hover,
.products-meta__column ul a:focus,
.products-meta__column ul a:hover {
    color: var(--rr-primary);
}

.breadcrumbs a {
    color: var(--rr-muted);
    text-decoration: none;
}

.breadcrumbs-separator {
    padding-left: 7px;
}


.breadcrumbs-separator svg {
    width: 1rem;
}

.contact-section__map {
    grid-area: map;
    position: relative;
    border-radius: var(--rr-radius);
    min-height: 20rem;
    overflow: hidden;
    background: var(--rr-background-deep);
}

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

.contact-section__form {
    grid-area: form;
    padding: 1.25rem;
    background-color: var(--rr-primary);
    border-radius: var(--rr-radius);
    color: var(--rr-background);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    font-family: 'Inter';
}

.contact-section__form .select2-results__options {
    border-radius: var(--rr-radius-sm);
    margin-top: 8px;
    max-height: min-content !important;
}

.contact-section__form-fields>button {
    border-radius: var(--rr-radius-sm);
    text-transform: uppercase;
    font-family: 'Orbitron';
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
}

.contact-section__form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.contact-section__form-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    color: var(--rr-background);
}

.contact-section__form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.75;
}

.contact-section__form-title {
    font-family: 'Orbitron';
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
}

.contact-section__form-title>span {
    color: var(--rr-text);
}

.contact-section__form-fields {
    display: grid;
    gap: 0.5rem;
}

.contact-section__form-grid {
    display: grid;
    gap: 0.5rem;
}

.contact-section__form .select2-container--default .select2-results__option[aria-selected=true], 
.select2-container--default .select2-results__option[data-selected=true] {
    background-color: #CAFFA9;
}

.contact-section__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem 0 0;
    background-color: var(--rr-lighter);
    border-radius: var(--rr-radius-sm);
}

.contact-section__field span {
    color: var(--rr-background);
}


.contact-section__field input {
    padding: 18px 16px;
    color: #1D1D1D80;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
    border-radius: var(--rr-radius-sm);
}

.contact-section__field textarea {
    padding: 0.85rem 1rem;
    color: #1D1D1D80;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
    border-radius: var(--rr-radius-sm);
    min-height: 10rem;
    resize: vertical;
}

input,
select,
textarea {
    background: none;
    border-radius: var(--rr-radius-sm);
}

.contact-section__field select {
    padding: 1rem;
    color: var(--rr-secondary);
    outline: none;
    border-radius: var(--rr-radius-sm);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-section__field select.contact-subject-select--enhanced {
    display: none;
}

.contact-section__field select:hover,
.contact-section__field select:focus {}

.contact-section__field select option {
    background-color: #A0E971;
    color: var(--rr-secondary);
}

.contact-section__field select option:hover,
.contact-section__field select option:focus,
.contact-section__field select option:checked {
    background-color: #CAFFA9;
}

.contact-section__field .select2-container {
    width: 100% !important;
}

.contact-section__field .select2-container .select2-selection--single {
    height: auto;
    border: none;
    background: none;
    border-radius: var(--rr-radius-sm);
    padding: 2px 0;
    margin: 0;
}

.contact-section__field .select2-container .select2-selection__rendered {
    padding: 16px !important;
    color: var(--rr-background) !important;
    line-height: initial !important;
    font-weight: 500;
}

.contact-section__field .select2-container .select2-selection__placeholder {
    color: var(--rr-background) !important;
}

.contact-section__field .select2-container .select2-selection__arrow {
    height: 100%;
    right: 1rem;
}

.select2-search__field {
    margin: 0;
}

.select2-selection__rendered {
    line-height: 1;
}

.product-card__title-link {
    color: var(--rr-primary);
}

.contact-subject-select2-dropdown .select2-results__option {
    background-color: #A0E971;
    color: #1D1D1D;
    padding: 16px;
}

.contact-subject-select2-dropdown .select2-results__option--highlighted[aria-selected],
.contact-subject-select2-dropdown .select2-results__option--highlighted {
    background-color: #CAFFA9 !important;
    color: #1D1D1D !important;
}

.contact-section__form-note {
    margin: 22px 0 4px;
}


.contact-section__form-note a {
    color: var(--rr-background);
}

/* Service highlight */

.service-highlight__box {
    background: var(--rr-surface);
    border-radius: var(--rr-radius);
    padding: clamp(2.8rem, 6vw, 3.8rem);
    box-shadow: 0 1.875rem 4.375rem var(--rr-lighted);
    border: 0.0625rem solid rgba(var(--rr-primary), 0.35);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
    gap: 2rem;
    align-items: center;
    color: var(--rr-secondary);
}

.service-highlight__box .eyebrow {
    color: var(--rr-muted);
}

.service-highlight__box h2 {
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    color: var(--rr-secondary);
}

.service-highlight__box p {
    margin: 0;
    max-width: 32.5rem;
}

.service-highlight__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-highlight__box .button {
    box-shadow: none;
}

/* FAQ */

.faq-list {
    display: grid;
    gap: 8px;
    margin: 0 auto;
}

.faq-item {
    background: none;
    border-radius: var(--rr-radius);
    border: 1px solid var(--rr-border);
    overflow: hidden;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
    background-color: var(--rr-primary);
    color: var(--rr-background);
    border-color: var(--rr-primary);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

.plain-text {
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
}

.faq-item summary svg {
    color: white;
    transition: transform 0.2s ease;
    min-width: 32px;
}

.faq-item[open] summary svg {
    transform: rotate(45deg);
    color: var(--rr-background);
}

.faq-item p {
    margin: 0.75rem 0 0;
    font-family: 'Inter';
    max-width: 285px;
}

/* Footer */
.site-footer {
    color: var(--rr-lighted);
    margin-top: 40px;
}


.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2.25rem;
    font-family: 'Inter';
}

.footer-main__column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.footer-main__column--contact {
    color: var(--rr-primary);
}

.footer-main__column h3 {
    margin: 0;
    color: var(--rr-text);
    font-family: 'Orbitron';
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--rr-lighted);
}

.footer-nav a {
    text-decoration: none;
    color: var(--rr-lighted);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section h4 {
    margin: 0;
    color: var(--rr-text);
}

.footer-section address {
    font-style: normal;
    color: var(--rr-lighted);
    line-height: 20px;
}

.footer-section p {
    margin: 0;
    line-height: 1.6;
}

.social__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
}

.social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: var(--rr-text);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social__link svg {
    width: auto;
    height: 100%;
    max-height: 2.5rem;
}

.social__link:focus,
.social__link:hover {
    border-color: var(--rr-secondary);
    color: var(--rr-secondary);
    transform: translateY(-0.125rem);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
    font-size: 3.5rem;
    font-weight: 400;
}

.footer-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--rr-primary);
    font-weight: 400;
    text-decoration: none;
}

.footer-contact__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--rr-secondary);
}

.site-footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.footer-bottom__logo svg {
    width: 12.5rem;
    height: auto;
    color: var(--rr-primary);
}

.columns1 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.doc_url {
    color: var(--rr-lighted);
    text-decoration: underline !important;
    font-family: 'Inter';
    font-size: 1rem;
}

/* Responsive tweaks */


/* Produkte page */
.products-hero {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
    position: relative;
    background-color: var(--rr-background);
}

.products-hero__header {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
}

.products-hero__logo-wrapper {
    padding: 0.75rem;
    display: flex;
    color: var(--rr-primary);
    justify-content: center;
}

.products-hero__logo {
    display: block;
    width: clamp(4rem, 10vw, 5.5rem);
    height: auto;
}

.products-hero__heading {
    flex: 1 1 auto;
}

.products-hero__title-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1.5rem);
}

.products-hero__count {
    color: var(--rr-lighted);
    font-family: 'Inter';
}

.products-hero__title {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
}

.products-hero__subtitle {
    margin: 0.85rem 0 0;
    color: var(--rr-muted);
    font-size: 1.05rem;
    max-width: 32.5rem;
}

.products-categories {
    grid-column-start: 2;
}

.products-categories__grid {
    display: flex;
    gap: clamp(2px, 0.5rem, 0.75rem);
}

.product-category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 0.0625rem solid var(--rr-border);
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.product-category-card a {
    color: var(--rr-lighted);
}

.product-category-card--active a,
.product-category-card:hover a {
    color: var(--rr-background);
}

.product-category-card__link {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    gap: 6px;
}

.product-category-card--active,
.product-category-card:hover {
    background-color: var(--rr-primary);
    color: var(--rr-background);
    border-color: transparent;
}

.product-category-card--tires::before {
    background: rgba(var(--rr-primary), 0.28);
}

.product-category-card--rims::before {
    background: rgba(var(--rr-mint), 0.24);
}

.product-category-card--sets::before {
    background: rgba(var(--rr-sky), 0.26);
}

.product-category-card--accessories::before {
    background: rgba(var(--rr-lilac), 0.24);
}

.product-category-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-category-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 62.4375rem;
    background: rgba(var(--rr-primary), 0.12);
    color: var(--rr-primary);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    width: fit-content;
}

.product-category-card__title {
    margin: 0;
    font-weight: 500;
}

.product-category-card__excerpt {
    margin: 0;
    color: var(--rr-text-soft);
    font-size: 1.02rem;
    line-height: 1.6;
}

.product-category-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.product-category-card__features li {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--rr-muted);
    font-size: 0.95rem;
}

.product-category-card__features svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--rr-primary);
    flex-shrink: 0;
}

.product-category-card__button {
    align-items: center;
    gap: 0.55rem;
    background: var(--rr-primary);
    color: var(--rr-navy);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.9rem 1.6rem;
    border-radius: 62.4375rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-category-card__button:focus {
    background: var(--rr-primary-light);
    box-shadow: 0 1.125rem 2.5rem rgba(var(--rr-primary), 0.45);
    transform: translateY(-0.1875rem);
}

.product-category-card__button:is(:hover, :focus-visible, :active) {
    background: var(--rr-primary-light);
    box-shadow: 0 1.125rem 2.5rem rgba(var(--rr-primary), 0.45);
    transform: translateY(-0.1875rem);
}

.product-category-card__media {
    position: relative;
    z-index: 1;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.product-category-card__media img {
    max-width: 3rem;
    max-height: 2.5rem;
    object-fit: contain;
}

.products-list__layout {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(15rem, 24%) 1fr;
    grid-template-rows: 1fr 82px;
}

.products-list__filters {
    background: var(--rr-surface-alt);
    border-radius: var(--rr-radius);
    padding: clamp(0.75rem, 4vw, 1.25rem);
    position: sticky;
    top: 0;
    align-self: start;
    grid-row: 2 / 4;
    font-family: 'Inter';
}

.products-list__filters-title {
    margin: 0;
    font-family: 'Orbitron';
    font-size: 24px;
}

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

.product-filters__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.product-filters__field div {
    display: flex;
}

.product-filters__field--columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-filters__input,
.product-filters__select {
    width: 100%;
    border-radius: var(--rr-radius-sm);
    border: 0.0625rem solid var(--rr-border);
    padding: 0.625rem;
    font-size: 1rem;
    color: var(--rr-lighted);
}

.product-filters__select {
    width: 100%;
    border-radius: var(--rr-radius-sm);
    border: 0.0625rem solid var(--rr-border);
    padding: 0.625rem;
    font-size: 1rem;
    color: var(--rr-lighted);
    appearance: none;
}

.product-filters__input:focus,
.product-filters__select:focus {
    outline: none;
}

.products-list__filters-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--rr-border);
}

.products-list__filters-active {
    color: var(--rr-lighted);
    margin: 0;
    font-weight: 500;
}

.products-list__filters-active-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.products-list__filters-active-link--active {
    color: var(--rr-primary);
}

.products-list__filters-active-link:focus {
    text-decoration: none;
}

.products-list__filters-active-link:is(:hover, :focus-visible, :active) {
    text-decoration: none;
}

.woocommerce-result-count,
.woocommerce-notices-wrapper {
    display: none;
}

.product-filters__footer:empty {
    display: none;
}

.product-filters__found {
    font-weight: 600;
    text-transform: none;
}


.product-filters__reset {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-weight: 600;
    color: #30303066 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-filters__reset--active {
    color: var(--rr-primary) !important;
}

.product-filters__reset:focus {
    color: var(--rr-text);
}

.product-filters__reset:is(:hover, :focus-visible, :active) {
    color: var(--rr-text);
}

.rr-modal__body {
    color: #1d1d1d;
}

.rr-modal__body .product-filters__label {
    color: #1d1d1d;
    font-weight: 600;
    text-transform: none;
}

.rr-modal__body .product-filters__input {
    background: #ffffff;
    color: #1d1d1d;
}

.rr-modal__body .product-filters__select {
    background: #ffffff;
    color: #1d1d1d;
}

.rr-modal__body .product-filters__input:focus,
.rr-modal__body .product-filters__select:focus {
    border-color: var(--rr-primary);
}

.rr-modal__body .select2-results__options {
    background-color: white;
    color: #4D4D4D;
}

.rr-modal__body .select2-results__option {
    padding: 6px 10px;
    text-align: center;
}

.products-list__mobile-actions {
    display: none;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.products-list__mobile-action {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 62.5rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.16);
    background: var(--rr-surface-alt);
    color: var(--rr-text);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.products-list__mobile-action:focus {
    transform: translateY(-0.0625rem);
}

.products-list__mobile-action:is(:hover, :focus-visible, :active) {
    transform: translateY(-0.0625rem);
}

.products-list__content {
    grid-column: 2 / end;
}

.product-card__body button {
    background-color: var(--rr-primary);
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius-sm);
    padding: 0.63rem;
}

ul::before {
    content: none !important;
    display: none !important;
}

.products-list__toolbar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.products-list__toolbar .woocommerce-result-count {
    margin: 0;
    font-size: 0.95rem;
    color: var(--rr-muted);
}

.rr-shop-ordering {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.rr-shop-ordering__label {
    display: block;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--rr-primary);
}

.rr-shop-ordering__field {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.rr-shop-ordering__field::after {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 0.125rem solid rgba(255, 255, 255, 0.75);
    border-bottom: 0.125rem solid rgba(255, 255, 255, 0.75);
    transform: translateY(-50%) rotate(45deg);
    right: 16px;
    top: 50%;
}

.rr-shop-ordering__select {
    width: 100%;
    padding: 10px 33px 10px 16px;
    border-radius: 8px;
    border: 0;
    background: var(--rr-surface-alt);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    text-align-last: center;
}

.rr-shop-ordering__select option {
    text-align: center;
    color: inherit;
    border-radius: 4px;
    white-space: nowrap;
}

.rr-shop-ordering .select2-selection__rendered {
    padding: 0 !important;
    color: white !important;
}

.rr-shop-ordering .select2-results__option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rr-shop-ordering__select option:hover {
    background-color: var(--rr-primary);
    color: #1D1D1D;
}

.rr-shop-ordering .select2-selection.select2-selection--single {
    background-color: #303030;
    color: white;
    align-content: center;
    padding: 8px 40px 8px 16px;
    border: 0;
    border-radius: 8px;
}

.rr-shop-ordering__select:focus,
.rr-shop-ordering__select:focus-visible {
    outline: none;
    box-shadow: none;
}

.rr-shop-ordering .select2-selection__arrow b {
    border: 0 !important;
}

.products-list__after {
    display: flex;
    justify-content: center;
}

.products-list__after .woocommerce-pagination {
    width: 100%;
    margin-top: 40px;
}

.products-list__content ul.products {
    margin: 0;
    gap: 20px;
}

.products-meta {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
    border-top: 0.0625rem solid rgba(var(--rr-neutral), 0.08);
    background-color: var(--rr-background);
}

.products-meta__grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    margin-bottom: clamp(2.2rem, 6vw, 3.5rem);
}

.products-meta__column h3 {
    margin: 0 0 1rem;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--rr-muted);
}

.products-meta__column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.products-meta__column ul a {
    color: var(--rr-text-soft);
    text-decoration: none;
    font-weight: 500;
}

.products-meta__column p {
    margin: 0;
    color: var(--rr-text-soft);
    line-height: 1.6;
}

.products-meta__cta a {
    text-decoration: none;
    color: var(--rr-primary);
    font-weight: 700;
}

.products-meta__cta-phone {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
}

.products-meta__cta-mail {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
}

.product-purchase__request {
    display: none;
}

.measure_units {
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: 400;
    color: var(--rr-lighted);
}

hr {
    margin: 0 2.5rem;
    border-color: var(--rr-secondary);
    border-width: 0.0625rem;
    border-style: solid;
}

.shedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.shedule p {
    color: var(--rr-lighted);
}

.comma {
    display: none;
}

body.has-open-modal {
    overflow: hidden;
}

.rr-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1300;
    font-family: 'Inter';
}

.rr-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.rr-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.rr-modal__dialog {
    position: relative;
    background: #ffffff;
    color: #1d1d1d;
    border-radius: var(--rr-radius);
    width: 834px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(1.5rem);
    transition: transform 0.25s ease;
}

.rr-modal__nonce {
    position: relative;
}

.rr-modal.is-open .rr-modal__dialog {
    transform: translateY(0);
}

.rr-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;    
}

.rr-modal__title {
    margin: 0;
    font-size: 32px;
    line-height: 34px;
    font-weight: 500;
}

.wc-clear-cart {
    text-transform: uppercase;
    font-family: 'Orbitron';
    color: var(--rr-primary);
    align-self: end;
    padding-right: 0;
    padding-bottom: 0;
    font-size: 15px;
    padding-top: 7px;
    font-weight: 400;
    text-decoration: underline;
}

.wc-clear-cart:is(:hover, :focus-visible, :active) {
    background: none;
    transform: initial;
    box-shadow: none;
}

.rr-modal__close {
    border: none;
    color: #1d1d1d;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    background: none;
    padding: 0;
}

.rr-modal__close svg {
    width: 28px;
    height: 28px;
    transform: rotate(45deg);
    margin-right: -4px;
}

.rr-modal__close:focus {}

.rr-modal__close:is(:hover, :focus-visible, :active) {}

.rr-modal__body {
    overflow-y: auto;
    flex: 1 1 auto;
    margin-top: 40px;
}

.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;
}

.rr-modal__options {
    display: flex;
    flex-direction: column;
}

.rr-modal__option {
    border: 0;
    padding: 12px 20px;
    background: #ffffff;
    color: #1d1d1d;
    text-align: left;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.rr-modal__option:focus {
    transform: translateY(-0.0625rem);
}

.rr-modal__option:is(:hover, :focus-visible, :active) {
    transform: translateY(-0.0625rem);
}

.rr-modal__option.is-active {
    border-color: var(--rr-primary);
    background: rgba(131, 211, 80, 0.18);
}

.rr-modal__body .select2-results__options {
    background-color: #ACACAC33;
}

.order-modal {
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.order-modal__hint {
    margin: 0;
    font-size: 16px;
    line-height: 18px;
    max-width: 650px;
}

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

.order-modal__form {
    display: flex;
    flex-direction: column;
}

.order-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.order-modal__field {
    display: flex;
    flex-direction: column;
}


.order-modal__field textarea,
.order-modal__field input {
    border-radius: 8px;
    border: 1px solid #30303099;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
    color: #1d1d1d;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-modal__field textarea {
    resize: vertical;
    min-height: 120px;
}

.order-modal__field input:focus,
.order-modal__field textarea:focus {
    outline: none;
    border-color: var(--rr-background);
}

.order-modal__submit {
    width: 100%;
    margin: 16px 0 0;
    border-radius: var(--rr-radius-sm);
    background-color: var(--rr-primary);
    color: var(--rr-background);
    text-transform: initial;
    font-size: 16px;
    font-family: 'Orbitron';
    font-weight: 600;
    text-transform: uppercase;
}

.order-modal__submit svg {
    height: 22px;
    width: 22px;
}

.order-modal__submit:hover,
.order-modal__submit:focus {
    background-color: var(--rr-primary);
    transform: none;
}

.rr-modal--notice .rr-modal__dialog {
    width: min(32rem, 100%);
    padding: 0;
}

.notice-modal {
    padding: 50px;    
}

.rr-modal--notice .rr-modal__body {
    margin-top: 0;
}

.notice-modal__message {
    margin: 0;
    font-family: 'Orbitron';
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--rr-surface-alt);
}

.notice-modal--success {
    background-color: rgb(var(--rr-success));
    border-radius: 12px;
    max-width: 516px;
    text-align: center;
}

.notice-modal--error .notice-modal__message {
    background-color: rgb(var(--rr-danger));
}

.cart-page__notice {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: var(--rr-radius);
    background: rgba(var(--rr-danger), 0.12);
    color: var(--rr-text);
    font-family: 'Inter', sans-serif;
}

.cart-page__notice p {
    margin: 0;
}

.copyright {
    color: var(--rr-lighted);
    margin: 0;
}

.filter__checkboxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 8px;
}

.filter__checkbox {
    position: relative;
}

.filter__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter__checkbox label {
    display: inline-flex;
    align-items: center;
    border-radius: var(--rr-radius-sm);
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter__checkbox label::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--rr-border);
    background-color: transparent;
    color: #1D1D1D;
    font-size: 14px;
    line-height: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 9px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter__checkbox input[type="checkbox"]:checked+label {}

.filter__checkbox input[type="checkbox"]:checked+label::before {
    background-image: var(--rr-checkbox-icon);
    border-color: #fff;
    border-color: transparent;
}

.filter__checkbox input[type="checkbox"]:focus-visible+label,
.filter__checkbox input[type="checkbox"]:focus+label {
    box-shadow: none;
}

.product-filters select {
    width: 100%;
    border-radius: var(--rr-radius-sm);
    border-color: var(--rr-border) !important;
    padding: 10px;
    color: var(--rr-lighted);
    margin-top: 6px;
}

.product-filters select::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 15.5px;
    pointer-events: none;
    border-right: 0.125rem solid white;
    border-bottom: 0.125rem solid white;
    transform: translateY(-79%) rotate(45deg);
    right: 14px;
}

.product-filters select option {
    background-color: #3C3C3C;
    color: white;

}

.rr-modal__sort {
    font-size: 18px !important;
    line-height: 18px !important;
}

.product-filters .select2-container {
    width: 100% !important;
    font-family: "Inter", sans-serif;
}

.product-filters .select2-container .select2-selection--single,
.product-filters .select2-container .select2-selection--multiple {
    background: transparent;
    border: 1px solid #30303066;
    border-radius: var(--rr-radius-sm) !important;
    color: #1D1D1D;
    font-size: 16px;
    padding: 10px;
    align-content: center;
    height: initial;    
}

.product-filters .select2-container .select2-selection--single .select2-selection__rendered {
    color: white;
    padding: 0;    
}

.product-filters--modal .select2-container .select2-selection--single .select2-selection__rendered {
    color: #1D1D1D;
}

.rr-modal .product-filters .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 24px !important;
}

.rr-modal input.select2-search__field {
    line-height: 24px;
}

.product-filters .select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--rr-lighted);
}

.product-filters .select2-container .select2-selection__arrow {
    height: 100%;
    right: 0.75rem;
}

.product-filters .select2-container .select2-selection__clear {
    color: var(--rr-lighted);
    margin: auto 0;
}

.product-filters .select2-container--default .select2-selection--multiple {
}

.product-filters .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    min-height: 22px;
    padding: 0;
}

.product-filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3C3C3C;
    border: none;
    border-radius: var(--rr-radius-xs);
    color: var(--rr-text);
    font-size: 12px;
    line-height: 12px;
    padding: 6px 8px;
}

.product-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--rr-background);
    font-weight: 600;
    margin-right: 0.25rem;
}

.product-filters .select2-dropdown {
    background-color: #3C3C3C;
    border: 0.0625rem solid var(--rr-border);
    color: var(--rr-text);
}

.product-filters .select2-search--dropdown .select2-search__field {
    background: transparent;
    border: 0.0625rem solid var(--rr-border);
    border-radius: var(--rr-radius-xs);
    color: var(--rr-text);
}

.product-filters .select2-results__option {
    background-color: #3C3C3C;
    color: var(--rr-text);
}

.product-filters .select2-results__option--highlighted[aria-selected],
.product-filters .select2-results__option--highlighted {
    background-color: var(--rr-primary);
    color: var(--rr-background);
}

.product-filters--modal > *:first-child {
    border-top: 1px solid #4D4D4D1A;
}

.rr-filters-modal__body {
   
}

.rr-filters-modal__body .product-filters--modal {
    flex: 0 1 auto;
}

.rr-filters-modal__body .select2-container--default .select2-results__options[aria-multiselectable="true"] {
    margin: 6px 0;
}

.rr-filters-modal__body .select2-container--default .select2-results__options {
    margin: 10px 0;
}

.rr-filters-modal__body .select2-container--default .select2-results__options[aria-multiselectable="true"] .select2-results__option {
    margin: 0;
    background-color: transparent;
}

.rr-filters-modal__body .select2-container--default .select2-results__options .select2-results__option--highlighted[aria-selected] {
    background-color: var(--rr-primary);
    border-radius: 4px;
    color: #1D1D1D;
}

.rr-filters-modal__body span.select2-results {
    background-color: white;
}

.rr-filters-modal__body .select2-container--default .select2-results__options[aria-multiselectable="true"] .select2-results__option--highlighted[aria-selected] {
    color: #4D4D4D;
    background-color: transparent;
}

.rr-filters-modal__body .select2-results__option {
    margin: 0 auto;
}

.filter__short-fields {
    display: flex;
    gap: 8px;
}

.filter__short-field,
.filter__select {
    margin-top: 20px;
    width: 100%;
    gap: 6px;
}

.filter__select label {
    font-size: 16px;
    font-weight: 400;

}

.orderby option {
    background-color: #303030;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.cart-layout {
    display: grid;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 80px;
}

input[type="checkbox"]+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--rr-border);
    border-radius: var(--rr-radius-xs);
    background: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 9px;
    margin-right: 0.5em;
    vertical-align: middle;
}

input[type="checkbox"]:checked+label::before {
    background-color: #fff;
    background-image: var(--rr-checkbox-icon);
    border-color: #fff;
}

.contact-section__field input::placeholder,
.contact-section__field select::placeholder,
.contact-section__field textarea::placeholder {
    color: #1D1D1D80;
}

.filter__select li[title='Automarke'], li[title='Marke'], li[title='Farben']{
    display: none;
}

.select2-search__field::placeholder { 
   color: var(--rr-lighted);
}

.select2-search__field::-webkit-input-placeholder,
.select2-search__field:-moz-placeholder,
.select2-search__field::-moz-placeholder,
.select2-search__field:-ms-input-placeholder,   
.select2-search__field::-ms-input-placeholder {
    color: var(--rr-lighted);
}

.unsere-produkte-hero {
    padding: 0;
    background: transparent;
}

.unsere-produkte-hero .container {
    padding: 0;
}

.unsere-produkte-hero__logo {
    display: none;
}

.unsere-produkte-hero {
    width: 100%;
    max-width: 780px;
    margin: auto;
}

.unsere-produkte-hero__content {
    max-width: 100%;
    text-align: left;
    width: 100%;
}

.unsere-produkte-hero__title {
    font-size: 66px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.unsere-produkte-hero+div {
    width: 100%;
    max-width: 780px;
    margin: auto;
    font-family: 'Inter';
    padding-top: 5px;
    margin-bottom: 40px;
}

.unsere-produkte-hero+div>span {
    color: var(--rr-primary);
}

.unsere-produkte-category-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem);
    border-radius: 12px;
    padding: 20px;
    transition: background-color 0.25s ease;
    background-color: var(--rr-surface-alt);
}

.unsere-produkte-category-card__media {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border-radius: 1.25rem;
    min-height: 10rem;
}

.unsere-produkte-category-card__content {
    height: 100%;
}

.unsere-produkte-category-card__text {
    height: 100%;
}


.unsere-produkte-category-card__description {
    margin-top: auto;
    font-family: 'Inter';
}


.unsere-produkte-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 20px;
}

.rating_hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.product-single__section {
    padding-bottom: 40px;
}

.woocommerce-pagination a.page-numbers.prev,
.woocommerce-pagination a.page-numbers.next,
.woocommerce-pagination span.page-numbers.prev,
.woocommerce-pagination span.page-numbers.next {
    align-items: center;
    gap: 6px;
}

.woocommerce-pagination .rr-pagination__icon {
    display: inline-flex !important;
    align-items: center;
    padding: 0 !important;
}

.woocommerce-pagination .rr-pagination__icon svg {
    width: 16px;
    height: auto;
}

.woocommerce-pagination .rr-pagination__icon--prev svg {
    transform: rotate(90deg);
}

.woocommerce-pagination .rr-pagination__icon--next svg {
    transform: rotate(-90deg);
}

.page-numbers li {
    border-radius: 4px;
    border: 0 !important;
    align-content: center;
}

.page-numbers li a:hover {
    border-color: var(--rr-primary) !important;
}

.page-numbers.current {
    background-color: var(--rr-primary) !important;
    color: var(--rr-background) !important;
    border-color: transparent;
}

.columns4>a.button-cart:active {
    box-shadow: 0px 6px 12px 0px #83D3501F;
}

.mobile-navigation__panel--top {
    display: flex;
    height: 56px;
    margin-bottom: 32px;
}

.mobile-navigation__logo {
    margin: auto 0;
}

.mobile-navigation__logo svg {
    width: 130px;
    height: 32px;
    color: var(--rr-primary);
}

.mobile-navigation__close-button svg {
    width: 43px;
    height: 43px;
    transform: rotate(45deg);
}

.mobile-navigation__close-button {
    color: white;
    margin: auto 0 auto auto;
}

.product-card__tire-size {
    font-size: 12px;
    color: var(--rr-lighted);
}

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

/* ======================================== */
/* Responsive */
/* ======================================== */

/* Max-width queries */

@media (max-width: 1360px) {
    .site {
        margin: 16px;
    }
}

/* 1024px */
@media (max-width: 64rem) {

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

    .site-header {
        margin: 0;
        border: none;
    }

    .breadcrumbs {
        margin-top: 40px;
    }

    .product-category-card {
        flex-direction: column;
    }

    .product-category-card__media {
        flex: 0 0 auto;
        justify-content: flex-start;
        padding: 0;
    }

    .product-category-card__media img {
        max-width: 2.5rem;
        aspect-ratio: 1 / 1;
    }

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

    .products-list__filters {
        position: static;
    }

    .site-header__bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-main {
        gap: 1.5rem;
    }

    .footer-main__column--info {
        align-items: flex-start;
        text-align: left;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hero__branding {
        align-items: center;
        text-align: center;
    }

    .hero__gallery {
        align-items: center;
    }

    .hero-gallery__grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(13.75rem, 1fr));
    }

    .hero-gallery__cta {
        align-self: center;
        aspect-ratio: 1/1;
        height: auto !important;
    }

    .main-navigation {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        width: 100%;
        gap: 1.25rem;
    }

    .main-navigation__group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .site-header__top {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-contact {
        font-size: 32px;
    }
}

/* 900px */
@media (max-width: 56.25rem) {

    .cart-item__content {
        display: grid;
    }

    .reviews__group {
        grid-template-columns: 1fr;
    }

    .reviews__header {
        align-items: flex-start;
    }

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

    .contact-section__form {
        border-top: 0.0625rem solid rgba(var(--rr-text), 0.08);
        padding-top: 1.5rem;
    }

    .contact-section__form-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        position: relative;
        padding: 0 0 40px;
        margin-bottom: 40px;
        overflow: hidden;
    }

    div.advantage-grid {
        grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
    }

    .review-card__text {
        width: auto;
        margin-left: 6.5rem !important;
        position: relative !important;
        top: -3rem !important;
    }

    .review-card__title {
        font-size: 20px;
    }

    .contact-section__map {
        min-height: 240px;
    }

    .hero__branding {
        margin-bottom: 30px;
    }
}

/* 768px */
@media (max-width: 48rem) {
    .breadcrumbs {
        flex-wrap: wrap;
    }

    .main-navigation {
        flex-direction: column;
    }

    .main-navigation__home {
        order: -1;
    }

    .hero-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
    }

    .brand-strip__inner {
        justify-content: center;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step__index {
        justify-self: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-highlight__actions {
        justify-content: flex-start;
    }


    .products-hero__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .products-hero__logo-wrapper {
        padding: 0.5rem;
    }

    .products-hero__logo {
        width: 3.75rem;
    }

    .footer-main {
        flex-wrap: nowrap;
    }
}

@media (max-width: 720px) {
    .hero__title {
        font-size: 54px;
        width: 100%;
    }
}

/* 640px */
@media (max-width: 40rem) {

    .container {
        padding: 0;
    }

    .main-navigation {
        display: none;
    }

    .mobile-navigation {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
    }

    .mobile-navigation__more {
        position: static;
    }

    .mobile-navigation__actions {
        gap: 0.5rem;
    }

    .mobile-navigation__summary {
        font-size: 0.95rem;
    }

    .mobile-navigation__home,
    .mobile-navigation__cart {
        flex-shrink: 0;
    }

    .mobile-navigation__panel {
        position: fixed;
        top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100vw - 2.5rem);
        max-height: calc(100vh - 2.5rem);
        overflow-y: auto;
        min-width: 0;
        border-radius: var(--rr-radius-md);
    }

    body.home .hero__branding,
    body.page-template-front-page .hero__branding {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
        gap: 1.25rem;
        margin-bottom: 26px;
    }

    .hero-gallery__cta>span {
        font-size: 16px !important;
        margin-right: 16px;
        max-width: 107px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
    }

    .unsere-produkte-category-card__image {
        display: none;
    }

    .products-hero__breadcrumbs {
        gap: 0.375rem;
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .product-category-card__content {
        padding: 2rem;
    }

    .products-meta__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main__column--contact {
        align-items: flex-start;
        text-align: left;
        color: var(--rr-primary);
    }

    .social__list {
        flex-wrap: wrap;
    }

    .footer-bottom__logo svg {
        width: 103px;
        height: 25px;
    }

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

    .products-list__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .products-list__toolbar .rr-shop-ordering {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .rr-shop-ordering__field {
        width: 100%;
    }

    .rr-shop-ordering__select {
        width: 100%;
    }

    .products-list__mobile-actions {
        display: flex;
    }

    .products-list__filters {
        display: none;
    }

    .rr-modal__dialog {
        width: min(26rem, 100%);
    }

    .order-modal__submit {

    }

    .rr-modal__dialog {
        border-radius: var(--rr-radius-sm) var(--rr-radius-sm) 0 0;
    }

    .reviews__nav {
        justify-content: flex-end;
        width: 100%;
    }

    .main-navigation {
        display: none;
    }

    .hero__title {
        font-size: 2rem;
        width: 100%;
        padding: 12px 0;
    }

    .compact__header {
        font-size: clamp(1.5rem, 1.75rem, 2rem);
        line-height: clamp(1.5rem, 1.75rem, 2rem);
    }

    .footer-main {
        gap: 2rem;
        flex-direction: column;
    }

    .reviews__nav {
        justify-content: space-between;
    }

    .contact-section__item-right {
        grid-column: unset;

    }

    body.home .contact-section__map,
    body.page-template-front-page .contact-section__map {
        min-height: 9.375rem;
    }

    .product-card__thumbnail img {
        width: 80px !important;
        height: 80px !important;
    }

    .product-card__body {
        gap: 10px !important;
        flex-grow: 0 !important;
    }

    .product-card__tire-size {
        font-size: 11px !important;
    }

    .product-card__title {
        font-size: 15px !important;
        line-height: 1 !important;
        margin: 0 !important;
        letter-spacing: 0 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-card__header {
        flex-grow: 0 !important;
    }

    .product-card__sku {
        font-size: 12px;
    }

    .product-card__meta {
        font-size: 15px;
        padding-top: 10px;
    }

    .hero__branding>p {
        margin: 0 0 4px !important;
    }

    p.undertitle {
        margin: 8px 0 0 0 !important;
    }

    .review-card__text {
        width: auto;
        margin-left: 6.5rem !important;
        position: relative !important;
        top: -3rem !important;
    }

    .review-card__title {
        font-size: 20px;
    }

    .contact-section__item p {
        font-size: 16px;
    }

    .contact-section__item ul,
    .contact-section__item a,
    .contact-section__item span {
        font-size: 18px;
    }

    .contact-section__form-note {
        font-size: 14px;
    }

    span.submit-arrow {
        height: 22px;
    }

    .advantage-card {
        transition: none;
    }

    .section-heading h2 {
        font-size: clamp(24px, 28px, 30px);
    }

    .filter__checkbox label {
        border-radius: var(--rr-radius-sm);
        color: #1D1D1D;
    }

    .filter__checkboxes {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
        gap: 6px;
    }

    .product-filters--modal .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: var(--rr-primary);
        border: none;
        border-radius: var(--rr-radius-xs);
        color: #1D1D1D;
        font-size: 12px;
        padding: 6px 8px;
    }

    .rr-modal__body .select2-multi-checkbox {
        color: #3C3C3C !important;
        background-color: initial;
        border: 1px solid var(--rr-border);
    }
}

/* 540px */
@media (max-width: 33.75rem) {
    .unsere-produkte-hero__title {
        font-weight: 800;
    }

    .breadcrumbs {
        margin-bottom: 8px;
    }

    .advantages,
    .popular-products,
    .reviews,
    .contact-section {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .unsere-produkte-hero__content {
        text-transform: capitalize;
    }

    .footer-nav {
        width: fit-content;
        gap: 0 !important;
    }

    .footer-main__column h3 {
        font-size: 14px;
    }

    .footer-main__column--contact {
        display: none;
    }

    .footer-section p,
    .copyright,
    .footer-section address,
    .site-footer a {
        font-size: 12px;
    }

    .footer-main {
        gap: 0 !important;
    }

    .contact-section__form-layout {
        gap: 20px;
    }

    .faq-item summary {
        font-size: 15px;
        line-height: 17px;
    }

    .contact-section__form-title {
        font-size: 20px;
        margin: 0;
    }

    .faq-list {
        gap: 8px;
    }

    .hero__inner {
        gap: 2.8rem;
    }

    .hero-gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .hero-gallery__item {}

    .hero-gallery__item img,
    .hero-gallery__media--video {
        max-height: 10rem;
    }

    .brand-strip__logos {
        justify-content: center;
    }

    body.home .section-header,
    body.page-template-front-page .section-header,
    body.home .section-heading,
    body.page-template-front-page .section-heading,
    body.home .section-heading__top,
    body.page-template-front-page .section-heading__top,
    body.home .section-heading.section-heading--center,
    body.page-template-front-page .section-heading.section-heading--center {
        text-align: left;
        align-items: flex-start;
        justify-items: flex-start;
        gap: 0.75rem;
    }

    body.home .section-header,
    body.page-template-front-page .section-header {
        margin: 0 0 2rem;
        display: grid;
        gap: 0.75rem;
    }

    body.home .section-header__actions,
    body.page-template-front-page .section-header__actions,
    body.home .section-heading__actions,
    body.page-template-front-page .section-heading__actions {
        justify-content: flex-start;
        width: 100%;
        gap: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }

    body.home .hero__inner,
    body.page-template-front-page .hero__inner {
        align-items: flex-start;
        text-align: left;
        gap: 1.75rem;
    }

    body.home .advantage-grid,
    body.page-template-front-page .advantage-grid,
    body.home .cards-grid,
    body.page-template-front-page .cards-grid,
    body.home .columns4,
    body.page-template-front-page .columns4,
    body.home .popular-products .cards-grid,
    body.page-template-front-page .popular-products .cards-grid,
    body.home .reviews__group,
    body.page-template-front-page .reviews__group,
    body.home .faq-list,
    body.page-template-front-page .faq-list {
        grid-template-columns: 1fr;
        width: 100%;
        align-items: flex-start;
        gap: 8px;
    }

    body.home .card,
    body.page-template-front-page .card,
    body.home .advantage-card,
    body.page-template-front-page .advantage-card {
        padding: 1.5rem;
    }

    body.home .reviews__group,
    body.page-template-front-page .reviews__group {
        gap: 1.5rem;
    }

    body.home .review-card,
    body.page-template-front-page .review-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    body.home .review-card__source,
    body.page-template-front-page .review-card__source {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    body.home .contact-section__inner,
    body.page-template-front-page .contact-section__inner {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
    }

    body.home .contact-section__list,
    body.page-template-front-page .contact-section__list {
        grid-template-columns: 1fr;
    }

    body.home .contact-section__item,
    body.page-template-front-page .contact-section__item {
        align-items: flex-start;
        gap: 10px;
        border-bottom: 0.0625rem solid var(--rr-secondary);
        padding: 20px 0;
    }

    body.home .contact-section__item-right,
    body.page-template-front-page .contact-section__item-right {
        border-left: 0;
        padding-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-section__item-right div {
        border: none;
        padding-left: 0;
    }

    body.home .contact-section__form,
    body.page-template-front-page .contact-section__form {
        padding: 1rem;
        gap: 20px;
    }

    body.home .contact-section__form-layout,
    body.page-template-front-page .contact-section__form-layout,
    body.home .contact-section__form-grid,
    body.page-template-front-page .contact-section__form-grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
        gap: 1rem;
    }

    body.home .contact-section__form-fields,
    body.page-template-front-page .contact-section__form-fields {
        gap: 1rem;
    }

    body.home .contact-section__form-fields>button,
    body.page-template-front-page .contact-section__form-fields>button {
        width: 100%;
    }

    body.home .faq-item summary,
    body.page-template-front-page .faq-item summary {
        text-align: left;
    }

    .breadcrumbs {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 400;
        color: var(--rr-text);
        margin-bottom: 8px;
        margin-top: 20px;
    }

    .product-gallery__thumb img {
        margin: 0 !important;
    }

    .product-single {
        padding: 0 !important;
    }

    .product-single__content {
    }

    .product-single__meta-item dt {
        font-size: 12px !important;
    }

    .product-single__meta-item dd {
        font-size: 16px !important;
    }

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

    .product-single__description p {
        font-size: 16px !important;
    }

    .popular-product-card__media {
        aspect-ratio: unset;
    }

    .popular-product-card__media img {
        max-width: 3.375rem;
        max-height: 3.375rem;
    }

    .product-single__subtitle {
        font-size: 20px !important;
    }

    .product-purchase__field--qty .product-purchase__label {
        display: none;
    }

    .product-single__section {
        padding-bottom: 40px;
    }

    .hero-gallery__item img {
        max-height: 20rem;
    }

    .footer-main__column--info {
        gap: 20px;
    }

    .footer-section.social {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .columns4>a.button-cart {
        display: flex;
        align-items: center;
        margin-top: 30px;
    }

    .reviews__nav {
        gap: 4px;
    }

    .reviews__viewport {
        margin: 24px 0 0;
    }

    .copyright {
        padding-bottom: 0 !important;
        margin-bottom: 20px;
    }


}



@media (max-width: 500px) {

    body.home .review-card,
    body.page-template-front-page .review-card {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        min-height: 391px;
    }

    .unsere-produkte-category-card__image,
    .unsere-produkte-category-card__media {
        display: none;
    }

    .review-card__rating-star svg {
        width: 10px;
        height: 10px;
    }

    .faq {
        margin-top: 40px;
    }

    .reviews__title {
        gap: 24px;
    }

    .products-list__content ul.products {
        gap: 8px !important;
    }

    .products-list__mobile-actions {
        margin: 20px 0 !important;
    }

    .products-hero__logo-wrapper {
        max-width: 150px;
        margin: 32px 0;
    }

    .unsere-produkte-category-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .unsere-produkte-categories__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .unsere-produkte-category-card__button {
        justify-content: center;
    }

    .unsere-produkte-category-card__title {
        font-size: 20px !important;
    }

    .unsere-produkte-category-card__description {
        font-size: 15px;
    }

    .unsere-produkte-hero__title {
        text-transform: capitalize;
    }

    .unsere-produkte-category-card__text {
        gap: 8px !important;
    }

    .mobile-navigation {
        gap: 0.5rem;
    }

    .mobile-navigation__home,
    .mobile-navigation__cart,
    .mobile-navigation__summary {
        font-size: 0.85rem;
    }

    .mobile-navigation__icon svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .rr-modal__dialog .product-filters__footer {
        display: flex;
        flex-wrap: wrap;
        font-size: 0.875rem;
        color: var(--rr-muted);
        padding: 0 16px 16px;
        margin-top: 1.5rem;
        border-top: 1px solid var(--rr-primary);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .product-filters__footer .button {
        background: var(--rr-primary) !important;
        padding: 14px !important;
        color: var(--rr-background) !important;
        font-family: 'Inter';
        text-transform: math-auto;
    }

    .product-filters__found {
        font-size: 16px;
        color: #1d1d1d;
    }

    .product-filters__reset {
        color: #30303066;
        font-weight: 500;
        font-size: 16px;
    }

    .time {
        display: flex;
    }

    .comma {
        display: block;
        padding: 0;
        margin: 0 5px 0 0;
    }

    .shedule br {
        display: none;
    }

    .footer-main {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-card__gallery-nav--next {
        right: 0 !important;
    }

    .product-card__gallery-nav--prev {
        left: 0 !important;
    }

    .product-card__season-icon {
        width: 16px !important;
        height: 16px !important;
    }

    .product-card__gallery-slide {
        margin-top: 0 !important;
    }


    .product-card__stock-badge {
        font-size: 10px !important;
    }

    .products-list__mobile-action {
        font-size: 16px;
        padding: 10px 0;
    }

    .rr-modal__dialog {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
    }

    .rr-modal__dialog[aria-labelledby="rr-modal-sorting-title"],
    .rr-modal__dialog[aria-labelledby="rr-modal-order-title"] {
        height: auto;
    }

    .rr-modal__dialog[aria-labelledby="rr-modal-order-title"] .rr-modal__header {
        padding: 0;
    }

    .rr-modal__header {
        flex-wrap: nowrap;
        padding: 20px 20px 0;
    }

    .rr-modal__body .filter__select .select2-selection__arrow {
        top: 0 !important;
        right: 0 !important;
    }

    .rr-modal__body .filter__select .select2-selection__arrow b {
        height: 24px !important;
        width: 24px !important;
        border: 0 !important;
        background-size: 24px;
        top: 43% !important;
        margin: 0 !important;
        left: -13px !important;
    }

    .rr-modal__body .filter__short-field .select2-selection__arrow b {
        height: 24px !important;
        width: 24px !important;
        border: 0 !important;
        background-size: 24px;
        top: 0 !important;
        margin: 0 !important;
        left: 0 !important;
    }

    .rr-modal__body .select2-container--default .select2-selection--multiple::after {
        content: '';
        pointer-events: none;
        position: absolute !important;
        top: 25% !important;
        right: 10px !important;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;
        background-size: 24px;
        width: 22px;
        height: 100%;
    }

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

    .product-filters--modal {
        height: 100%;
    }

    .product-filters--modal .filter__checkboxes {
        border-top: 1px solid;
        border-color: #4D4D4D1A;
    }

    .product-filters--modal input[type="checkbox"]+label::before {
        border-color: #30303066;
    }

    .order-modal {
        padding: 20px;
    }

    .order-modal__hint a {
        white-space: nowrap;
    }

    .order-modal__hint br {
        display: none;
    }

    .rr-modal__title {
        font-size: 24px;
        line-height: 24px;
        max-width: 350px;
    }

    .rr-modal__body .select2-container--default .select2-selection--multiple .select2-selection__clear {
        margin-top: 3px;
    }


    .rr-modal__body {
        margin-top: 20px;
    }

    .order-modal__form {
        padding-bottom: 0;
    }

    .cart-page__back-link {
        display: none;
    }

    .cart-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
        padding-bottom: 40px;
    }

    .notice-modal {
        max-width: 300px;
        padding: 20px;
    }

    .notice-modal__message {
        font-size: 16px;
        line-height: 18px;
    }

}

/* @media (max-width: 415px) {
    body.home .review-card, body.page-template-front-page .review-card {
        min-height: 351px;
    }
}

@media (max-width: 397px) {
    body.home .review-card, body.page-template-front-page .review-card {
        min-height: 367px;
    }
} */

@media (max-width: 385px) {
    .hero__title {
        font-size: 30px;
    }

    .reviews__title h2 {
        font-size: 28px;
    }

    .reviews__rating-inline {
        font-size: 14px;
    }

    .reviews__rating-inline-label {
        padding-right: 4px;
    }
}

/* Min-width queries */
/* No min-width queries defined yet */


input.select2-search__field {
    width: auto !important;
    cursor: pointer;
}


.select2-selection__choice + .select2-search.select2-search--inline input.select2-search__field {
    width: 0.05em !important;
}

.product-filters__footer {
    display: none;
}

.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);
}
