/*
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-primary-dark: #7ed629;
    --rr-accent: #83D350;

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

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

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

.site-main {}

.container {}

.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:hover {
    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-weight: 600;
}

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

.button:hover,
.button:focus {
    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:hover,
.button.button--outline:focus {
    color: var(--rr-primary);
}

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

.button.button--light:hover,
.button.button--light:focus {
    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:hover,
.button.button--dark:focus {
    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:hover,
.advantage-card.is-active {
    background-color: var(--rr-surface-alt);
    color: var(--rr-primary);
    border-color: var(--rr-surface-alt);
}

.advantage-card:hover .advantage-card__icon,
.advantage-card.is-active .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.25rem;
    right: -0.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    border-radius: 62.4375rem;
    background: var(--rr-primary);
    color: var(--rr-background);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

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


details: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);
    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;
    padding: 0.75rem 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: var(--rr-radius-sm);
    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 0.85rem;
    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: 0;
    top: calc(100% + 0.75rem);
    min-width: 16rem;
    max-width: min(22rem, 90vw);
    padding: 1rem;
    background: var(--rr-surface);
    border-radius: var(--rr-radius);
    border: 0.0625rem solid rgba(var(--rr-text), 0.08);
    box-shadow: var(--rr-shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.mobile-navigation__more[open] .mobile-navigation__panel,
.mobile-navigation__more.is-open .mobile-navigation__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-navigation__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-navigation__item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-navigation__item--has-children {
    padding-bottom: 0.5rem;
    border-bottom: 0.0625rem solid rgba(var(--rr-text), 0.08);
}

.mobile-navigation__item--has-children+.mobile-navigation__item {
    padding-top: 0.5rem;
}

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

.mobile-navigation__link {
    color: var(--rr-lighted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

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

.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 {
    outline: 0.125rem solid var(--rr-primary);
    outline-offset: 0.25rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 0 0 5rem;
    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;
}

.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 {
    width: 100%;
    max-height: 325px;
    display: block;
    border-radius: var(--rr-radius);
    object-fit: cover;
}

.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: 325px;
    height: 325px;
    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);
}

.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;
    font-weight: 700;
}

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

.cart-information__icon {
    margin-left: 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,
.faq,
.cart-page {
    margin-top: clamp(2.5rem, 5rem, 6rem);
    padding-bottom: clamp(2.5rem, 5rem, 6rem);
}

.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.5s ease, color 0.5s 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;
}

article:hover>a>div>span>svg {
    color: var(--rr-background-deep);
}

.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;
    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:hover {
    color: var(--rr-background);
    background-color: var(--rr-primary);
}

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

/* 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 {}

/* 840px */
@media (max-width: 40rem) {
    .site-main {
        margin: 16px;
    }

    .popular-product-card__header {}

    .popular-product-card__badge {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

.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: clamp(2.5rem, 6vw, 3.5rem);
    padding-left: clamp(0.125rem, 21.5625rem, 21.5625rem);
}

.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 {
    margin: 5rem 0;
    background: var(--rr-background);
}

.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: baseline;
    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:hover svg {
    background: var(--rr-primary);
    color: #010101;
}

.reviews__nav-button:focus-visible {
    background: var(--rr-primary);
    color: #010101;
}

.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: 0.0625rem solid var(--rr-border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 21.875rem 1fr;
    grid-template-rows: repeat(2, 192.5px);
    color: var(--rr-lighted);
}

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

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

.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__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 {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--rr-background);
}


.contact-section__field input {
    padding: 0.85rem 1rem;
    color: var(--rr-secondary);
    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: var(--rr-secondary);
    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:hover,
.contact-section__field select:focus {}

.contact-section__field select option {
    background-color: var(--rr-primary);
    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);
}

.contact-section__field .select2-container .select2-selection__rendered {
    padding: 1rem 2.5rem 1rem 1rem;
    color: var(--rr-secondary);
    line-height: 1.5;
}

.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-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: transparent var(--rr-background) var(--rr-background) transparent !important;
    border-style: solid !important; 
    border-width: 2px !important;
    border-radius: 2px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    position: absolute !important;
    top: 40% !important;
    width: 5px !important;
    height: 5px !important;
    transform: rotate(45deg) !important;
}

.contact-subject-select2-dropdown .select2-results__option {
    background-color: var(--rr-primary);
    color: var(--rr-background);
}

.contact-subject-select2-dropdown .select2-results__option--highlighted[aria-selected],
.contact-subject-select2-dropdown .select2-results__option--highlighted {
    background-color: #CAFFA9;
    color: var(--rr-background);
}

.contact-section__form-note {
    margin: 2rem 0 0;
}


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

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

.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 {
    /* content: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 6.39844V25.5984' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.39844 16H25.5984' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A"); */
    font-size: 1.35rem;
    color: white;
    transition: transform 0.2s ease;
}

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

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

/* Footer */
.site-footer {
    color: var(--rr-lighted);
    padding: 4rem 0 2.5rem;
    margin-top: 4rem;
}


.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 {
    justify-content: flex-end;
    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-secondary);
}

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

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

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

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

.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:hover,
.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__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);
    border: 0.0625rem solid var(--rr-border);
    padding: clamp(0.75rem, 4vw, 1.25rem);
    position: sticky;
    top: 6.5rem;
    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;
}

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



.product-filters__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--rr-muted);
}

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

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


.product-filters__reset {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--rr-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.product-filters--modal {
    color: #1d1d1d;
}

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

.product-filters--modal .product-filters__input {
    background: #ffffff;
    color: #1d1d1d;
}

.product-filters--modal .product-filters__select {
    background: #ffffff;
    color: #1d1d1d;
}

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

.product-filters--modal .filter__checkboxes {
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.product-filters--modal .filter__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.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;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.products-list__mobile-action:hover,
.products-list__mobile-action:focus {
    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: 600;
    color: var(--rr-primary);
}

.rr-shop-ordering__field {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 14rem;
}

.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(-79%) rotate(45deg);
    right: 1.25rem;
    top: 50%;
}

.rr-shop-ordering__select {
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--rr-radius-sm);
    border: 0.0625rem solid rgba(255, 255, 255, 0.25);
    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;
}

.rr-shop-ordering__select:focus,
.rr-shop-ordering__select:focus-visible {
    outline: none;
    border-color: var(--rr-primary);
    box-shadow: 0 0 0 0.1875rem rgba(131, 211, 80, 0.22);
}

.rr-shop-ordering__select:hover {
    border-color: var(--rr-primary);
    box-shadow: 0 0 0 0.125rem rgba(131, 211, 80, 0.18);
}

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

.products-list__after .woocommerce-pagination {
    width: 100%;
}

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

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

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

.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: 1.25rem;
    width: min(32rem, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.35);
    transform: translateY(1.5rem);
    transition: transform 0.25s ease;
}

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

.rr-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}

.rr-modal__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.rr-modal__close {
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #1d1d1d;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rr-modal__close:hover,
.rr-modal__close:focus {
    background: rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
}

.rr-modal__body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1 1 auto;
}

.filters-modal__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filters-modal__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1.5rem;
    background: #ffffff;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -0.625rem 1.75rem rgba(0, 0, 0, 0.08);
}

.filters-modal__summary,
.product-filters__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.filters-modal__summary {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d1d1d;
}

.filters-modal__apply {
    width: 100%;
    border: none;
    border-radius: var(--rr-radius-sm);
    padding: 0.9rem 1.25rem;
    background: var(--rr-primary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.filters-modal__apply:hover,
.filters-modal__apply:focus {
    background: #6ab726;
    transform: translateY(-1px);
}

.product-filters--modal .product-filters__footer {
    display: none !important;
}

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

.rr-modal__option {
    border: 0.0625rem solid rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    background: #ffffff;
    color: #1d1d1d;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

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

.order-modal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-modal__hint {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.order-modal__hint a:hover,
.order-modal__hint a:focus {
    text-decoration: underline;
}

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

.order-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.order-modal__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-modal__field input {
    width: 100%;
    border-radius: 0.75rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.12);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1d1d1d;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-modal__field textarea {
    width: 100%;
    border-radius: 0.75rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.12);
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1d1d1d;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
    min-height: 6rem;
}

.order-modal__field input:focus,
.order-modal__field textarea:focus {
    outline: none;
    border-color: var(--rr-primary);
    box-shadow: 0 0 0 0.1875rem rgba(131, 211, 80, 0.2);
}

.order-modal__submit {
    width: 100%;
}

.order-modal__submit:hover,
.order-modal__submit:focus {
}

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

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

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

}

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

.filter__short-field,
.filter__select {
    margin-top: 20px;
}

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

}

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

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;
    margin-right: 0.5em;
    vertical-align: middle;
}

.product-filters__footer {
    display: none;
}

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

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

.page-numbers li {
    border-radius: 4px;
    border: 1px solid var(--rr-lighted) !important;
}

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

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

/* Max-width queries */


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

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

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

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

    .main-navigation__group--right {
        justify-content: center;
    }

    .main-navigation__home {
        order: -1;
    }

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

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

    .cart-item__content {
        display: grid;
    }

    .container {
        padding: 0 2rem;
    }

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

/* 768px */
@media (max-width: 48rem) {
    .hero-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
    }

    .hero-gallery__cta {
        width: min(1rem, 13.75rem);
    }

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


@media (max-width: 40rem) {
    .main-navigation {
        display: none;
    }

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

    .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 {
        left: 50%;
        right: auto;
        width: 100vw;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        transform: translate(-50%, -0.75rem);
    }

    .mobile-navigation__more[open] .mobile-navigation__panel,
    .mobile-navigation__more.is-open .mobile-navigation__panel {
        transform: translate(-50%, 0);
    }
}

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

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

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

    .container {
        padding: 1rem 1.75rem;
    }

    .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;
        flex-direction: column-reverse;
        color: var(--rr-primary);
    }

    .social__list {
        flex-wrap: wrap;
    }

    .footer-bottom__logo svg {
        width: 11.25rem;
    }

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

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

    .main-navigation {
        display: none;
    }

    .hero__title {
        font-size: 2rem;
    }

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

}

/* 540px */
@media (max-width: 33.75rem) {
    .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;
    }

    .hero-gallery__cta {
        width: min(1rem, 13.75rem);
    }

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

    body.home .container,
    body.page-template-front-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    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 .hero__branding,
    body.page-template-front-page .hero__branding {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
        gap: 1.25rem;
    }

    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: 1.5rem;
    }

    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;
        height: auto;
    }

    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: 0.75rem;
        border-bottom: 0.0625rem solid var(--rr-secondary);
        padding: 0.75rem 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: 1.5rem;
    }

    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 {
        align-items: flex-start;
        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: 2rem;
    }

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

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

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

}

@media (max-width: 25rem) {
    .mobile-navigation {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

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

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

    .mobile-navigation__panel {
        min-width: 14rem;
        padding: 0.75rem;
    }

    .product-filters__footer {
        display: block;
    }
}

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

/* 390px */
@media (max-width: 25rem) {

    .container {
        padding: 2rem 1rem;
    }

    .products-list__mobile-action {
        font-size: 0.75rem;
        letter-spacing: 0.06em;
        padding: 0.65rem 0.85rem;
    }

    .rr-modal__dialog {
        width: 100%;
        border-radius: 1rem;
    }

    .rr-modal__header {
        padding: 1rem 1.25rem;
    }

    .rr-modal__body {
        padding: 1.25rem;
    }

    .order-modal__label {
        letter-spacing: 0.06em;
    }

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

    .cart-page__header {}
}

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