/*
Theme Name: Reich FoodSystems
Theme URI: https://reich3.laun-it.de/
Description: Standalone theme for Reich FoodSystems.
Author: LAUN IT
Version: 1.0.0
Text Domain: reich-foodsystems
*/

:root {
    --reich-bg: #232323;
    --reich-panel: #2C2C2C;
    --reich-panel-soft: #3E3E3E;
    --reich-text: #FFFFFF;
    --reich-muted: #FFFFFF;
    --reich-subtle: #676767;
    --reich-cyan: #2af2de;
    --reich-cyan-hover: #009C95;
    --reich-line: rgba(255, 255, 255, 0.12);
    --reich-max: 1180px;
    --reich-font-body: "Noto Sans", Arial, Helvetica, sans-serif;
    --reich-font-heading: "Poppins", Arial, Helvetica, sans-serif;
    --reich-font-script: "Satisfy", cursive;
}

html {
    background: var(--reich-bg);
    overflow-x: hidden;
    overscroll-behavior-x: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--reich-bg);
}

body.reich-custom-home {
    background: var(--reich-bg);
}

body.reich-custom-home #wpadminbar + .reich-site {
    margin-top: 32px;
}

.reich-site {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--reich-bg);
    color: var(--reich-text);
    font-family: var(--reich-font-body);
    font-size: 22px;
    line-height: 1.55;
}

.reich-site * {
    box-sizing: border-box;
}

.reich-site a {
    color: inherit;
    text-decoration: none;
}

.reich-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(20, 19, 18, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.admin-bar .reich-header {
    top: 32px;
}

.reich-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--reich-max), calc(100% - 56px));
    min-height: 104px;
    margin: 0 auto;
    gap: 32px;
}

.reich-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: clamp(170px, 18vw, 245px);
    max-width: 42vw;
    line-height: 0;
}

.reich-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.reich-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 44px);
    color: var(--reich-cyan);
    font-size: 16px;
    font-weight: 700;
}

.reich-nav__item {
    position: relative;
}

.reich-nav a {
    border-bottom: 2px solid transparent;
    padding: 8px 0;
}

.reich-nav a:hover,
.reich-nav a[aria-current="page"] {
    border-color: var(--reich-cyan);
}

.reich-nav__submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 20;
    width: max-content;
    min-width: 300px;
    display: grid;
    padding: 8px 12px 10px;
    background: #1f1f1f;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 150ms ease, transform 150ms ease;
}

.reich-nav__item--has-submenu:hover .reich-nav__submenu,
.reich-nav__item--has-submenu:focus-within .reich-nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reich-nav__submenu a {
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 7px 0;
    color: var(--reich-cyan);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.15;
    white-space: nowrap;
}

.reich-nav__submenu a:last-child {
    border-bottom: 0;
}

.reich-nav__submenu a:hover,
.reich-nav__submenu a:focus-visible {
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.reich-header__tools {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--reich-cyan);
    font-size: 22px;
}

.reich-icon {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 20px;
}

.reich-hero {
    position: relative;
    min-height: 0;
    padding-top: min(45vw, 663.75px);
    isolation: isolate;
    overflow: hidden;
}

.reich-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(80vw, var(--reich-max));
    height: min(45vw, 663.75px);
    z-index: -2;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(20, 19, 18, 0.06), rgba(20, 19, 18, 0.12) 58%, var(--reich-bg) 94%);
}

.reich-hero__video {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -3;
    width: min(80vw, var(--reich-max));
    height: min(45vw, 663.75px);
    object-fit: contain;
    transform: translateX(-50%);
    background: #141312;
    filter: saturate(1.12) contrast(1.18) brightness(1.08);
    box-shadow: 0 0 0 1px rgba(42, 242, 222, 0.18), 0 24px 70px rgba(42, 242, 222, 0.13);
}

.reich-hero__content {
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
    padding-top: 46px;
}

.reich-eyebrow {
    margin: 0 0 10px;
    color: var(--reich-muted);
    font-size: 22px;
    font-weight: 700;
}

.reich-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: var(--reich-font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.14;
}

.reich-hero__text {
    max-width: none;
    color: var(--reich-muted);
    font-size: 22px;
}

.reich-signature {
    margin-top: 24px;
    color: #ffffff;
    font-family: var(--reich-font-script);
    font-size: 30px;
    font-style: normal;
}

.reich-main {
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
    padding: 26px 0 0;
}

.reich-main > .reich-cards:first-child {
    margin-top: 18px;
}

.reich-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--reich-cyan);
    border-radius: 4px;
    padding: 0 22px;
    background: var(--reich-cyan);
    color: #08110f;
    font-weight: 800;
    line-height: 1;
}

.reich-button:hover {
    border-color: var(--reich-cyan-hover);
    background: var(--reich-cyan-hover);
    color: #ffffff;
}

.reich-button--ghost {
    min-height: 38px;
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
    color: var(--reich-text);
    font-size: 13px;
}

.reich-section {
    margin-top: 88px;
}

.reich-cards {
    display: grid;
    gap: 52px;
    margin-top: 78px;
}

.reich-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    min-height: 360px;
    padding: 32px;
    border-radius: 4px;
    background: var(--reich-panel);
    overflow: hidden;
}

.reich-card:nth-child(even) {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.reich-card:nth-child(even) .reich-card__media {
    order: -1;
}

.reich-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.reich-card h2,
.reich-apps h2 {
    margin: 0 0 18px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.12;
}

.reich-card p {
    max-width: 520px;
    margin: 0 0 24px;
    color: var(--reich-muted);
    font-size: 22px;
}

.reich-card__media {
    position: relative;
    min-height: 250px;
    border-radius: 4px;
    overflow: hidden;
    background: #090909;
}

.reich-card__media img,
.reich-app img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.reich-apps {
    margin: 64px 0 18px;
}

.reich-apps__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px 22px;
    margin-top: 22px;
}

.reich-app {
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    gap: 12px;
    min-width: 0;
}

.reich-app__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1.45;
    overflow: hidden;
    background: #111;
}

.reich-app h3 {
    margin: 0;
    color: var(--reich-text);
    font-family: var(--reich-font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.reich-app p {
    margin: 0;
    color: var(--reich-muted);
    font-size: 17px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.reich-footer {
    background: var(--reich-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reich-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
    padding: 46px 0 38px;
}

.reich-footer h3,
.reich-footer p {
    margin: 0;
}

.reich-social-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    vertical-align: -3px;
}

.reich-social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.reich-footer h3 {
    color: #ffffff;
    font-size: 16px;
}

.reich-footer ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.reich-footer a,
.reich-footer li {
    color: var(--reich-cyan);
    font-size: 16px;
    font-weight: 700;
}

.reich-footer__bottom {
    background: #171717;
    color: var(--reich-subtle);
    font-size: 12px;
}

.reich-footer__bottom-inner {
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
    padding: 16px 0;
    text-align: right;
}

.reich-footer__bottom a {
    color: var(--reich-cyan);
}

.reich-page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 70px;
    background: linear-gradient(180deg, rgba(20, 19, 18, 0.42), var(--reich-bg) 86%);
}

.reich-page-hero__inner,
.reich-content {
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
}

.reich-page-hero h1 {
    max-width: 880px;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--reich-font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.reich-page-hero p {
    max-width: 850px;
    margin: 0;
    color: var(--reich-muted);
    font-size: 22px;
}

.reich-content {
    padding: 72px 0 92px;
}

.reich-legal {
    display: grid;
    gap: 28px;
}

.reich-legal__section {
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    background: var(--reich-panel);
}

.reich-legal__section h2 {
    margin: 0 0 16px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.reich-legal__section p {
    margin: 0;
    color: var(--reich-text);
    font-size: 19px;
    line-height: 1.65;
}

.reich-legal__section p + p {
    margin-top: 12px;
}

.reich-search {
    display: grid;
    gap: 42px;
}

.reich-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    border-radius: 4px;
    background: var(--reich-panel);
    padding: 24px;
}

.reich-search-form input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    padding: 12px 16px;
    background: #171717;
    color: var(--reich-text);
    font: inherit;
}

.reich-search-results h2 {
    margin: 0 0 24px;
    color: var(--reich-cyan);
    font-size: 30px;
}

.reich-condition {
    display: grid;
    gap: 28px;
}

.reich-condition-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px 42px;
    border-radius: 4px;
    background: var(--reich-panel);
    padding: 34px;
}

.reich-condition-card h2,
.reich-condition-card h3 {
    margin: 0 0 14px;
    color: var(--reich-cyan);
}

.reich-condition-card h2 {
    font-family: var(--reich-font-heading);
    font-size: 32px;
}

.reich-condition-card h3 {
    font-size: 22px;
}

.reich-condition-card p,
.reich-condition-card li {
    color: var(--reich-text);
    font-size: 19px;
    line-height: 1.6;
}

.reich-condition-card p,
.reich-condition-card ul {
    margin: 0;
}

.reich-condition-card ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
}

.reich-condition-card li::marker {
    color: var(--reich-cyan);
}

.reich-condition-card__result {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
}

.reich-condition__actions {
    display: flex;
    justify-content: flex-start;
}

.reich-anlagen-header {
    background: #141312;
    color: var(--reich-text);
}

.reich-anlagen-header__inner {
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
    padding: 126px 0 54px;
}

.reich-breadcrumb {
    margin: 0 0 26px;
    color: var(--reich-subtle);
    font-size: 14px;
    font-weight: 700;
}

.reich-anlagen-header h1 {
    margin: 0 0 24px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.14;
}

.reich-anlagen-header p {
    max-width: 1100px;
    color: var(--reich-text);
    font-size: 22px;
}

.reich-anlagen-copy {
    display: grid;
    gap: 20px;
}

.reich-anlagen-copy p {
    margin: 0;
}

.reich-anlagen-copy ul {
    display: grid;
    gap: 6px;
    margin: -6px 0 0;
    padding-left: 24px;
    color: var(--reich-text);
    font-size: 21px;
}

.reich-anlagen-copy li::marker {
    color: var(--reich-cyan);
}

.reich-anlagen-info-link {
    margin-top: 2px;
}

.reich-category-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
}

.reich-category-info__body,
.reich-category-info__cta {
    border-radius: 4px;
    background: var(--reich-panel);
    padding: 34px;
}

.reich-category-info__body p,
.reich-category-info__body li,
.reich-category-info__cta p {
    color: var(--reich-text);
    font-size: 20px;
    line-height: 1.65;
}

.reich-category-info__body p {
    margin: 0 0 22px;
}

.reich-category-info__body h2 {
    margin: 30px 0 14px;
    color: var(--reich-cyan);
    font-size: 28px;
    line-height: 1.2;
}

.reich-category-info__body ul {
    margin: 0 0 22px;
    padding-left: 24px;
}

.reich-category-info__body li::marker {
    color: var(--reich-cyan);
}

.reich-category-info--smoke {
    display: block;
    padding-top: 132px;
}

.reich-category-info--smoke .reich-category-info__body {
    width: min(100%, 1090px);
    padding: 0;
    background: transparent;
}

.reich-smoke-title {
    margin: 0 0 24px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.reich-smoke-intro {
    margin-bottom: 8px;
}

.reich-smoke-intro__text h2 {
    margin-top: 0;
}

.reich-smoke-intro__lead,
.reich-smoke-intro__advice {
    color: var(--reich-text);
    font-size: 16px;
    line-height: 1.55;
}

.reich-smoke-intro__lead {
    margin: 0 0 10px;
}

.reich-smoke-intro__advice {
    margin: 34px 0 0;
}

.reich-smoke-accordion {
    display: grid;
    gap: 0;
}

.reich-smoke-accordion__item {
    border: 1px solid #535353;
    border-radius: 2px;
    background: #2b2b2b;
    overflow: hidden;
}

.reich-smoke-accordion__item + .reich-smoke-accordion__item {
    margin-top: -1px;
}

.reich-smoke-accordion__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 32px;
    padding: 6px 10px;
    color: var(--reich-cyan);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    list-style: none;
}

.reich-smoke-accordion__item summary::-webkit-details-marker {
    display: none;
}

.reich-smoke-accordion__item summary::after {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 3px solid #777;
    border-bottom: 3px solid #777;
    transform: rotate(45deg);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.reich-smoke-accordion__item[open] summary::after {
    transform: rotate(225deg);
    border-color: var(--reich-cyan);
}

.reich-smoke-accordion__item summary:hover,
.reich-smoke-accordion__item summary:focus-visible {
    background: #333;
}

.reich-smoke-accordion__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: center;
    padding: 12px 10px 14px 20px;
    border-top: 1px solid #444;
}

.reich-smoke-accordion__content p {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.42;
}

.reich-smoke-accordion__content p:last-child {
    margin-bottom: 0;
}

.reich-smoke-accordion__gallery .reich-product-gallery {
    gap: 8px;
}

.reich-smoke-accordion__gallery .reich-product-figma__stage {
    min-height: 240px;
    background: transparent;
}

.reich-smoke-accordion__gallery .reich-product-gallery__main {
    width: 160px;
    height: 220px;
}

.reich-smoke-accordion__gallery .reich-product-gallery__main img {
    object-fit: contain;
}

.reich-smoke-accordion__gallery .reich-product-gallery__dots {
    display: none;
}

.reich-category-info__figure {
    margin: 34px 0 0;
}

.reich-category-info__figure img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.reich-category-info__figure figcaption {
    margin-top: 10px;
    color: var(--reich-subtle);
    font-size: 15px;
}

.reich-accessory-highlight {
    margin: 24px 0 0;
}

.reich-accessory-highlight img {
    display: block;
    width: 100%;
    border-radius: 4px;
}

.reich-accessory-highlight figcaption {
    margin-top: 10px;
    color: var(--reich-subtle);
    font-size: 15px;
}

.reich-category-info__cta {
    position: sticky;
    top: 136px;
}

.reich-category-info__cta h2 {
    margin: 0 0 14px;
    color: var(--reich-cyan);
    font-size: 28px;
}

.reich-category-info__cta p {
    margin: 0 0 22px;
}

.reich-overview-lead,
.reich-category-intro {
    border-left: 4px solid var(--reich-cyan);
    border-radius: 4px;
    padding: 30px 34px;
    background: var(--reich-panel);
    color: var(--reich-text);
}

.reich-overview-lead {
    margin-bottom: 64px;
}

.reich-overview-lead h2,
.reich-category-intro h2 {
    margin: 0 0 18px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 32px;
    line-height: 1.16;
}

.reich-overview-lead p,
.reich-category-intro p {
    max-width: 980px;
    margin: 0 0 16px;
    color: var(--reich-muted);
    font-size: 22px;
}

.reich-overview-lead p:last-child,
.reich-category-intro p:last-child {
    margin-bottom: 0;
}

.reich-category-intro {
    margin-bottom: 42px;
}

.reich-category-intro__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin: 24px 0;
}

.reich-category-intro h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.2;
}

.reich-category-intro ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 22px;
    color: var(--reich-muted);
    font-size: 18px;
}

.reich-lead {
    max-width: 960px;
    color: var(--reich-muted);
    font-size: 22px;
}

.reich-lead strong {
    color: #ffffff;
}

.reich-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.reich-value {
    border-left: 4px solid var(--reich-cyan);
    padding: 24px 26px;
    background: var(--reich-panel);
}

.reich-value h2 {
    margin: 0 0 10px;
    color: var(--reich-cyan);
    font-size: 32px;
}

.reich-value p {
    margin: 0;
    color: var(--reich-muted);
}

.reich-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: start;
}

.reich-contact-panel,
.reich-form-panel {
    border-radius: 4px;
    background: var(--reich-panel);
    padding: 34px;
}

.reich-contact-panel h2,
.reich-form-panel h2 {
    margin: 0 0 18px;
    color: var(--reich-cyan);
    font-size: 30px;
}

.reich-contact-panel p,
.reich-form-panel p {
    margin: 0 0 16px;
    color: var(--reich-muted);
}

.reich-contact-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.reich-contact-list a {
    color: var(--reich-cyan);
    font-weight: 800;
}

.reich-form {
    display: grid;
    gap: 16px;
}

.reich-form label {
    display: grid;
    gap: 8px;
    color: var(--reich-muted);
    font-size: 18px;
    font-weight: 700;
}

.reich-form input,
.reich-form textarea,
.reich-form select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    padding: 13px 14px;
    background: #171717;
    color: #ffffff;
    font: inherit;
}

.reich-form textarea {
    min-height: 140px;
    resize: vertical;
}

.reich-form-note {
    color: var(--reich-subtle);
    font-size: 13px;
}

.reich-cf7-panel .wpcf7-form {
    display: grid;
    gap: 16px;
}

.reich-cf7-panel .wpcf7-form p {
    display: grid;
    gap: 8px;
    margin: 0;
    color: var(--reich-muted);
    font-size: 18px;
    font-weight: 700;
}

.reich-cf7-panel .wpcf7-form-control-wrap {
    display: block;
}

.reich-cf7-panel input,
.reich-cf7-panel textarea,
.reich-cf7-panel select {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    padding: 13px 14px;
    background: #171717;
    color: #ffffff;
    font: inherit;
}

.reich-cf7-panel textarea {
    min-height: 150px;
    resize: vertical;
}

.reich-cf7-panel input:focus,
.reich-cf7-panel textarea:focus,
.reich-cf7-panel select:focus {
    outline: 2px solid rgba(42, 242, 222, 0.42);
    outline-offset: 2px;
    border-color: var(--reich-cyan);
}

.reich-cf7-panel input[type="submit"] {
    width: auto;
    min-height: 0;
    justify-self: start;
    border: 0;
    border-radius: 4px;
    padding: 13px 24px;
    background: var(--reich-cyan);
    color: #111111;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.reich-cf7-panel input[type="submit"]:hover,
.reich-cf7-panel input[type="submit"]:focus {
    background: var(--reich-cyan-hover);
    color: #ffffff;
}

.reich-cf7-panel .wpcf7-spinner {
    margin: 0 0 0 12px;
}

.reich-cf7-panel .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #ff8a8a;
    font-size: 14px;
    font-weight: 600;
}

.reich-cf7-panel .wpcf7-response-output {
    margin: 6px 0 0;
    border: 1px solid var(--reich-line);
    border-radius: 3px;
    padding: 12px 14px;
    color: var(--reich-text);
    font-size: 15px;
    font-weight: 600;
}

.reich-yith-quote {
    display: grid;
    gap: 28px;
    color: var(--reich-text);
}

.reich-yith-quote p,
.reich-yith-quote label,
.reich-yith-quote small,
.reich-yith-quote th,
.reich-yith-quote td {
    color: var(--reich-text);
}

.reich-yith-quote a {
    color: var(--reich-cyan);
}

.reich-yith-quote table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    background: transparent;
}

.reich-yith-quote th,
.reich-yith-quote td {
    border: 0;
    border-bottom: 1px solid var(--reich-line);
    padding: 16px 12px;
    vertical-align: middle;
}

.reich-yith-quote th {
    color: var(--reich-cyan);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.reich-yith-quote td.product-thumbnail,
.reich-yith-quote .product-thumbnail {
    width: 118px;
}

.reich-yith-quote .product-thumbnail img {
    width: 96px;
    height: 96px;
    display: block;
    object-fit: contain;
    background: #111;
}

.reich-yith-quote .product-name a {
    color: var(--reich-text);
    font-weight: 700;
}

.reich-yith-quote .remove,
.reich-yith-quote a.remove {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--reich-line);
    border-radius: 50%;
    color: var(--reich-cyan) !important;
    font-size: 22px;
    line-height: 1;
}

.reich-yith-quote .remove:hover,
.reich-yith-quote a.remove:hover {
    border-color: var(--reich-cyan);
    background: rgba(42, 242, 222, 0.1);
}

.reich-yith-quote input,
.reich-yith-quote select,
.reich-yith-quote textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    padding: 13px 14px;
    background: #171717;
    color: var(--reich-text);
    font: inherit;
}

.reich-yith-quote select {
    min-height: 54px;
    line-height: 1.35;
    appearance: auto;
}

.reich-yith-quote .select2-container {
    width: 100% !important;
}

.reich-yith-quote .select2-container .select2-selection--single {
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: #171717;
}

.reich-yith-quote .select2-container .select2-selection--single .select2-selection__rendered {
    min-height: 52px;
    padding: 13px 38px 13px 14px;
    color: var(--reich-text);
    line-height: 1.35;
}

.reich-yith-quote .select2-container .select2-selection--single .select2-selection__arrow {
    height: 52px;
    right: 10px;
}

.reich-yith-quote textarea {
    min-height: 140px;
    resize: vertical;
}

.reich-yith-quote input:focus,
.reich-yith-quote select:focus,
.reich-yith-quote textarea:focus {
    outline: 2px solid rgba(42, 242, 222, 0.45);
    outline-offset: 2px;
}

.reich-yith-quote input[type="checkbox"],
.reich-yith-quote input[type="radio"] {
    width: auto;
}

.reich-yith-quote .button,
.reich-yith-quote button,
.reich-yith-quote input[type="submit"] {
    width: auto;
    min-height: 52px;
    border: 0;
    border-radius: 6px;
    padding: 12px 24px;
    background: var(--reich-cyan) !important;
    color: #111111 !important;
    font-weight: 700;
    cursor: pointer;
}

.reich-yith-quote .button:hover,
.reich-yith-quote button:hover,
.reich-yith-quote input[type="submit"]:hover {
    background: var(--reich-cyan-hover) !important;
    color: #ffffff !important;
}

.reich-yith-quote .ywraq_list_empty_message,
.reich-yith-quote .return-to-shop,
.reich-yith-quote .woocommerce-message,
.reich-yith-quote .woocommerce-info,
.reich-yith-quote .woocommerce-error {
    border: 0;
    border-left: 4px solid var(--reich-cyan);
    border-radius: 4px;
    margin: 0 0 22px;
    padding: 18px 20px;
    background: var(--reich-panel);
    color: var(--reich-text);
}

.reich-yith-quote .woocommerce-error {
    border-left-color: #d94f4f;
}

.reich-yith-quote .reich-quote-success {
    padding-left: 20px !important;
}

.reich-yith-quote .reich-quote-success::before,
.reich-yith-quote .reich-quote-success::after {
    display: none !important;
    content: none !important;
}

.reich-yith-quote .ywraq-form-table-wrapper,
.reich-yith-quote .yith-ywraq-mail-form-wrapper {
    border-radius: 8px;
    padding: clamp(22px, 4vw, 36px);
    background: var(--reich-panel);
}

.reich-quote-page .reich-yith-quote .yith-ywraq-mail-form-wrapper {
    width: min(100%, 760px);
    max-width: 760px;
    padding: 0;
    background: transparent;
}

.reich-quote-page .reich-yith-quote .yith-ywraq-mail-form-wrapper h3 {
    display: none;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
    align-items: end;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form .form-row {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.reich-quote-page .reich-yith-quote #message_field {
    grid-column: 1 / -1;
}

.reich-quote-page .reich-yith-quote #firma_field,
.reich-quote-page .reich-yith-quote #strae_und_hausnummer_field,
.reich-quote-page .reich-yith-quote #land_field,
.reich-quote-page .reich-yith-quote .raq-send-request-row {
    grid-column: 1;
}

.reich-quote-page .reich-yith-quote #first_name_field,
.reich-quote-page .reich-yith-quote #email_field,
.reich-quote-page .reich-yith-quote #postleitzahl_field {
    grid-column: 1;
}

.reich-quote-page .reich-yith-quote #last_name_field,
.reich-quote-page .reich-yith-quote #telefon_field,
.reich-quote-page .reich-yith-quote #stadt_field {
    grid-column: 2;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form label {
    display: block;
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form .optional {
    display: none;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form input,
.reich-quote-page .reich-yith-quote #yith-ywraq-default-form select,
.reich-quote-page .reich-yith-quote #yith-ywraq-default-form textarea {
    min-height: 28px;
    border: 1px solid #868686;
    border-radius: 2px;
    padding: 4px 8px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.25;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form textarea {
    min-height: 82px;
    padding: 8px;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form select {
    height: 30px;
    min-height: 30px;
    padding: 3px 8px;
    color: #b8b8b8;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form .select2-container .select2-selection--single {
    min-height: 30px;
    border-color: #868686;
    border-radius: 2px;
    background: #2a2a2a;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form .select2-container .select2-selection--single .select2-selection__rendered {
    min-height: 28px;
    padding: 4px 32px 4px 8px;
    color: #b8b8b8;
    font-size: 14px;
    line-height: 20px;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form .select2-container .select2-selection--single .select2-selection__arrow {
    height: 28px;
    right: 4px;
}

.reich-quote-page .reich-yith-quote #yith-ywraq-default-form input[type="submit"] {
    min-height: 40px;
    margin-top: 8px;
    border: 0;
    border-radius: 5px;
    padding: 10px 18px;
    background: var(--reich-cyan) !important;
    color: #111111 !important;
    font-size: 18px;
    font-weight: 700;
}

.reich-shop-polish.woocommerce,
.woocommerce-page {
    background: var(--reich-bg);
}

.woocommerce-page #main-content,
.woocommerce-page .container {
    background: var(--reich-bg);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border-radius: 4px;
    background: var(--reich-panel);
    padding: 18px;
    color: var(--reich-text);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--reich-cyan);
    font-size: 20px;
}

.woocommerce .button,
.woocommerce-page .button {
    border-radius: 4px !important;
    background: var(--reich-cyan) !important;
    color: #08110f !important;
    font-weight: 800 !important;
}

.reich-shop-page {
    min-height: 100vh;
    background: var(--reich-bg);
}

.reich-shop-toolbar {
    display: grid;
    gap: 24px;
    margin-bottom: 42px;
}

.reich-anlagen-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.reich-facet-sidebar {
    display: grid;
    gap: 30px;
    color: var(--reich-text);
}

.reich-facet-sidebar section {
    display: grid;
    gap: 12px;
}

.reich-facet-sidebar h2 {
    margin: 0 0 12px;
    color: var(--reich-text);
    font-family: var(--reich-font-body);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
}

.reich-facet-sidebar label {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: start;
    color: var(--reich-text);
    font-size: 20px;
    line-height: 1.35;
}

.reich-facet-sidebar input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    accent-color: var(--reich-cyan);
}

.reich-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reich-hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.reich-hero-categories .reich-filter-chip {
    min-height: 42px;
}

.reich-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    padding: 0 16px;
    background: var(--reich-panel);
    color: var(--reich-text);
    font-size: 16px;
    font-weight: 700;
}

.reich-filter-chip:hover,
.reich-filter-chip.is-active {
    border-color: var(--reich-cyan);
    background: var(--reich-panel-soft);
    color: var(--reich-cyan);
}

.reich-shop-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--reich-subtle);
    font-size: 16px;
}

.reich-sort-select {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    padding: 10px 12px;
    background: var(--reich-panel);
    color: var(--reich-text);
    font: inherit;
    font-size: 16px;
}

.reich-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.reich-shop-page .reich-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.reich-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 4px;
    background: var(--reich-panel);
    overflow: hidden;
}

.reich-shop-page .reich-product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 255px;
    min-height: 405px;
    border-radius: 8px;
}

.reich-product-card__image {
    display: block;
    aspect-ratio: 1.28;
    background: #111;
    overflow: hidden;
}

.reich-shop-page .reich-product-card__image {
    order: 2;
    width: 100%;
    height: calc(100% - 52px);
    margin: 26px 0;
    aspect-ratio: auto;
}

.reich-product-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease;
}

.reich-shop-page .reich-product-card__image img {
    object-fit: cover;
}

.reich-product-card:hover .reich-product-card__image img {
    transform: scale(1.035);
}

.reich-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.reich-shop-page .reich-product-card__body {
    justify-content: center;
    padding: 40px 48px;
}

.reich-product-card h2 {
    margin: 0 0 14px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 32px;
    line-height: 1.15;
}

.reich-shop-page .reich-product-card h2 {
    max-width: 620px;
    margin-bottom: 24px;
    font-family: var(--reich-font-heading);
    font-size: 40px;
}

.reich-product-card__excerpt {
    margin: 0 0 18px;
    color: var(--reich-text);
    font-size: 18px;
}

.reich-product-specs {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: var(--reich-text);
    font-size: 16px;
}

.reich-shop-page .reich-product-specs {
    gap: 10px;
    margin-bottom: 28px;
    font-size: 22px;
}

.reich-product-specs strong {
    color: var(--reich-subtle);
    font-weight: 700;
}

.reich-shop-page .reich-product-specs strong {
    color: #ffffff;
}

.reich-product-card .reich-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
    width: 121px;
    height: 61px;
    min-height: 61px;
    border: 1px solid #FFF5E6;
    border-radius: 8px;
    padding: 14px 24px;
    background: transparent;
    color: #ffffff;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.05));
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.reich-product-card .reich-button:hover,
.reich-product-card .reich-button:focus-visible {
    border-color: var(--reich-cyan);
    background: transparent;
    color: var(--reich-cyan);
}

.reich-empty {
    border-radius: 4px;
    padding: 34px;
    background: var(--reich-panel);
    color: var(--reich-text);
}

body.single-product.et-tb-has-header .et-l--body {
    padding-top: clamp(96px, 8vw, 132px);
}

body.single-product .et_pb_wc_gallery .et_pb_gallery_items,
body.single-product .et_pb_wc_gallery .et_pb_gallery_item,
body.single-product .et_pb_wc_gallery .et_pb_gallery_image,
body.single-product .et_pb_wc_gallery .et_pb_gallery_image a {
    display: block;
    width: 100%;
}

body.single-product .et_pb_wc_gallery .et_pb_gallery_image a {
    height: 100%;
}

body.single-product .et_pb_wc_gallery .et_pb_gallery_image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

body.single-product .et_pb_wc_gallery .et_pb_gallery_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #111;
}

@media (max-width: 980px) {
    .reich-header__inner {
        min-height: 88px;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 14px 0 12px;
    }

    .reich-nav {
        position: relative;
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: clamp(18px, 7vw, 42px);
        font-size: 15px;
    }

    .reich-nav__submenu {
        top: calc(100% + 8px);
        left: 50%;
        width: min(300px, calc(100vw - 28px));
        min-width: 0;
        max-height: min(64vh, 360px);
        overflow-y: auto;
        display: grid;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -6px);
    }

    .reich-nav__item--has-submenu:hover .reich-nav__submenu,
    .reich-nav__item--has-submenu:focus-within .reich-nav__submenu {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -6px);
    }

    .reich-nav__item--has-submenu.is-open .reich-nav__submenu {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .reich-nav__submenu a {
        font-size: 18px;
    }

    .reich-hero {
        min-height: auto;
    }

    .reich-hero__content {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .reich-card,
    .reich-card:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .reich-card:nth-child(even) .reich-card__media {
        order: 0;
    }

    .reich-apps__grid,
    .reich-product-grid,
    .reich-footer__inner,
    .reich-values,
    .reich-contact-grid,
    .reich-category-intro__grid,
    .reich-anlagen-layout,
    .reich-shop-page .reich-product-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .reich-shop-page .reich-product-card__image {
        order: 0;
        height: auto;
        margin: 0;
        aspect-ratio: 1.28;
    }

    .reich-shop-page .reich-product-card__body {
        padding: 28px;
    }

    .reich-shop-page .reich-product-card h2 {
        font-size: 32px;
    }

    body.single-product.et-tb-has-header .et-l--body {
        padding-top: 88px;
    }
}

@media (max-width: 640px) {
    .admin-bar .reich-header {
        top: 46px;
    }

    .reich-header__inner,
    .reich-main,
    .reich-hero__content,
    .reich-anlagen-header__inner,
    .reich-footer__inner,
    .reich-footer__bottom-inner {
        width: min(100% - 28px, var(--reich-max));
    }

    .reich-logo {
        width: 168px;
        max-width: 54vw;
    }

    .reich-site {
        font-size: 18px;
    }

    .reich-hero h1,
    .reich-page-hero h1 {
        font-size: 34px;
    }

    .reich-hero__text,
    .reich-card p,
    .reich-app p,
    .reich-page-hero p,
    .reich-lead,
    .reich-anlagen-header p,
    .reich-shop-page .reich-product-specs {
        font-size: 18px;
    }

    .reich-card h2,
    .reich-apps h2,
    .reich-value h2,
    .reich-contact-panel h2,
    .reich-form-panel h2,
    .reich-facet-sidebar h2 {
        font-size: 28px;
    }

    .reich-anlagen-header__inner {
        padding-top: 92px;
        padding-bottom: 38px;
    }

    .reich-header__tools {
        gap: 12px;
    }

    .reich-hero__content {
        padding-top: 28px;
    }

    .reich-hero {
        padding-top: 56.25vw;
    }

    .reich-hero::before,
    .reich-hero__video {
        width: 100vw;
        height: 56.25vw;
        object-fit: contain;
        object-position: center top;
        background: #141312;
    }

    .reich-card {
        padding: 20px;
        gap: 22px;
    }

    .reich-overview-lead,
    .reich-category-intro {
        padding: 24px 20px;
    }

    .reich-card__media {
        min-height: 210px;
    }

    .reich-cards {
        gap: 28px;
        margin-top: 54px;
    }

    .reich-shop-toolbar .reich-filter-row {
        display: none;
    }

    .reich-yith-quote table,
    .reich-yith-quote thead,
    .reich-yith-quote tbody,
    .reich-yith-quote tr,
    .reich-yith-quote th,
    .reich-yith-quote td {
        display: block;
        width: 100%;
    }

    .reich-yith-quote thead {
        display: none;
    }

    .reich-yith-quote tr {
        border-bottom: 1px solid var(--reich-line);
        padding: 16px 0;
    }

    .reich-yith-quote td {
        border-bottom: 0;
        padding: 7px 0;
    }

    .reich-yith-quote td.product-thumbnail,
    .reich-yith-quote .product-thumbnail {
        width: 100%;
    }

    .reich-quote-page .reich-yith-quote .yith-ywraq-mail-form-wrapper {
        max-width: none;
    }

    .reich-quote-page .reich-yith-quote #yith-ywraq-default-form {
        grid-template-columns: 1fr;
    }

    .reich-quote-page .reich-yith-quote #message_field,
    .reich-quote-page .reich-yith-quote #firma_field,
    .reich-quote-page .reich-yith-quote #strae_und_hausnummer_field,
    .reich-quote-page .reich-yith-quote #land_field,
    .reich-quote-page .reich-yith-quote .raq-send-request-row,
    .reich-quote-page .reich-yith-quote #first_name_field,
    .reich-quote-page .reich-yith-quote #email_field,
    .reich-quote-page .reich-yith-quote #postleitzahl_field,
    .reich-quote-page .reich-yith-quote #last_name_field,
    .reich-quote-page .reich-yith-quote #telefon_field,
    .reich-quote-page .reich-yith-quote #stadt_field {
        grid-column: 1;
    }

    .reich-apps {
        margin-top: 58px;
    }

    .reich-apps__grid {
        gap: 30px;
    }

    .reich-page-hero__inner,
    .reich-content {
        width: min(100% - 28px, var(--reich-max));
    }

    body.single-product.et-tb-has-header .et-l--body {
        padding-top: 72px;
    }
}

.reich-shop-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.reich-view-toggle {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    background: var(--reich-panel);
}

.reich-view-toggle a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-height: 42px;
    padding: 0;
    color: var(--reich-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.reich-view-toggle a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.reich-view-toggle a:hover,
.reich-view-toggle a.is-active {
    background: var(--reich-cyan);
    color: #08110f;
}

.reich-facet-form {
    display: grid;
    gap: 30px;
}

.reich-facet-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.reich-facet-actions .reich-button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.reich-facet-actions a {
    color: var(--reich-cyan);
    font-size: 15px;
    font-weight: 800;
}

.reich-shop-page .reich-product-grid--kachel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.reich-shop-page .reich-product-grid--kachel .reich-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 4px;
}

.reich-shop-page .reich-product-grid--kachel .reich-product-card__image {
    order: 0;
    height: auto;
    margin: 0;
    aspect-ratio: 1.28;
}

.reich-shop-page .reich-product-grid--kachel .reich-product-card__body {
    justify-content: flex-start;
    padding: 22px;
}

.reich-shop-page .reich-product-grid--kachel .reich-product-card h2 {
    margin-bottom: 14px;
    font-family: var(--reich-font-body);
    font-size: 32px;
}

.reich-shop-page .reich-product-grid--kachel .reich-product-specs {
    gap: 8px;
    margin-bottom: 22px;
    font-size: 16px;
}

@media (max-width: 980px) {
    .reich-shop-page .reich-product-grid--kachel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .reich-shop-controls,
    .reich-view-toggle,
    .reich-sort-select {
        width: 100%;
    }

    .reich-view-toggle a {
        flex: 1;
        justify-content: center;
    }

    .reich-shop-page .reich-product-grid--kachel {
        grid-template-columns: 1fr;
    }
}

.reich-generic-page {
    max-width: 920px;
    color: var(--reich-text);
}

.reich-generic-page h1 {
    margin: 0 0 28px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 40px;
}

.reich-generic-page__content {
    color: var(--reich-text);
    font-size: 20px;
}

@media (max-width: 980px) {
    .reich-hero {
        padding-top: 0;
        overflow: visible;
    }

    .reich-hero::before {
        display: none;
    }

    .reich-hero__video {
        position: relative;
        top: auto;
        left: auto;
        z-index: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        transform: none;
        object-fit: contain;
        object-position: center;
        background: #141312;
    }

    .reich-hero__content {
        padding-top: 28px;
    }
}

.reich-product-detail {
    width: min(var(--reich-max), calc(100% - 56px));
    margin: 0 auto;
    padding: 64px 0 92px;
}

.reich-product-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: var(--reich-subtle);
    font-size: 14px;
    font-weight: 700;
}

.reich-product-detail__breadcrumb a {
    color: var(--reich-cyan);
}

.reich-product-detail__hero {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: start;
}

.reich-product-summary {
    min-width: 0;
}

.reich-product-detail__hero h1 {
    margin: 0 0 18px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 40px;
    line-height: 1.14;
}

.reich-product-detail__hero .reich-eyebrow,
.reich-product-detail__hero .reich-eyebrow a {
    color: var(--reich-subtle);
    font-size: 16px;
}

.reich-product-detail__sku,
.reich-product-detail__short {
    margin: 0 0 18px;
    color: var(--reich-text);
    font-size: 22px;
}

.reich-product-short {
    margin: 28px 0;
    border-left: 4px solid var(--reich-cyan);
    border-radius: 4px;
    padding: 24px 26px;
    background: var(--reich-panel);
}

.reich-product-short h2 {
    margin: 0 0 16px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 28px;
}

.reich-product-short dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.reich-product-short dl > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 18px;
}

.reich-product-short dt {
    color: var(--reich-subtle);
    font-size: 17px;
    font-weight: 800;
}

.reich-product-short dd {
    margin: 0;
    color: var(--reich-text);
    font-size: 18px;
}

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

.reich-product-gallery__main {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
}

.reich-product-gallery__main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #111;
}

.reich-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.reich-product-gallery__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.reich-product-gallery__thumbs a,
.reich-product-gallery__thumbs button {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    background: #111;
    cursor: pointer;
    padding: 0;
}

.reich-product-gallery__thumbs a.is-active,
.reich-product-gallery__thumbs button.is-active {
    border-color: var(--reich-cyan);
}

.reich-product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.reich-product-gallery__dots button {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.reich-product-gallery__dots span {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    transition: background-color 160ms ease, transform 160ms ease;
}

.reich-product-gallery__dots button:hover span,
.reich-product-gallery__dots button:focus-visible span,
.reich-product-gallery__dots button.is-active span {
    background: var(--reich-cyan);
    transform: scale(1.28);
}

.reich-accessory-gallery {
    margin-top: 42px;
    padding: clamp(20px, 3vw, 32px);
    border-radius: 8px;
    background: var(--reich-panel);
}

.reich-accessory-gallery h2 {
    margin: 0 0 20px;
    color: var(--reich-cyan);
}

.reich-accessory-gallery .reich-product-gallery {
    width: min(100%, 760px);
}

.reich-accessory-gallery .reich-product-figma__stage {
    width: 100%;
    min-height: clamp(320px, 52vw, 560px);
}

.reich-accessory-gallery .reich-product-gallery__main {
    width: 100%;
    max-height: 560px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: #111;
}

.reich-accessory-gallery .reich-product-gallery__main img {
    background: #111;
}

.reich-accessory-gallery .reich-product-gallery__dots {
    margin-top: 18px;
}

.reich-product-detail__details,
.reich-product-detail__description {
    margin-top: 54px;
    border-radius: 8px;
    padding: 34px;
    background: var(--reich-panel);
}

.reich-product-detail__description {
    display: none;
}

.reich-product-detail__details h2,
.reich-product-detail__description h2 {
    margin: 0 0 24px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 32px;
}

.reich-product-detail__details dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.reich-product-detail__details dl > div {
    display: grid;
    grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reich-product-detail__details dt {
    color: var(--reich-subtle);
    font-size: 18px;
    font-weight: 800;
}

.reich-product-detail__details dd {
    margin: 0;
    color: var(--reich-text);
    font-size: 18px;
}

.reich-product-detail__description {
    color: var(--reich-text);
    font-size: 20px;
}

.reich-product-detail__description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .reich-product-detail__hero,
    .reich-product-detail__details dl > div,
    .reich-product-short dl > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .reich-product-detail {
        width: min(100% - 28px, var(--reich-max));
        padding-top: 42px;
    }

    .reich-product-detail__details,
    .reich-product-detail__description {
        padding: 24px 20px;
    }

    .reich-product-gallery__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.reich-product-figma {
    min-height: 860px;
    padding-top: 42px;
}

.reich-product-figma__layout {
    display: grid;
    grid-template-columns: minmax(0, 85fr) minmax(180px, 15fr);
    gap: clamp(24px, 3.5vw, 56px);
    align-items: start;
}

.reich-product-figma__content {
    max-width: none;
}

.reich-product-figma__breadcrumb {
    margin: 0 0 12px;
    color: var(--reich-subtle);
    font-size: 11px;
    font-weight: 700;
}

.reich-product-figma h1 {
    margin: 0 0 18px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
}

.reich-product-figma__meta,
.reich-product-figma__tech {
    margin: 0;
}

.reich-product-figma__meta div,
.reich-product-figma__tech div {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 4px;
    color: var(--reich-text);
    font-size: 18px;
    line-height: 1.25;
}

.reich-product-figma__meta dt,
.reich-product-figma__tech dt {
    font-weight: 800;
}

.reich-product-figma__meta dd,
.reich-product-figma__tech dd {
    margin: 0;
}

.reich-product-figma__tech dd.is-accent {
    color: var(--reich-cyan);
}

.reich-product-figma__section {
    margin-top: 48px;
}

.reich-product-figma__divider {
    width: 100%;
    height: 1px;
    border: 0;
    margin: 42px 0 0;
    background: rgba(255, 255, 255, 0.18);
}

.reich-product-figma__section h2 {
    margin: 0 0 16px;
    color: var(--reich-cyan);
    font-family: var(--reich-font-body);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}

.reich-product-figma__section p {
    margin: 0;
    color: var(--reich-text);
    font-size: 18px;
    line-height: 1.4;
}

.reich-product-figma__request {
    max-width: 430px;
}

.reich-product-template-html {
    color: var(--reich-text);
    font-size: 18px;
    line-height: 1.35;
}

.reich-product-template-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    color: var(--reich-text);
    font-size: 18px;
}

.reich-product-template-html thead {
    display: none;
}

.reich-product-template-html tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.reich-product-template-html tr:last-child {
    border-bottom: 0;
}

.reich-product-template-html td,
.reich-product-template-html th {
    padding: 6px 0;
    border: 0;
    vertical-align: top;
    text-align: left;
}

.reich-product-template-html td:first-child {
    width: 48%;
    padding-right: 18px;
    color: var(--reich-text);
    font-weight: 800;
}

.reich-product-template-html td:last-child {
    color: var(--reich-text);
}

.reich-product-template-html tr:last-child td:last-child {
    color: var(--reich-cyan);
}

.reich-product-figma__definition-link {
    margin-top: 18px;
    font-size: 16px;
}

.reich-product-figma__definition-link a,
.reich-product-figma__tech a {
    color: var(--reich-cyan);
    font-weight: 700;
}

.reich-product-figma__media {
    display: grid;
    justify-items: center;
    padding-top: 92px;
    width: 100%;
    min-width: 0;
    justify-self: end;
}

.reich-product-figma__stage {
    position: relative;
    width: min(100%, 360px);
    min-width: 0;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.reich-product-figma .reich-product-gallery__main {
    width: min(100%, 360px);
    max-height: 500px;
    aspect-ratio: 1;
    margin: 0;
    overflow: visible;
    border-radius: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    padding: 0;
}

.reich-product-figma .reich-product-gallery__main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.reich-product-figma__arrow {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity 160ms ease, background-color 160ms ease;
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
}

.reich-product-figma__stage:hover .reich-product-figma__arrow,
.reich-product-figma__stage:focus-within .reich-product-figma__arrow {
    opacity: 1;
    pointer-events: auto;
}

.reich-product-figma__arrow:hover,
.reich-product-figma__arrow:focus-visible {
    background: rgba(42, 242, 222, 0.1);
    color: var(--reich-cyan-hover);
}

.reich-product-figma__arrow::before {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -54%);
}

.reich-product-figma__arrow--prev {
    left: 12px;
}

.reich-product-figma__arrow--prev::before {
    content: "\2329";
}

.reich-product-figma__arrow--next {
    right: 12px;
}

.reich-product-figma__arrow--next::before {
    content: "\232A";
}

.reich-product-figma__button {
    min-width: 260px;
    min-height: 64px;
    margin-top: 42px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.reich-product-figma__quote {
    display: grid;
    justify-items: center;
}

.reich-product-figma__quote .clear {
    display: none;
}

.reich-product-figma__quote .yith-ywraq-add-to-quote {
    display: grid;
    justify-items: center;
}

.reich-product-figma__quote .reich-product-figma__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #111111 !important;
    background: var(--reich-cyan) !important;
}

.reich-product-figma__quote .reich-product-figma__button:hover,
.reich-product-figma__quote .reich-product-figma__button:focus-visible {
    color: #ffffff !important;
    background: var(--reich-cyan-hover) !important;
}

.reich-product-figma__quote .yith_ywraq_add_item_product_message,
.reich-product-figma__quote .yith_ywraq_add_item_response_message,
.reich-product-figma__quote .yith_ywraq_add_item_browse_message {
    max-width: 320px;
    margin-top: 14px;
    color: var(--reich-text);
    font-size: 16px;
    text-align: center;
}

.reich-product-figma__quote .yith_ywraq_add_item_browse_message a {
    color: var(--reich-cyan);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reich-product-figma .reich-product-gallery {
    width: min(100%, 360px);
    min-width: 0;
    justify-items: center;
}

.reich-product-figma .reich-product-gallery__dots {
    width: min(100%, 420px);
    margin-top: 14px;
}

.reich-gallery-is-open {
    overflow: hidden;
}

.reich-gallery-overlay[hidden] {
    display: none;
}

.reich-gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 52px);
}

.reich-gallery-overlay__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.86);
    cursor: zoom-out;
}

.reich-gallery-overlay__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(100%, 1200px);
    min-height: min(78vh, 780px);
}

.reich-gallery-overlay__dialog img {
    max-width: min(100%, 1120px);
    max-height: 78vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.reich-gallery-overlay__close,
.reich-gallery-overlay__arrow {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(35, 35, 35, 0.78);
    cursor: pointer;
}

.reich-gallery-overlay__close {
    top: 0;
    right: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.reich-gallery-overlay__close::before,
.reich-gallery-overlay__close::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 22px;
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: var(--reich-cyan);
}

.reich-gallery-overlay__close::before {
    transform: rotate(45deg);
}

.reich-gallery-overlay__close::after {
    transform: rotate(-45deg);
}

.reich-gallery-overlay__arrow {
    top: 50%;
    width: 54px;
    height: 74px;
    border-radius: 6px;
    transform: translateY(-50%);
    color: var(--reich-cyan);
    font-family: var(--reich-font-heading);
    font-size: 68px;
    font-weight: 400;
    line-height: 1;
}

.reich-gallery-overlay__arrow--prev {
    left: 0;
}

.reich-gallery-overlay__arrow--next {
    right: 0;
}

.reich-gallery-overlay__arrow::before {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -54%);
}

.reich-gallery-overlay__arrow--prev::before {
    content: "\2329";
}

.reich-gallery-overlay__arrow--next::before {
    content: "\232A";
}

.reich-gallery-overlay__close:hover::before,
.reich-gallery-overlay__close:hover::after,
.reich-gallery-overlay__close:focus-visible::before,
.reich-gallery-overlay__close:focus-visible::after {
    background: var(--reich-cyan-hover);
}

.reich-gallery-overlay__arrow:hover,
.reich-gallery-overlay__arrow:focus-visible {
    color: var(--reich-cyan-hover);
}

.reich-gallery-overlay__count {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    color: var(--reich-text);
    font-size: 16px;
}

.reich-cookie-notice {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 22px 24px;
    color: var(--reich-text);
    background: rgba(35, 35, 35, 0.98);
    border: 1px solid rgba(42, 242, 222, 0.38);
    border-left: 4px solid var(--reich-cyan);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.reich-cookie-notice[hidden] {
    display: none;
}

.reich-cookie-notice__content {
    max-width: 760px;
}

.reich-cookie-notice strong {
    display: block;
    margin: 0 0 6px;
    color: var(--reich-text);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.25;
}

.reich-cookie-notice p {
    margin: 0;
    color: var(--reich-muted-light);
    font-size: 16px;
    line-height: 1.55;
}

.reich-cookie-notice a {
    color: var(--reich-cyan);
    text-decoration: none;
}

.reich-cookie-notice a:hover {
    color: var(--reich-cyan-hover);
}

.reich-cookie-notice__button {
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 52px;
    padding: 12px 22px;
    color: #111;
    background: var(--reich-cyan);
    border: 0;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reich-cookie-notice__button:hover,
.reich-cookie-notice__button:focus-visible {
    background: var(--reich-cyan-hover);
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .reich-product-figma {
        min-height: 0;
    }

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

    .reich-product-figma__content {
        max-width: none;
    }

    .reich-product-figma__media {
        padding-top: 20px;
    }
}

@media (max-width: 640px) {
    .reich-cookie-notice {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
    }

    .reich-cookie-notice__button {
        width: 100%;
    }

    .reich-product-figma h1 {
        font-size: 34px;
    }

    .reich-product-figma__section h2 {
        font-size: 28px;
    }

    .reich-product-figma__meta div,
    .reich-product-figma__tech div {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .reich-product-template-html table,
    .reich-product-template-html tbody,
    .reich-product-template-html tr,
    .reich-product-template-html td {
        display: block;
        width: 100%;
    }

    .reich-product-template-html td:first-child {
        width: 100%;
        padding: 8px 0 0;
    }

    .reich-product-template-html td:last-child {
        padding: 0 0 8px;
    }

    .reich-product-figma__stage {
        min-height: 300px;
    }

    .reich-product-figma .reich-product-gallery__dots {
        margin-top: 10px;
    }

    .reich-product-figma__button {
        width: 100%;
        min-height: 54px;
        font-size: 22px;
    }

    .reich-gallery-overlay {
        padding: 14px;
    }

    .reich-gallery-overlay__dialog {
        min-height: 70vh;
        padding: 0 44px;
    }

    .reich-gallery-overlay__dialog img {
        max-height: 72vh;
    }

    .reich-gallery-overlay__arrow {
        width: 38px;
        height: 60px;
    }

}

@media (max-width: 980px) {
    .reich-category-info {
        grid-template-columns: 1fr;
    }

    .reich-category-info__cta {
        position: static;
    }

    .reich-smoke-intro {
        grid-template-columns: 1fr;
    }

    .reich-category-info--smoke {
        padding-top: 104px;
    }

    .reich-smoke-accordion__content {
        grid-template-columns: 1fr;
    }

    .reich-smoke-accordion__gallery .reich-product-figma__stage {
        min-height: 250px;
    }

    .reich-smoke-accordion__gallery .reich-product-gallery__main {
        width: min(100%, 240px);
        height: 230px;
    }

    .reich-search-form {
        grid-template-columns: 1fr;
    }

    .reich-search-form .reich-button {
        width: 100%;
    }

    .reich-condition-card {
        grid-template-columns: 1fr;
    }
}
