/* Import Variables */

@import 'variables.css';

/* Reset & Base */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-secondary);
}

main {
    min-height: 60vh;
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: var(--heading-size);
}

h2 {
    font-size: calc(var(--heading-size) * 0.8);
}

h3 {
    font-size: calc(var(--heading-size) * 0.6);
}

h4 {
    font-size: calc(var(--heading-size) * 0.5);
}


/* Links */

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Buttons */

.btn,
button {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-button);
    font-size: var(--button-size);
    font-weight: 700;
    text-transform: capitalize;
    color: var(--color-secondary);
    background-color: var(--color-accent);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover,
button:hover {
    background-color: var(--color-primary);
}


/* Container */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.page-content,
.article-page-content {
    max-width: 980px;
    margin: 0 auto;
}

.legal-hero {
    padding: 142px 0 62px;
    background: #e40521;
    text-align: center;
}

.legal-hero h1 {
    color: #fff;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
}

.legal-page {
    padding: 0 0 110px;
    background: #fff;
}

.legal-content {
    max-width: 1120px;
    margin: 0 auto;
    margin-top: 64px;
    padding: 0;
    color: #1f1f1f;
}

.legal-content h2 {
    margin: 0 0 12px;
    color: #202020;
    font-size: 30px;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 18px;
}

.legal-content h3 {
    margin: 26px 0 10px;
    color: #202020;
    font-size: 24px;
    font-weight: 700;
}

.legal-content h4 {
    margin: 18px 0 8px;
    color: #202020;
    font-size: 19px;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: #202020;
    font-size: 17px;
    line-height: 1.7;
}

.legal-content p+p,
.legal-content p+ul,
.legal-content ul+p,
.legal-content h2+p,
.legal-content h3+p,
.legal-content h4+p {
    margin-top: 14px;
}

.legal-content ul {
    margin: 14px 0 14px 22px;
}

.legal-content strong {
    font-weight: 700;
}

.legal-content a {
    color: #e40521;
    word-break: break-word;
}

.legal-content a:hover {
    color: #b50018;
    text-decoration: none;
}

@media (max-width: 900px) {
    .legal-hero {
        padding: 124px 0 48px;
    }
    .legal-hero h1 {
        font-size: 34px;
    }
    .legal-page {
        padding-bottom: 82px;
    }
    .legal-content h2 {
        font-size: 26px;
    }
    .legal-content h3 {
        font-size: 22px;
    }
    .legal-content h4 {
        font-size: 18px;
    }
}

/* About / Über uns */
.about-hero {
    position: relative;
    padding: 220px 0 160px;
    background-color: #1f1f1f;
    background-size: cover;
    background-position: center;
    text-align: left;
}
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.00) 100%);
    pointer-events: none;
}
.about-hero .container {
    position: relative;
    z-index: 1;
}
.about-hero h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    margin: 0;
}

.about-intro {
    padding: 80px 0;
    background: #1f1f1f;
    color: #fff;
}

.about-intro-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-intro-image {
    width: 100%;
}

.about-intro-image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-intro-text {
    width: 100%;
}

.about-intro-text p {
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 18px;
}
.about-intro-text p:last-child { margin-bottom: 0; }
.about-intro-text a {
    color: #e40521;
    word-break: break-word;
}
.about-intro-text a:hover {
    color: #ff1f3a;
    text-decoration: none;
}

@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.about-benefits {
    padding: 80px 0;
    background: #1f1f1f;
    color: #fff;
}

.about-benefits-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-benefits-text h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 38px;
    font-style: italic;
    font-weight: 800;
}

.about-benefits-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.about-benefits-list li {
    position: relative;
    padding: 6px 0 6px 36px;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.about-benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 10px;
    border-left: 3px solid #e40521;
    border-bottom: 3px solid #e40521;
    transform: rotate(-45deg);
}

.about-benefits-text > p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.7;
}

.about-benefits-certificates {
    position: relative;
    padding: 0 56px 40px;
}

.about-cert-track {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-cert-track-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.about-benefits-certificates .about-certificate {
    flex: 0 0 100%;
    min-width: 0;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
}

.about-benefits-certificates .about-certificate:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.about-benefits-certificates .about-certificate img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: opacity 0.4s ease;
}

/* Subtle fade on the inactive slides while sliding */
.about-cert-track-inner > .about-certificate:not(.is-active) img {
    opacity: 0.7;
}

.about-cert-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(228, 5, 33, 0.85);
    color: #fff;
    font-size: 30px;
    line-height: 0;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0 0 4px;
}

.about-cert-arrow:hover {
    background: #b50018;
    transform: translateY(-50%) scale(1.05);
}

.about-cert-arrow:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.about-cert-arrow--prev { left: 4px; }
.about-cert-arrow--next { right: 4px; }

.about-cert-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.about-cert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.about-cert-dot.is-active {
    background: #e40521;
    transform: scale(1.15);
}

.about-cert-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 600px) {
    .about-benefits-certificates {
        padding: 0 0 40px;
    }
    .about-cert-arrow--prev { left: -4px; }
    .about-cert-arrow--next { right: -4px; }
}

@media (max-width: 900px) {
    .about-hero {
        padding: 140px 0 90px;
    }
    .about-hero h1 {
        font-size: 42px;
    }
    .about-intro,
    .about-benefits {
        padding: 48px 0;
    }
    .about-intro-grid,
    .about-benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-benefits-text h2 {
        font-size: 30px;
    }
}


/* Section Spacing */

.section {
    padding: var(--spacing-xl) 0;
}

.section-sm {
    padding: var(--spacing-md) 0;
}


/* Images */

img {
    max-width: 100%;
    height: auto;
}

.blog-overview,
.article-page {
    background: #1f1f1f;
    color: #fff;
}

.blog-hero {
    min-height: 400px;
    padding: 110px 0 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../images/blog-hero.jpg') center center / cover no-repeat;
}

.blog-hero .product-breadcrumbs,
.blog-hero .product-breadcrumbs a,
.blog-hero .product-breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.blog-hero h1 {
    margin-top: 92px;
    color: #fff;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
}

.blog-overview--wp {
    padding: 100px 0 120px;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 69%) minmax(280px, 31%);
    gap: 30px;
    align-items: start;
}

.blog-section-heading h2 {
    margin-bottom: 26px;
    color: #fff;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
}

.blog-featured-card,
.blog-card--wp {
    background: #fff;
    border: 1px solid #7a7a7a;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 50% 1fr;
    padding: 15px;
    gap: 20px;
}

.blog-featured-card-image,
.blog-card-image {
    display: block;
}

.blog-featured-card-image img,
.blog-card-image img {
    width: 100%;
    display: block;
}

.blog-featured-card-body,
.blog-card-body {
    color: #202020;
}

.blog-featured-card-body h3,
.blog-card-body h3 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.15;
}

.blog-featured-card-body h3 a,
.blog-card-body h3 a {
    color: #202020;
    text-decoration: none;
}

.blog-card-date,
.article-page-date {
    margin-bottom: 12px;
    font-size: 16px;
    color: #3f3f3f;
}

.blog-featured-card-body p,
.blog-card-body p {
    font-size: 16px;
    line-height: 1.5;
    color: #202020;
}

.blog-read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    color: #e40521;
    text-decoration: none;
}

.blog-read-more:hover {
    color: #b50018;
    text-decoration: none;
}

.blog-divider {
    height: 1px;
    margin: 40px 0;
    background: #e4e4e4;
}

.blog-grid--wp {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 30px;
}

.blog-card--wp {
    padding: 15px;
}

.blog-card--wp .blog-card-image {
    margin-bottom: 20px;
}

.blog-sidebar {
    padding: 75px 10px 40px 40px;
}

.blog-sidebar-panel {
    margin-bottom: 40px;
    padding: 25px;
}

.blog-sidebar-panel h4 {
    margin-bottom: 18px;
    font-size: 24px;
}

.blog-sidebar-panel--dark {
    border: 1px solid #e4e4e4;
    background: rgba(0, 0, 0, 0.68);
}

.blog-sidebar-panel--dark h4,
.blog-sidebar-panel--dark a {
    color: #fff;
}

.blog-sidebar-links {
    list-style: none;
}

.blog-sidebar-links li+li {
    margin-top: 28px;
}

.blog-sidebar-links a {
    display: block;
    text-decoration: none;
}

.blog-sidebar-links li>a:first-child {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.35;
}

.blog-sidebar-panel--dark .blog-read-more {
    color: #ff3048;
}

.blog-sidebar-panel--light {
    background: rgba(255, 255, 255, 0.7);
}

.blog-sidebar-panel--light,
.blog-sidebar-panel--light a,
.blog-sidebar-panel--light p,
.blog-category-list a {
    color: #202020;
}

.blog-contact-list,
.blog-category-list {
    margin-top: 18px;
    list-style: none;
}

.blog-contact-list li+li,
.blog-category-list li+li {
    margin-top: 10px;
}

.blog-sidebar-panel--outline {
    border: 1px solid #808080;
    padding: 0;
    background: transparent;
}

.blog-sidebar-panel--outline h4 {
    padding: 40px 40px 0;
    color: #fff;
}

.blog-category-list {
    padding: 0 40px 40px;
}

.blog-category-list a {
    color: #fff;
    text-decoration: none;
}

.article-page {
    padding: 80px 0 110px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    margin-top: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }
}

.article-page-content {
    margin-top: 0;
    min-width: 0;
    width: 100%;
    overflow-wrap: break-word;
}

.article-page-body img,
.article-page-body iframe {
    max-width: 100%;
    height: auto;
}

.article-page-content h1 {
    color: #fff;
    margin-bottom: 18px;
}

.article-page-body {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.article-page-image {
    margin: 28px 0 32px;
}

.article-page-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.article-page-body p+p {
    margin-top: 18px;
}

.event-post-hero {
    position: relative;
    min-height: 500px;
    padding: 110px 0 70px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.event-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
}

.event-post-hero .container,
.event-post-heading .container,
.event-post-body-section .container {
    position: relative;
    z-index: 1;
}

.event-post-hero .product-breadcrumbs,
.event-post-hero .product-breadcrumbs a,
.event-post-hero .product-breadcrumbs span {
    color: rgba(255, 255, 255, 0.72);
}

.event-post-heading {
    position: relative;
    z-index: 2;
    margin-top: -160px;
    margin-bottom: -35px;
    padding-bottom: 0;
}

.event-post-heading-inner {
    max-width: 760px;
}

.event-post-date-badge {
    display: inline-block;
    padding: 15px 50px 12px;
    background: #d71920;
    color: #fff;
    font-family: var(--font-button);
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    border-radius: 0 30px 0 0;
}

.event-post-title-card {
    padding: 34px 46px 40px;
    background: #fff;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.event-post-title-card h1 {
    margin: 0;
    color: #111;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
}

.event-post-body-section {
    padding: 78px 0 110px;
    background: var(--color-primary);
}

.event-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
    gap: 38px;
    align-items: start;
}

.event-post-content h2,
.event-post-panel h3 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
}

.event-post-content-copy {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.event-post-content-copy h3 {
    margin: 42px 0 18px;
    color: #fff;
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
}

.event-post-content-copy figure {
    margin: 28px 0 0;
}

.event-post-content-copy img {
    width: 100%;
    display: block;
}

.event-post-content-copy figcaption {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-align: center;
}

.event-post-map {
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.event-post-map iframe {
    display: block;
    width: 100%;
    min-height: 460px;
    border: 0;
}

.event-post-map-caption {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-align: center;
}

.event-post-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.event-post-panel+.event-post-panel {
    margin-top: 30px;
}

.event-post-detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-post-detail-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.event-post-detail-list li+li {
    margin-top: 18px;
}

.event-post-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    color: #d71920;
    font-family: var(--font-button);
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
}

.event-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-post-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: var(--font-button);
    font-size: 15px;
    font-weight: 700;
}

.event-post-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-post-share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: var(--font-button);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.event-post-share-links a:hover {
    border-color: #d71920;
    color: #d71920;
}

@media (max-width: 991px) {
    .event-post-heading {
        margin-top: -130px;
    }
    .event-post-date-badge {
        padding: 14px 30px 11px;
        font-size: 18px;
    }
    .event-post-title-card {
        padding: 28px 30px 34px;
    }
    .event-post-title-card h1 {
        font-size: 40px;
    }
    .event-post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .event-post-hero {
        min-height: 360px;
        padding-top: 90px;
    }
    .event-post-heading {
        margin-top: -100px;
    }
    .event-post-date-badge {
        padding: 12px 20px 10px;
        font-size: 15px;
    }
    .event-post-title-card {
        padding: 24px 22px 28px;
        border-radius: 0 0 32px 32px;
    }
    .event-post-title-card h1 {
        font-size: 30px;
    }
    .event-post-body-section {
        padding: 58px 0 80px;
    }
    .event-post-content h2,
    .event-post-panel h3,
    .event-post-content-copy h3 {
        font-size: 24px;
    }
    .event-post-content-copy {
        font-size: 18px;
    }
    .event-post-panel {
        padding: 22px;
    }
    .event-post-map iframe {
        min-height: 360px;
    }
}

.contact-hero {
    min-height: 500px;
    padding: 110px 0 70px;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.contact-hero .product-breadcrumbs,
.contact-hero .product-breadcrumbs a,
.contact-hero .product-breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.contact-hero h1 {
    margin-top: 92px;
    color: #fff;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
}

.contact-page {
    padding: 90px 0 110px;
    background: #2a2a2a;
    color: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 70px;
    align-items: start;
}

.contact-sidebar h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
}

.contact-sidebar-copy {
    max-width: 360px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
}

.contact-details {
    margin: 0 0 34px;
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.contact-details li:first-child {
    margin-top: 0;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ff3048;
    text-decoration: none;
}

.contact-detail-icon {
    flex: 0 0 auto;
    color: #ff3048;
    font-weight: 700;
    line-height: 1.2;
}

.contact-sidebar-logo {
    width: min(220px, 100%);
    margin-bottom: 18px;
}

.contact-sidebar-image {
    display: block;
    width: min(280px, 100%);
}

.contact-sidebar-certs {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.contact-sidebar-certs img:first-child {
    height: 48px;
}

.contact-sidebar-certs img:last-child {
    height: 34px;
}

.contact-form-panel {
    padding-top: 4px;
}

.kraftol-contact-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px 16px;
}

.kraftol-contact-form .form-field {
    margin: 0;
}

.kraftol-contact-form .contact-form-field {
    grid-column: span 12;
}

.kraftol-contact-form .contact-form-field--half {
    grid-column: span 6;
}

.kraftol-contact-form .contact-form-field--wide {
    grid-column: span 8;
}

.kraftol-contact-form .contact-form-field--narrow {
    grid-column: span 4;
}

.kraftol-contact-form .form-label {
    display: block;
    margin-bottom: 8px;
}

.kraftol-contact-form .form-label label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.kraftol-contact-form input,
.kraftol-contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    box-shadow: none;
}

.kraftol-contact-form textarea {
    min-height: 112px;
    resize: vertical;
}

.kraftol-contact-form input:focus,
.kraftol-contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 48, 72, 0.25);
}

.kraftol-contact-form .contact-form-field--checkbox {
    margin-top: 4px;
}

.kraftol-contact-form .contact-form-field--checkbox .form-data {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kraftol-contact-form .contact-form-field--checkbox input[type='checkbox'] {
    width: 16px;
    height: 16px;
    padding: 0;
    accent-color: var(--color-accent);
}

.kraftol-contact-form .contact-form-field--checkbox label {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}

.kraftol-contact-form .contact-form-field--checkbox a {
    color: #fff;
    text-decoration: underline;
}

.kraftol-contact-form .buttons,
.kraftol-contact-form .contact-form-actions {
    grid-column: span 12;
    margin-top: 2px;
}

.kraftol-contact-form .button,
.kraftol-contact-form .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    color: #fff;
    background: var(--color-accent);
}

.kraftol-contact-form .button:hover,
.kraftol-contact-form .btn:hover {
    background: var(--color-accent);
}

.kraftol-contact-form .form-errors,
.kraftol-contact-form .notices {
    grid-column: span 12;
    margin-top: 6px;
    color: #fff;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        padding: 30px 0 0;
    }
    .contact-layout {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .blog-featured-card,
    .blog-grid--wp {
        grid-template-columns: 1fr;
    }
    .blog-sidebar-panel {
        margin-bottom: 20px;
    }
    .blog-sidebar-panel--outline h4,
    .blog-category-list {
        padding-left: 30px;
        padding-right: 30px;
    }
    .article-page-body {
        font-size: 18px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        min-height: 300px;
        padding-top: 70px;
    }
    .blog-hero h1 {
        margin-top: 70px;
        text-align: center;
    }
    .blog-overview--wp {
        padding: 80px 10px 70px;
    }
    .blog-featured-card,
    .blog-card--wp {
        padding: 15px;
    }
    .blog-featured-card-body h3,
    .blog-card-body h3 {
        font-size: 24px;
    }
    .blog-sidebar-panel {
        padding: 30px;
    }
    .blog-sidebar-panel--outline {
        padding: 0;
    }
    .contact-hero {
        min-height: 300px;
        padding-top: 70px;
    }
    .contact-hero h1 {
        margin-top: 70px;
        font-size: 34px;
    }
    .contact-page {
        padding: 70px 0 80px;
    }
    .contact-sidebar h2 {
        font-size: 32px;
    }
    .kraftol-contact-form .contact-form-field--half,
    .kraftol-contact-form .contact-form-field--wide,
    .kraftol-contact-form .contact-form-field--narrow {
        grid-column: span 12;
    }
}


/* Header Styles */

.site-header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 0;
    padding: 20px 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 130px;
    transition: background-color 0.5s ease, height 0.5s ease, padding 0.5s ease;
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.site-header-inner {
    width: 100%;
    max-width: 1140px;
    height: 90px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 40% 15% 12.728%;
    column-gap: 0;
    align-items: center;
}

.header-burger-slot,
.header-search-slot,
.header-language {
    display: flex;
    align-items: center;
}

.header-burger-slot {
    grid-column: 1;
    padding-left: 30px;
    justify-content: flex-start;
}

.logo {
    grid-column: 2;
}

.header-search-slot {
    grid-column: 3;
    justify-content: flex-end;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: auto;
    max-height: 70px;
    transition: max-height 0.5s ease;
}

.site-header.is-scrolled .site-logo-image {
    max-height: 40px;
}

.nav-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF0000;
    text-decoration: none;
}

.mobile-menu-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    color: #fff;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: currentColor;
    transition: all 0.3s ease;
}

.header-search-toggle,
.language-toggle,
.menu-panel-close {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.site-header a,
.site-header button {
    color: #fff;
}

.site-header button:hover,
.site-header button:focus {
    background: transparent;
    color: #fff;
}

.header-search-toggle {
    width: 40px;
    height: 40px;
    position: relative;
}

.header-search-toggle::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    border: 3px solid currentColor;
    border-radius: 50%;
    top: 7px;
    left: 7px;
}

.header-search-toggle::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 3px;
    background: currentColor;
    transform: rotate(45deg);
    top: 26px;
    left: 25px;
    transform-origin: left center;
}

.header-language {
    grid-column: 4;
    justify-content: center;
    position: relative;
    min-height: 44px;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.language-toggle img,
.language-option img {
    display: block;
    width: 18px;
    height: 12px;
}

.language-caret {
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    margin-top: -4px;
}

.language-option {
    display: none;
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: rgba(0, 0, 0, 0.9);
}

.header-language:hover .language-option,
.header-language:focus-within .language-option {
    display: block;
}

.site-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 120;
}

.site-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    max-width: 65vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    z-index: 121;
    padding: 0 20px 0 25px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.site-menu-panel.active {
    transform: translateX(0);
    pointer-events: auto;
}

.menu-panel-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
}

.menu-panel-close::before,
.menu-panel-close::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 4px;
    width: 24px;
    height: 2px;
    background: #fff;
}

.menu-panel-close::before {
    transform: rotate(45deg);
}

.menu-panel-close::after {
    transform: rotate(-45deg);
}

.menu-panel-logo {
    display: block;
    margin: 0 0 50px;
    width: 60%;
}

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

.menu-panel-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 34px;
}

.menu-panel-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-panel-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}

.menu-panel-social a:hover {
    color: #FF0000;
    text-decoration: none;
}

body.menu-open {
    overflow: hidden;
}


/* Footer Styles */

@font-face {
    font-family: 'AcuminProSemiCond Bold Italic';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/AcuminProSemiCond-BoldItalic.woff2') format('woff2');
}

.site-footer {
    background: #f2f2f2;
    color: #222;
    padding: 56px 0 84px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 38% 23.333% 38%;
    align-items: start;
    gap: 20px;
    padding: 0;
}

.footer-column-left,
.footer-column-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column-center {
    display: flex;
    justify-content: center;
    align-self: center;
}

.footer-column-right {
    align-items: flex-end;
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav a,
.footer-legal a,
.footer-cookie-settings {
    color: #222;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-cookie-settings:hover {
    color: #fc685b;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #222;
    text-decoration: none;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social a:hover {
    color: #fc685b;
    text-decoration: none;
}

.footer-logo {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.footer-logo img {
    width: min(178px, 100%);
    height: auto;
}


/* Distribution */

.distribution-hero {
    position: relative;
    background: url('../images/distribution-hero.jpg') center center / cover no-repeat;
    padding: 110px 0 0;
}

.distribution-hero-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0.1;
}

.distribution-hero .container {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.distribution-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.distribution-intro {
    background: #111;
    padding: 70px 15px 0;
}

.distribution-intro-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
}

.distribution-intro-label {
    padding-right: 50px;
}

.distribution-intro-label p {
    margin: 0;
    color: #fff;
    text-align: right;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 50px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
}

.distribution-intro-copy {
    padding-left: 30px;
}

.distribution-intro-copy p {
    margin: 30px 0 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

.distribution-map-block {
    margin-top: 100px;
}

.distribution-divider {
    width: 90%;
    margin: 0 auto;
    border-top: 2px solid #fff;
    text-align: center;
    padding: 15px 0;
}

.distribution-divider span {
    display: inline-block;
    margin-top: 1.2em;
    padding: 0 20px;
    background: #111;
    color: #fff;
    font-family: 'AcuminProSemiCond Bold Italic', 'Roboto Condensed', sans-serif;
    font-size: 40px;
    line-height: 1.2;
}

.distribution-hotspots {
    position: relative;
}

.distribution-hotspots img {
    display: block;
    width: 100%;
    height: auto;
}

.distribution-hotspot {
    position: absolute;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.distribution-hotspot-pulse,
.distribution-hotspot-dot {
    position: absolute;
    border-radius: 50%;
}

.distribution-hotspot-pulse {
    inset: 0;
    background: rgba(228, 5, 33, 0.28);
}

.distribution-hotspot-dot {
    inset: 5px;
    background: #e40521;
}

.distribution-hotspot-tooltip {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    min-width: max-content;
    max-width: 240px;
    padding: 20px;
    background: #111;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    z-index: 2;
}

.distribution-hotspot:hover .distribution-hotspot-tooltip,
.distribution-hotspot:focus-visible .distribution-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}

.distribution-regions {
    background: #000;
    padding: 80px 15px;
}

.distribution-regions+.trust-section {
    margin-top: -1px;
    padding-top: 40px;
}

.distribution-region+.distribution-region {
    margin-top: 80px;
}

.distribution-region h2 {
    margin: 0;
    padding-left: 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
}

.distribution-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.distribution-card-grid--1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.distribution-card-grid--2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.distribution-card {
    min-height: 100%;
    margin: 5px;
    padding: 30px;
    border: 1px solid rgba(179, 179, 179, 0.77);
    background: #000;
    transition: box-shadow 0.3s ease;
}

.distribution-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.17);
}

.distribution-card-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
}

.distribution-card-logo img {
    display: block;
    max-width: 70%;
    height: auto;
}

.distribution-card-logo--automodern img {
    width: 77%;
    max-width: none;
    height: 112px;
    object-fit: contain;
}

.distribution-card h4 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.distribution-card-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.distribution-card-list li+li {
    margin-top: 7px;
}

.distribution-card-list a,
.distribution-card-text {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
}

.distribution-card-list a:hover {
    color: #e40521;
    text-decoration: none;
}

.distribution-card-list svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .distribution-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .distribution-intro-label,
    .distribution-intro-copy {
        padding: 0;
    }
    .distribution-intro-label p {
        text-align: center;
        font-size: 35px;
    }
    .distribution-intro-copy p {
        margin-top: 0;
        text-align: center;
    }
    .distribution-regions {
        padding: 50px 15px;
    }
}

@media (max-width: 767px) {
    .distribution-hero {
        padding-top: 70px;
    }
    .distribution-hero .container {
        min-height: 300px;
        justify-content: center;
    }
    .distribution-hero h1 {
        text-align: center;
    }
    .distribution-intro {
        padding: 50px 10px 20px;
    }
    .distribution-intro-label p {
        font-size: 35px;
    }
    .distribution-intro-copy p {
        margin-top: 0;
    }
    .distribution-map-block {
        margin-top: 50px;
    }
    .distribution-divider span {
        font-size: 27px;
        padding: 0 12px;
    }
    .distribution-hotspot {
        width: 10px;
        height: 10px;
        margin: -5px 0 0 -5px;
    }
    .distribution-hotspot-dot {
        inset: 2px;
    }
    .distribution-hotspot-tooltip {
        max-width: 180px;
        padding: 10px;
        font-size: 14px;
        text-align: center;
    }
    .distribution-region+.distribution-region {
        margin-top: 60px;
    }
    .distribution-region h2 {
        padding-left: 10px;
    }
    .distribution-card-grid,
    .distribution-card-grid--1,
    .distribution-card-grid--2 {
        grid-template-columns: 1fr;
    }
    .distribution-card-logo img {
        max-width: 70%;
    }
    .distribution-card-logo--automodern img {
        max-width: 35%;
        width: auto;
        height: auto;
    }
}

.copyright {
    margin: 0;
    color: #222;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.footer-cookie-settings {
    color: #222;
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 710px;
    min-height: 600px;
    display: block;
    overflow: hidden;
    padding: 110px 15px 0;
    isolation: isolate;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding-top: 92px;
    text-align: left;
    color: #fff;
}

.hero-content .container {
    max-width: 1400px;
    width: 100%;
    padding: 0;
}

.hero-slogan {
    display: block;
    width: 50%;
    max-width: 664px;
    margin: 0 0 50px;
}

.hero-cta {
    display: inline-block;
    margin: 11px;
    font-size: 30px;
    line-height: 1;
    background: #e40521;
    box-shadow: 10px 10px 0 0 rgba(151, 0, 0, 0.67);
    padding: 15px 30px;
}

.hero-cta:hover {
    background: #e40521;
    color: #fff;
    text-decoration: none;
}


/* Products Section */

.products-section {
    position: relative;
    padding: 108px 0 112px;
    background: #fff;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.9;
    z-index: 1;
}

.products-section-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-size: min(1120px, 88%);
    background-repeat: no-repeat;
    background-position: center 52%;
    pointer-events: none;
    z-index: 0;
}

.products-section .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}

.products-section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.products-section h2 {
    margin: 0;
    font-size: clamp(38px, 4.8vw, 72px);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
}

.products-carousel-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-carousel {
    --products-gap: 18px;
    --products-visible-desktop: 3;
    --products-visible-tablet: 2;
    --products-visible-mobile: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--products-gap) * (var(--products-visible-desktop) - 1))) / var(--products-visible-desktop));
    gap: var(--products-gap);
    width: 100%;
    overflow-x: auto;
    padding: 12px 6px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.products-carousel-arrow {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.products-carousel-arrow span {
    width: 14px;
    height: 14px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.products-carousel-arrow-prev span {
    transform: rotate(-135deg);
    margin-left: 6px;
}

.products-carousel-arrow-next span {
    transform: rotate(45deg);
    margin-right: 6px;
}

.products-carousel-arrow:hover:not(:disabled),
.products-carousel-arrow:focus-visible:not(:disabled) {
    border-color: #e40521;
    color: #fff;
    background: #e40521;
    transform: translateY(-1px);
}

.products-carousel-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.product-card {
    min-width: 0;
    scroll-snap-align: center;
}

.product-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 100%;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.product-card a:hover {
    text-decoration: none;
}

.product-card-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: min(100%, 184px);
    max-height: 184px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.08));
    transition: transform 0.25s ease;
}

.product-card h3 {
    margin: 0;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    color: #222;
}

.product-card a:hover img,
.product-card a:focus-visible img {
    transform: translateY(-4px);
}


/* Product Detail */

.product-detail-breadcrumb-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.32);
    background:
        linear-gradient(90deg, rgba(209, 16, 21, 0.88), rgba(161, 12, 16, 0.94)),
        #b30f13;
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 14px 0 12px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.product-breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: #fff;
}

.product-detail {
    padding: 54px 0 0;
    background:
        linear-gradient(180deg, #2a2a2a 0%, #1d1d1d 100%);
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
    gap: 44px;
    align-items: stretch;
    padding: 0 0 26px;
    background: transparent;
}

.product-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, #f6f6f6 0%, #ececec 100%);
}

.product-image-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-main-image {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    background: transparent;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.product-lightbox:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.product-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 940px);
    max-height: 88vh;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #f3f3f3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.product-lightbox-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 38px;
    height: 38px;
    padding: 0;
    background: transparent;
    color: #222;
    font-size: 34px;
    line-height: 1;
    text-decoration: none;
}

.product-lightbox-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(72vh, 640px);
}

.product-lightbox-media img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
}

.product-image-fallback {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    padding: 40px;
}

.product-summary {
    padding: 6px 0 0;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin: 0 0 18px;
}

.product-meta-pill,
.product-meta-sku {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 14px 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-button);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-meta-pill:hover {
    color: #fff;
    text-decoration: none;
}

.product-summary h1 {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 34px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.12;
}

.product-tabs {
    margin-bottom: 0;
}

.product-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
}

.product-tab {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-tab.is-active,
.product-tab:hover {
    color: var(--color-accent);
    background: #f2f2f2;
    border-color: #f2f2f2;
}

.product-tab-panel {
    display: none;
    margin-top: -1px;
    padding: 26px 30px;
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
    color: #444;
    font-size: 17px;
    line-height: 1.8;
}

.product-tab-panel.is-active {
    display: block;
}

.product-tab-panel p + p {
    margin-top: 14px;
}

.product-tab-panel > *:first-child {
    margin-top: 0;
}

.product-tab-panel > *:last-child {
    margin-bottom: 0;
}

.product-tab-panel strong,
.product-tab-panel h2,
.product-tab-panel h3,
.product-tab-panel h4,
.product-tab-panel h5 {
    color: #000;
}

.product-attributes {
    border-top: 1px solid #e7e7e7;
}

.product-attribute-row {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr;
    border-bottom: 1px solid #e7e7e7;
}

.product-attribute-label,
.product-attribute-value {
    padding: 18px 20px;
}

.product-attribute-label {
    font-family: var(--font-button);
    font-weight: 700;
    color: var(--color-primary);
}

.product-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.product-download-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.product-download-card:hover {
    border-color: var(--color-accent);
    text-decoration: none;
}

.product-download-label {
    font-family: var(--font-button);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.product-download-action {
    color: var(--color-accent);
    font-family: var(--font-button);
}

.product-share-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.2fr) minmax(180px, 0.9fr);
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-share-heading {
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.product-share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-share-icons a:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.product-share-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.product-actions {
    display: flex;
    justify-content: flex-end;
}

.product-cta {
    min-width: 180px;
    padding: 11px 18px 10px;
    background: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-cta:hover {
    background: #b50f13;
}

.product-related {
    margin-top: 76px;
    padding: 34px 0 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.product-related h2 {
    max-width: 820px;
    margin: 0 0 30px;
    padding-top: 0;
    color: #fff;
    font-size: 30px;
    font-style: italic;
    line-height: 1.18;
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 20px;
}

.product-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    border: 1px solid #7a7a7a;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.45);
    background: #fff;
    text-align: center;
}

.product-related-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 6px 8px 0;
}

.product-related-media a {
    display: block;
    width: 100%;
}

.product-related-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-related-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0 4px;
}

.product-related-card h3 {
    min-height: 52px;
    margin-bottom: 14px;
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    line-height: 1.25;
}

.product-related-card h3 a {
    color: var(--color-primary);
    text-decoration: none;
}

.product-related-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 18px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-button);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-related-link:hover {
    background: #b50f13;
    color: #fff;
    text-decoration: none;
}

.category-hero {
    position: relative;
    min-height: 500px;
    padding: 110px 0 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.category-hero::after {
    content: "";
    position: absolute;
    left: -2%;
    bottom: -14px;
    width: 72%;
    height: 44px;
    border-top: 3px solid #4f8f35;
    background: #79b742;
    border-radius: 0 0 140px 0;
    transform: skewX(-24deg);
    transform-origin: left center;
    z-index: 1;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
}

.category-hero .container {
    position: relative;
    z-index: 1;
    min-height: 390px;
    padding-top: 84px;
}

.category-hero .product-breadcrumbs,
.category-hero .product-breadcrumbs a,
.category-hero .product-breadcrumbs span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-weight: 600;
}

.category-hero h1 {
    margin-top: 10px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 52px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.category-detail {
    padding: 100px 0;
    background: #1d1d1d;
}

.category-detail + .trust-section {
    margin-top: 0;
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 2.18fr);
    gap: 40px;
    align-items: start;
}

.category-sidebar {
    padding-right: 40px;
    border-right: 1px solid rgba(72, 72, 72, 0.69);
}

.category-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0 0 20px;
    color: #fff;
    font-family: var(--font-button);
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.category-back-link::before {
    content: "<";
    color: var(--color-accent);
    font-weight: 700;
}

.category-sidebar h3 {
    margin: 20px 0 10px;
    color: #fff;
    font-size: 26px;
    font-style: italic;
    font-weight: 700;
}

.category-system-list {
    margin: 0 0 54px;
    padding: 0 0 0 10px;
    list-style: none;
}

.category-system-list li + li {
    margin-top: 10px;
}

.category-system-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-button);
    font-size: 15px;
    text-decoration: none;
}

.category-system-list a:hover,
.category-system-list li.is-active a {
    color: var(--color-accent);
}

.category-system-swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    flex: 0 0 12px;
    background: var(--system-color, #fff);
}

.category-review-stack {
    display: grid;
    gap: 14px;
}

.category-review-card {
    padding: 16px 18px;
    border: 1px solid rgba(122, 122, 122, 0.8);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.category-review-card p {
    margin: 0 0 8px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.category-review-card strong {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
}

.category-review-card span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
}

.category-cta-card {
    margin-top: 40px;
    padding: 22px 20px;
    background:
        linear-gradient(rgba(211, 16, 21, 0.72), rgba(211, 16, 21, 0.72)),
        url('../images/hero-bg.jpg') center center / cover no-repeat;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}

.category-cta-card p {
    margin: 12px 0 18px;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
}

.category-main {
    min-width: 0;
}

.category-result-count {
    margin: 0 0 28px;
    color: #f9f9f9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    border: 1px solid #7a7a7a;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.45);
    background: #fff;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.45);
}

.category-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 6px 6px 0;
}

.category-card-image {
    display: block;
    width: 100%;
}

.category-card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.category-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0 10px;
}

.category-card-body h2 {
    min-height: 58px;
    margin: 0 0 16px;
    font-size: 19px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    line-height: 1.25;
}

.category-card-body h2 a {
    color: var(--color-primary);
    text-decoration: none;
}

.category-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 22px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-button);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.category-card-button:hover {
    background: #b50f13;
    color: #fff;
    text-decoration: none;
}

.products-page-hero {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.products-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 18, 18, 0.52) 0%, rgba(18, 18, 18, 0.1) 48%, rgba(18, 18, 18, 0.2) 100%);
}

.products-page-hero .container {
    position: relative;
    z-index: 1;
    min-height: 430px;
    padding-top: 118px;
}

.products-page-hero-copy {
    display: flex;
    max-width: 460px;
    min-height: 304px;
    flex-direction: column;
    justify-content: center;
}

.products-page-hero-copy h1 {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.products-page-hero-copy p {
    margin: -4px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
}

.products-page-intro {
    padding: 92px 15px 0;
    background: #121212;
}

.products-page-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.products-page-intro-copy h2 {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.products-page-intro-copy h2.is-strong {
    margin-top: -12px;
    font-weight: 700;
}

.products-page-intro-copy p {
    margin: 0;
    max-width: 420px;
    padding-right: 60px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.products-page-intro-image {
    padding: 6px;
    background: #0f0f0f;
}

.products-page-intro-image img {
    width: 100%;
    display: block;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.products-page-divider {
    padding: 78px 100px 68px;
    background: #121212;
}

.products-page-divider-line {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.products-page-divider-line span {
    color: #fff;
    font-family: "AcuminProSemiCond-Medium", sans-serif;
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.products-page-catalog {
    padding: 46px 0 108px;
    background: #121212;
}

.products-page-catalog + .trust-section {
    margin-top: 0;
}

.products-page-main {
    min-width: 0;
    margin-left: 44px;
}

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
}

.products-page-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 8px;
    border: 1px solid #7a7a7a;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.45);
    background: #fff;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products-page-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.45);
}

.products-page-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 2px 4px 0;
}

.products-page-card-image {
    display: block;
    width: 100%;
}

.products-page-card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.products-page-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0 10px;
}

.products-page-card-body h3 {
    min-height: 52px;
    margin: 0 0 14px;
    font-size: 17px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    line-height: 1.25;
}

.products-page-card-body h3 a {
    color: var(--color-primary);
    text-decoration: none;
}

.products-page-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 18px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-button);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.products-page-card-button:hover {
    background: #b50f13;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-section {
        height: 530px;
        min-height: 400px;
        padding: 0;
    }
    .hero-content {
        height: 400px;
        padding: 90px 0 0 50px;
    }
    .hero-slogan {
        width: 75%;
        max-width: 620px;
    }
    .product-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .category-layout {
        grid-template-columns: 1fr;
    }
    .category-sidebar {
        padding-right: 0;
        border-right: 0;
    }
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .products-page-intro-grid {
        grid-template-columns: 1fr;
    }
    .products-page-intro-copy p {
        padding-right: 0;
    }
    .products-page-divider {
        padding: 0 20px;
    }
    .products-page-main {
        margin-left: 0;
    }
    .products-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-section {
        padding: 40px 10px 60px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-content,
    .about-media {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: var(--heading-size-mobile);
    }
    .product-detail {
        padding: 32px 0 64px;
    }
    .product-meta {
        gap: 8px;
        margin-bottom: 16px;
    }
    .product-gallery {
        min-height: 0;
        padding: 24px;
    }
    .product-lightbox {
        padding: 16px;
    }
    .product-lightbox-dialog {
        width: 100%;
        padding: 18px;
    }
    .product-lightbox-media {
        min-height: 0;
    }
    .product-lightbox-media img {
        max-height: 76vh;
    }
    .product-image-fallback {
        min-height: 260px;
        font-size: 24px;
    }
    .product-attribute-row {
        grid-template-columns: 1fr;
    }
    .product-related-grid {
        grid-template-columns: 1fr;
    }
    .category-hero {
        min-height: 360px;
        padding-top: 80px;
    }
    .category-hero .container {
        min-height: 260px;
    }
    .category-detail {
        padding: 56px 0 72px;
    }
    .category-back-link {
        padding-left: 0;
        font-size: 18px;
    }
    .category-sidebar h3,
    .category-cta-card p {
        font-size: 24px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .products-page-hero .container {
        min-height: 320px;
        padding-top: 70px;
    }
    .products-page-hero-copy {
        min-height: 230px;
        text-align: center;
    }
    .products-page-hero-copy p {
        margin-top: -8px;
        font-size: 17px;
    }
    .products-page-intro {
        padding: 50px 10px 0;
    }
    .products-page-intro-copy h2 {
        font-size: 40px;
    }
    .products-page-intro-copy h2.is-strong {
        margin-top: -8px;
    }
    .products-page-divider {
        padding: 30px 15px;
    }
    .products-page-divider-line span {
        font-size: 25px;
    }
    .products-page-catalog {
        padding: 0 15px 0;
    }
    .products-page-grid {
        grid-template-columns: 1fr;
    }
    .products-carousel {
        grid-auto-columns: calc((100% - (10px * (var(--products-visible-mobile) - 1))) / var(--products-visible-mobile));
    }
    .product-share-links {
        flex-direction: column;
    }
    .product-share-links a,
    .product-cta {
        width: 100%;
    }
}


/* Testimonials Section */

.testimonials-section {
    padding: 86px 0;
    background: #ffffff;
}

.testimonials-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

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

.testimonial-card {
    border: 1px solid #ececec;
    padding: 28px;
    background: #fafafa;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-author {
    font-family: var(--font-button);
    font-weight: 700;
    color: var(--color-primary);
}

.testimonials-cta {
    margin-top: 32px;
    text-align: center;
}


/* About Section */

.about-section {
    padding: 150px 0;
    background: var(--color-primary);
}

.about-section .container {
    max-width: 1300px;
}

.about-section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 47.544% 52.412%;
    gap: 0;
    align-items: center;
}

.about-section-heading h2 {
    margin: 0;
    color: #fff;
}

.about-content p {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    text-align: justify;
    color: #fff;
}

.about-content {
    padding-right: 30px;
}

.about-content .btn {
    margin-top: 20px;
}

.about-media {
    padding: 30px 0 0 20px;
}

.about-carousel {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.5);
}

.about-slide {
    display: none;
    margin: 0;
}

.about-slide.is-active {
    display: block;
}

.about-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
}

.about-carousel-arrow {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -21px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
}

.about-carousel-arrow span {
    width: 14px;
    height: 14px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.about-carousel-arrow-prev {
    left: 14px;
}

.about-carousel-arrow-prev span {
    transform: rotate(-135deg);
}

.about-carousel-arrow-next {
    right: 14px;
}

.about-carousel-arrow-next span {
    transform: rotate(45deg);
}

.about-carousel-arrow:hover,
.about-carousel-arrow:focus-visible {
    color: #e40521;
}


/* Instagram Section */

.instagram-section {
    padding: 80px 0;
    background: var(--color-bg-gray);
    text-align: center;
}

.instagram-section h2 {
    margin-bottom: 40px;
}

.instagram-feed {
    max-width: 100%;
    margin: 0 auto;
}


/* News Section */

.news-section {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.news-section h2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    color: #fff;
}

.news-column h3,
.news-column h4,
.news-column p,
.news-column li,
.news-column a {
    color: #fff;
}

.news-column h4 {
    margin-bottom: 10px;
}

.event-card {
    background: #fff;
    border: 1px solid #dadada;
    color: #222;
}

.event-card-image {
    display: block;
}

.event-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.event-card-body {
    padding: 5px 15px 15px;
}

.event-card .event-label {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 15px;
    color: #fff;
    background: #ff0000;
}

.event-card h3,
.event-card h3 a,
.event-card p {
    color: #222;
}

.event-card h3 {
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 700;
}

.event-card p {
    font-size: 16px;
    line-height: 1.6;
}

.event-list,
.news-list {
    list-style: none;
}

.event-list li,
.news-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.event-date,
.news-date {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 5px;
}

.event-title,
.news-title {
    font-weight: 500;
}

.event-label,
.read-more {
    color: #ff0000;
}

.read-more {
    font-weight: 700;
}

.read-more:hover,
.read-more:focus-visible {
    color: #ff0000;
}

.news-list a {
    color: #fff;
    text-decoration: none;
}

.news-list a:hover {
    color: var(--color-accent);
}

.news-teaser {
    display: grid;
    grid-template-columns: 54% 1fr;
    gap: 10px;
    border: 1px solid #dadada;
}

.news-teaser-image {
    display: block;
}

.news-teaser-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-teaser-body {
    padding: 10px 10px 10px 0;
}

.news-teaser-body .news-title {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.news-teaser-body .read-more {
    display: inline-block;
    margin-top: 6px;
}

.news-section .btn {
    margin-top: 20px;
    background: #ff0000;
    color: #fff;
}

.news-section .btn:hover,
.news-section .btn:focus-visible {
    background: #c40000;
    color: #fff;
}


/* Trust Section */

.trust-section {
    padding: 62px 0 0;
    background: #2b2b2b;
    color: #fff;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    margin-bottom: 42px;
}

.trust-logos img {
    display: block;
    width: auto;
    height: 250px;
    object-fit: contain;
}

.trust-logo--tuev {
    height: 330px;
}

.trust-logo--germany {
    height: 358px;
    margin-top: -18px;
}

.trust-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
    gap: 36px;
    align-items: end;
}

.trust-copy {
    padding: 0 0 28px;
}

.trust-copy p {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.trust-media img {
    display: block;
    width: 100%;
}


/* Page Content */

.page-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    margin-bottom: 30px;
    text-align: left;
}

.page-content p,
.page-content li {
    font-size: 18px;
    line-height: 1.8;
}

.page-content ul {
    padding-left: 20px;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .site-header {
        height: 71px;
        padding: 15px 0;
    }
    .site-header-inner {
        height: 41px;
        grid-template-columns: 28% 44% 0 28%;
    }
    .header-burger-slot {
        padding-left: 20px;
    }
    .header-search-slot {
        display: none;
    }
    .site-logo-image,
    .site-header.is-scrolled .site-logo-image {
        max-height: 40px;
    }
    .header-language {
        justify-content: flex-end;
        padding-right: 10px;
    }
    .site-menu-panel {
        width: 100vw;
        max-width: 100vw;
        padding: 5%;
        align-items: center;
    }
    .menu-panel-logo {
        width: 60%;
        margin-bottom: 50px;
    }
    .nav-menu a {
        font-size: 22px;
        padding: 12px 0;
        text-align: center;
    }
    .menu-panel-social {
        justify-content: center;
        margin-top: 26px;
    }
    .menu-panel-social a {
        font-size: 15px;
    }
    .hero-section {
        height: 570px;
        min-height: 570px;
        padding: 70px 10px 100px;
    }
    .hero-content {
        height: 400px;
        align-items: center;
        padding: 50px 0 0;
    }
    .hero-slogan {
        width: 90%;
        max-width: 333px;
        margin-bottom: 30px;
    }
    .hero-cta {
        margin: 11px;
        font-size: 14px;
        line-height: 1;
        padding: 15px 30px;
        box-shadow: 10px 10px 0 0 rgba(151, 0, 0, 0.67);
    }
    .products-section {
        padding: 80px 0 88px;
    }
    .products-section-heading {
        margin-bottom: 28px;
    }
    .products-section h2 {
        font-size: clamp(32px, 11vw, 48px);
    }
    .products-section-background {
        background-size: 140%;
        background-position: center 46%;
    }
    .products-carousel-shell {
        gap: 8px;
    }
    .products-carousel {
        grid-auto-columns: calc((100% - (10px * (var(--products-visible-tablet) - 1))) / var(--products-visible-tablet));
        gap: 10px;
        padding: 8px 2px 10px;
    }
    .products-carousel-arrow {
        display: none;
    }
    .product-card a {
        gap: 12px;
    }
    .product-card img {
        width: min(100%, 150px);
        max-height: 150px;
    }
    .product-card h3 {
        padding: 9px 12px;
        font-size: 14px;
    }
    .about-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .about-section {
        padding: 50px 15px 20px;
    }
    .about-section-heading {
        margin-bottom: 0;
    }
    .about-content,
    .about-media {
        padding: 0;
    }
    .about-content p {
        font-size: 18px;
        line-height: 1.6667;
    }
    .about-content .btn {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .about-slide img {
        aspect-ratio: auto;
    }
    .news-teaser {
        grid-template-columns: 1fr;
    }
    .news-teaser-body {
        padding: 10px;
    }
    .trust-section {
        padding-top: 48px;
    }
    .trust-logos {
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 28px;
    }
    .trust-logos img {
        height: 46px;
    }
    .trust-logo--tuev {
        height: 74px;
    }
    .trust-logo--germany {
        height: 82px;
        margin-top: -10px;
    }
    .trust-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust-copy {
        padding-bottom: 0;
    }
    .trust-copy p {
        font-size: 15px;
    }
    .site-footer {
        padding-top: 34px;
        padding-bottom: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-column-left,
    .footer-column-right {
        align-items: center;
        text-align: center;
    }
    .footer-nav,
    .footer-legal {
        justify-content: center;
        gap: 18px 30px;
    }
    .footer-logo img {
        width: min(180px, 70%);
    }
}
