/* Additional layout tweaks for Reifen Reber theme */
.popular-products {
    margin: 5rem 0;
}

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

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

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

.popular-product-card:hover .popular-product-card__arrow {
    color: black;
}

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

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

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

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

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

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

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

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

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

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

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

.popular-product-card__arrow {

}

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

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

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

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

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

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

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

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

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

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

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

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



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

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

.product-card__header {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    height: 24px;
}

.product-card__thumbnail {
    overflow: hidden;
    position: relative;
}

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

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

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

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

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

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

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    justify-content: flex-end;
    flex-grow: 1;
}

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

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

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

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

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

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

.product-card__title {
    font-size: 1.25rem;
    line-height: 1.375rem;
    margin: 0;
    letter-spacing: -0.02rem;
}

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

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

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

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

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

.product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 0.75rem;
    background: var(--rr-primary);
    border: none;
    border-radius: var(--rr-radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.contact-section {
    position: relative;
}

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

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

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

.contact-card h2 {
    margin: 0;
}

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

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

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

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

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

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

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

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





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.products-archive__sidebar {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.product-filter__field select:focus-visible {
    outline: none;
    
    box-shadow: 0 0 0 0.1875rem rgba(131, 211, 80, 0.2);
}

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

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

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

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

.products-archive__pagination .page-numbers:hover,
.products-archive__pagination .page-numbers:focus-visible {
    
    color: var(--rr-text-soft);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cart-layout {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: flex-start;
}

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

.cart-summary hr {
    margin: 0;
}

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

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

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

.cart-summary__row dt {
    margin: 0;
}

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

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

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

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

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

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

.cart-items__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2rem);
}

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

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

.cart-item__name {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.05em;
}

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

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

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

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



.cart-item__content {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    justify-content: space-between;
}

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

.cart-item__media img {
    height: auto;
    object-fit: contain;
}

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

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

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

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

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

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

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

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

.cart-item__quantity-controls {
    align-items: center;
    border-radius: var(--rr-radius-xs);
    border: 0.0625rem solid var(--rr-border);
}

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

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

.cart-item__remove {
    background: none;
    border: none;
    color: var(--rr-lighted);
    width: 3rem;
    height: 3rem;
    align-items: center;
    cursor: pointer;
    margin: 1.25rem;
}

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

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

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

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















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

.product-single__media {
    position: relative;
}

.product-single__image,
.product-gallery__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--rr-radius);
    border: 1px solid var(--rr-border);
}

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

.product-gallery__main {
    margin: 0;
}

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

.product-gallery__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    aspect-ratio: 1;
    padding: 0.25rem;
    border-radius: calc(var(--rr-radius) * 0.75);
    border: 2px solid transparent;
    background-color: var(--rr-white);
    box-shadow: inset 0 0 0 1px var(--rr-border);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
    box-shadow: inset 0 0 0 1px rgba(var(--rr-primary-rgb), 0.4);
    transform: translateY(-1px);
}

.product-gallery__thumb.is-active {
    border-color: var(--rr-primary);
    box-shadow: inset 0 0 0 1px rgba(var(--rr-primary-rgb), 0.65);
}

.product-gallery__thumb-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.product-single__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.product-single__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

.product-single__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
    gap: 1rem;
    margin: 0;
}

.product-single__meta-item {
    display: grid;
    gap: 0.75rem;
}

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

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

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

.product-single__description,
.product-single__excerpt {
    display: grid;
    gap: 1rem;
    font-family: 'Inter';
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--rr-lighter);
}

.product-single__description p:last-child,
.product-single__excerpt p:last-child {
    margin-bottom: 0;
}

.product-single__section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-single__subtitle {
    margin: 0;
    font-size: 46px;
    max-width: 1010px;
}

.product-specs__wrapper {
    display: flex;
    overflow: hidden;
}

.product-specs {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.75rem;
    margin: -0.69rem;
    font-family: 'Inter';
    font-size: 1.125rem;
    color: var(--rr-text);
    flex-grow: 1;
}

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

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

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


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

.product-purchase__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-purchase__field {
    display: grid;
    gap: 0.75rem;
    justify-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

.product-purchase__button:hover {
    background: none;
    color: var(--rr-primary);
}

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

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

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

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

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

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

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

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

.product-recommendations__button:hover {
    background: var(--rr-primary, #83d350);
    border-color: var(--rr-primary, #83d350);
    color: #fff;
}

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

.product-recommendations__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.product-recommendations__button-icon svg {
    width: 1rem;
    height: auto;
}

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

.product-recommendations__viewport {
    overflow: hidden;
}

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

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

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

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



.unsere-produkte-hero__subtitle {
    max-width: 40rem;
    margin: 0 auto;
    
    font-size: 1.05rem;
    line-height: 1.6;
}

.unsere-produkte-category-card:hover,
.unsere-produkte-category-card:focus-within {
    
}

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

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

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

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

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



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

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

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

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

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

.unsere-produkte-category-card__button:hover > span,
.unsere-produkte-category-card__button:focus-visible > span {
    
}

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

/* Media queries */


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

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

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

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

@media (max-width: 60rem) {
    .product-single__meta {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    }
}

@media (max-width: 59.9375rem) {
    .cart-item__content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "media price"
            "media quantity"
            "media total"
            "media remove";
        align-items: start;
        row-gap: 1.25rem;
    }

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

@media (max-width: 56.25rem) {
    .product-purchase__body {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

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

@media (max-width: 56.25rem) {
    .product-recommendations__controls {
        gap: 0.5rem;
    }

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

@media (max-width: 40rem) {
    .popular-product-card__header {
        padding-right: 2.75rem;
    }

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

    .contact-card {
        padding: 1.75rem;
    }

    .contact-details__item {
        gap: 0.75rem;
    }
}

@media (max-width: 40rem) {
    .cart-item__header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 0.75rem 1rem 1rem;
        gap: 0.35rem;
    }

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

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

@media (max-width: 39.9375rem) {
    .product-filter {
        padding: 1.25rem;
    }

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

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

@media (max-width: 39.9375rem) {
    .cart-item {
        padding: 1.25rem;
    }

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

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

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

    .cart-summary {
        position: static;
    }
}

@media (max-width: 39.9375rem) {
    .product-qty__btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .product-recommendations__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

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

    .product-recommendations__track > .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

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

@media (max-width: 33.75rem) {
    .cart-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .cart-summary {
        width: 100%;
    }

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

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

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

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

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

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

    .cart-page .product-category-card {
        flex: 0 0 auto;
        min-width: clamp(14rem, 80vw, 18rem);
    }
}
@media (max-width: 25rem) {
    .popular-products {
        padding: 3rem 0;
    }

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

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

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

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

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

    .popular-product-card__title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .popular-product-card__footer {
    }

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

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

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

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

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

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

@media (max-width: 25rem) {
    .popular-product-card__title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    .product-related__grid {
        grid-template-columns: 1fr;
    }

}

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

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

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

    .cart-item__content {
        grid-template-columns: minmax(7.5rem, 11.25rem) minmax(7.5rem, max-content) minmax(11.25rem, max-content) minmax(7.5rem, max-content) auto;
        gap: 1.5rem;
        grid-template-areas: "media price quantity total remove";
    }

    .cart-item__media {
        aspect-ratio: 4 / 3;
        max-width: 11.25rem;
        justify-self: start;
    }

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

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

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

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

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

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

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

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

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

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

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