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


/* 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: #ffffff;
    color: #222;
}

.blog-hero {
    min-height: 560px;
    padding: 150px 0 0;
    background: 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: #222;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
}

.blog-featured-card,
.blog-card--wp {
    background: #fff;
    border: 1px solid #e3e3e3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    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 #e3e3e3;
    background: #f6f6f6;
}

.blog-sidebar-panel--dark h4,
.blog-sidebar-panel--dark a {
    color: #222;
}
.blog-sidebar-panel--dark a:hover {
    color: var(--color-accent);
}

.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: var(--color-accent);
    color: #fff;
}
.blog-sidebar-panel--light h4,
.blog-sidebar-panel--light p,
.blog-sidebar-panel--light a {
    color: #fff;
}

.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-page-content {
    margin-top: 28px;
}

.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%;
    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: 560px;
    padding: 150px 0 0;
    background: url('../images/contact-hero.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: #fff;
    color: #1a1a1a;
}

.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: #1a1a1a;
    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: #1a1a1a;
}

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

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

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

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

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

.contact-detail-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #ff3048;
    line-height: 1;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.automax-contact-form .contact-form-field--checkbox a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

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

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

@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: 380px;
        padding-top: 90px;
    }
    .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;
    }
    .automax-contact-form .contact-form-field--half,
    .automax-contact-form .contact-form-field--wide,
    .automax-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.35s ease, height 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 8px 15px;
    height: 78px;
}
.site-header.is-scrolled .site-header-inner {
    height: 62px;
}

.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: 90px;
    transition: max-height 0.5s ease;
}

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

.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: #222;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #e3e3e3;
    transition: color 0.2s ease;
}

.nav-menu li:last-child a {
    border-bottom: none;
}

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


/* Menu panel sits inside .site-header but uses light theme — override */

.site-menu-panel a,
.site-menu-panel button {
    color: #222;
}

.site-menu-panel a:hover {
    color: #FF0000;
}

.site-menu-panel .menu-panel-close {
    color: #222;
}

.site-menu-panel .menu-panel-social a {
    color: #444;
}

.site-menu-panel .menu-panel-social a:hover {
    color: #FF0000;
}

.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(255, 255, 255, 0);
    z-index: 120;
}

.site-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    max-width: 65vw;
    height: 100vh;
    background: #ffffff;
    color: #222;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    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: #222;
}

.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: #444;
    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-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.footer-logo:hover {
    opacity: 0.75;
}

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


/* Distribution */

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

.distribution-hero-overlay {
    display: none;
}

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

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

.distribution-intro {
    background: #fff;
    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: #1a1a1a;
    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: #1a1a1a;
    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 #d4d4d4;
    text-align: center;
    padding: 15px 0;
}

.distribution-divider span {
    display: inline-block;
    margin-top: 1.2em;
    padding: 0 20px;
    background: #fff;
    color: #1a1a1a;
    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: #fff;
    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: #1a1a1a;
    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 #d4d4d4;
    background: #fff;
    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: #1a1a1a;
    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: #1a1a1a;
    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: 0;
    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: #ffffff;
    color: #222;
}

.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 #e3e3e3;
    background: #ffffff;
}

.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: 24px;
    padding: 3px 10px 2px;
    border: 0;
    background: transparent;
    color: #888;
    font-family: var(--font-button);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-meta-pill {
    color: var(--color-accent);
    background: rgba(255, 0, 0, 0.08);
    border-radius: 2px;
}

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

.product-summary h1 {
    margin: 0 0 28px;
    color: #222;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

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

.product-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 0;
    border-bottom: 1px solid #e3e3e3;
}

.product-tab {
    padding: 14px 0 12px;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: #444;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
}

.product-tab.is-active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.product-tab:hover {
    color: var(--color-accent);
}

.product-tab-panel {
    display: none;
    margin-top: 0;
    padding: 26px 0 10px;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

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

.product-share-heading {
    color: #888;
    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 #d0d0d0;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-share-icons a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    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 #e3e3e3;
    background: transparent;
}

.product-related h2 {
    max-width: 820px;
    margin: 0 0 30px;
    padding-top: 0;
    color: #222;
    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 #e3e3e3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    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: #ffffff;
    color: #222;
}

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

.category-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0 0 20px;
    color: #444;
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

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

.category-sidebar h3 {
    margin: 20px 0 10px;
    color: #222;
    font-size: 22px;
    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: #444;
    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);
    font-weight: 700;
}


/* Brand filter (AUTOMAX / PROFIMAX) — logo + label, light theme */

.category-brand-list {
    margin: 0 0 28px;
    padding: 0 0 0 10px;
    list-style: none;
}

.category-brand-list li+li {
    margin-top: 12px;
}

.category-brand-list a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.55;
    transition: opacity 0.15s, transform 0.15s;
    padding: 6px 4px;
}

.category-brand-list a:hover {
    opacity: 1;
}

.category-brand-list li.is-active a {
    opacity: 1;
}

.category-brand-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    min-width: 90px;
}


/* === Light-theme override for product catalog and category sections === */

.products-page-catalog,
.category-detail {
    background: #ffffff;
    color: #222;
}

.products-page-catalog .category-sidebar h3,
.category-detail .category-sidebar h3 {
    color: #222;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 8px;
    margin-bottom: 14px;
}

.products-page-catalog .category-system-list a,
.category-detail .category-system-list a {
    color: #444;
}

.products-page-catalog .category-system-list a:hover,
.products-page-catalog .category-system-list li.is-active a,
.category-detail .category-system-list a:hover,
.category-detail .category-system-list li.is-active a {
    color: var(--color-accent);
    font-weight: 700;
}

.products-page-catalog .category-back-link,
.category-detail .category-back-link {
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
}

.products-page-catalog .products-page-card,
.category-detail .category-card {
    background: #fff;
    border: 1px solid #e3e3e3;
}

.products-page-catalog .products-page-card h3 a,
.category-detail .category-card h2 a {
    color: #222;
}

.products-page-catalog .products-page-card h3 a:hover,
.category-detail .category-card h2 a:hover {
    color: var(--color-accent);
}

.products-page-catalog .category-result-count,
.category-detail .category-result-count {
    color: #666;
    font-size: 14px;
}

.products-page-catalog .category-review-card,
.category-detail .category-review-card {
    background: #f6f6f6;
    border-color: #e3e3e3;
    color: #333;
    box-shadow: none;
}

.products-page-catalog .category-review-card p,
.category-detail .category-review-card p {
    color: #333;
}

.products-page-catalog .category-review-card strong,
.category-detail .category-review-card strong {
    color: #222;
}

.products-page-catalog .category-cta-card,
.category-detail .category-cta-card {
    background: var(--color-accent);
    color: #fff;
}

.products-page-catalog .category-cta-card h3,
.category-detail .category-cta-card h3,
.products-page-catalog .category-cta-card p,
.category-detail .category-cta-card p {
    color: #fff;
}


/* Pagination on light bg */

.products-pagination-link {
    border-color: #d0d0d0;
    color: #444;
}

.products-pagination-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.products-pagination-link.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}


/* Pagination */

.products-pagination {
    margin: 32px 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.products-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.products-pagination-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.products-pagination-link.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    cursor: default;
}

.products-pagination-prev,
.products-pagination-next {
    padding: 0 16px;
}

.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: #666;
    font-size: 14px;
}

.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 #e3e3e3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    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 {
    display: none;
}

.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: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

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

.products-page-intro {
    padding: 92px 15px 60px;
    background: #ffffff;
    color: #222;
}

.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: #222;
    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;
    color: #222;
}

.products-page-intro-copy p {
    margin: 0;
    max-width: 420px;
    padding-right: 60px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.products-page-intro-image {
    padding: 0;
    background: transparent;
}

.products-page-intro-image img {
    width: 100%;
    display: block;
    box-shadow: none;
}

.products-page-divider {
    padding: 78px 100px 38px;
    background: #ffffff;
}

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

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

.products-page-catalog {
    padding: 30px 0 108px;
    background: #ffffff;
    color: #222;
}

.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 #e3e3e3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    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: 96px 0;
    background: #ffffff;
    color: #222;
}

.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: 40px;
    align-items: center;
}

.about-section-heading h2 {
    margin: 0;
    color: #222;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.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: 80px 0;
    background: #f6f6f6;
    color: #222;
}

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

.news-section h2 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    color: #222;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-column h3,
.news-column h3 a,
.news-column h4 {
    color: #222;
}

.news-column p,
.news-column li {
    color: #444;
}

.news-column a {
    color: #222;
}

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

.event-date,
.news-date {
    display: block;
    font-size: 14px;
    color: #888;
    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: #222;
    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 {
    background: #fff;
}

.news-teaser-body .news-title {
    display: block;
    margin-bottom: 10px;
    color: #222;
    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: 200px;
    object-fit: contain;
}

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

.trust-logo--germany {
    height: 220px;
}

.trust-logo--tuev-nord {
    height: 220px;
}

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


/* ============================================================
   HOME PAGE — rebuilt sections (2026-05-01)
   ============================================================ */


/* Hero — WP-Live recreation: 2000x700 car image with brand logos + 2-line headline */

.hero-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
}

.hero-section .hero-background {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-brands {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
}

.hero-brands a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.hero-brands a:hover {
    transform: translateX(4px);
    opacity: 0.85;
}

.hero-brand-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* Original logo (black letters + thin white outline + German-flag X) — no color filter,
   just a soft white glow so the dark parts stay visible against the dark hero background */

.hero-brand-logo--white {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.25)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

.hero-eyebrow {
    margin: 0 0 14px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-headline {
    margin: 0 0 40px;
    color: #fff;
    /* WP uses Roboto heavy, NOT condensed */
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: clamp(46px, 5.6vw, 84px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-headline-line {
    display: block;
}

.hero-section .btn.hero-cta {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* "Unsere Systeme" — slider with 3 visible cards + arrows + pagination dots */
.systems-section {
    background: #ffffff;
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}
.systems-section-heading {
    text-align: center;
    margin-bottom: 48px;
}
.systems-section-heading h2 {
    color: #222;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.systems-slider {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 12px;
}
.systems-slider-viewport {
    overflow: hidden;
}
.systems-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}
.system-card {
    flex: 0 0 calc((100% - 24px * 2) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e3e3e3;
    padding: 0 0 22px;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}
.system-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    border-color: var(--color-accent);
}
.system-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 18px;
}
.system-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.system-card-title {
    margin: 0;
    color: #222;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}
.system-card:hover .system-card-title { color: var(--color-accent); }

/* Slider arrows */
.systems-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d0d0d0;
    color: #222;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    padding: 0;
    z-index: 2;
}
.systems-slider-arrow:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.systems-slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.systems-slider-arrow:disabled:hover {
    background: #fff;
    color: #222;
    border-color: #d0d0d0;
}

/* Dots */
.systems-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.systems-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s, transform 0.15s;
}
.systems-slider-dot:hover { background: #888; }
.systems-slider-dot.is-active {
    background: var(--color-accent);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .system-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
    .systems-slider { grid-template-columns: 36px 1fr 36px; }
    .system-card { flex: 0 0 100%; }
    .systems-slider-arrow { width: 36px; height: 36px; font-size: 22px; }
    .systems-section-heading h2 { font-size: 28px; }
}


/* About section — image stack (2 images side-by-side or stacked) */

.about-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-image-tile,
.about-image-single {
    margin: 0;
}

.about-image-tile img,
.about-image-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Social Media tile section */

.social-section {
    background: #ffffff;
    padding: 64px 0;
}

.social-section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.social-section-heading h2 {
    color: #222;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-tile {
    display: block;
    text-decoration: none;
    color: #222;
    background: #fff;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.social-tile-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

.social-tile-caption {
    display: block;
    padding: 12px 14px;
    font-family: var(--font-button);
    font-size: 13px;
    line-height: 1.4;
    color: #444;
}


/* Mobile responsive */

@media (max-width: 768px) {
    .hero-headline {
        font-size: 14vw;
    }
    .systems-carousel {
        grid-template-columns: 1fr;
    }
    .about-image-stack {
        grid-template-columns: 1fr;
    }
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Modern animations / pixel magic ===== */

@keyframes ax-fade-up {
    from { opacity: 0; transform: translate3d(0, 28px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes ax-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes ax-zoom-out {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

@keyframes ax-ken-burns {
    0%   { transform: scale(1) translate3d(0, 0, 0); }
    50%  { transform: scale(1.06) translate3d(-1%, -1%, 0); }
    100% { transform: scale(1) translate3d(0, 0, 0); }
}

@keyframes ax-shimmer {
    0%, 100% { transform: translateX(-120%); }
    60%      { transform: translateX(120%); }
}

@keyframes ax-pulse-ring {
    0%   { transform: scale(0.8); opacity: 0.55; }
    100% { transform: scale(2.2); opacity: 0; }
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-reveal-delay='1'].is-visible { transition-delay: 0.08s; }
[data-reveal-delay='2'].is-visible { transition-delay: 0.16s; }
[data-reveal-delay='3'].is-visible { transition-delay: 0.24s; }
[data-reveal-delay='4'].is-visible { transition-delay: 0.32s; }
[data-reveal-delay='5'].is-visible { transition-delay: 0.4s; }
[data-reveal-delay='6'].is-visible { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal].is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
    *::before,
    *::after,
    .hero-background,
    .distribution-hero h1,
    .blog-hero h1,
    .contact-hero h1,
    .category-hero h1,
    .event-post-hero h1,
    .products-page-hero h1,
    .legal-hero h1,
    .hero-section .hero-eyebrow,
    .hero-section .hero-headline,
    .hero-section .hero-cta,
    .hero-section .hero-brands,
    .distribution-hotspot-pulse,
    .distribution-card,
    .distribution-card-logo img,
    .blog-featured-card,
    .blog-card--wp,
    .blog-card,
    .event-card,
    .category-card,
    .product-related-card,
    .testimonial-card,
    .social-tile,
    .news-teaser,
    .product-download-card,
    .category-review-card,
    .system-card,
    .blog-featured-card-image img,
    .blog-card-image img,
    .event-card-image img,
    .category-card-media img,
    .product-related-media img,
    .social-tile-image img,
    .news-teaser-image img,
    .system-card-media img,
    .trust-logo,
    .btn,
    .btn-outline-light,
    .hero-cta,
    .about-cta,
    .testimonials-cta,
    .category-card-button,
    .product-cta,
    .product-download-action,
    .read-more {
        animation: none !important;
        transition: none !important;
    }
}

/* Hero Ken Burns: animate a pseudo-layer (or .hero-background div) so text stays still */
.distribution-hero,
.blog-hero,
.contact-hero,
.category-hero,
.event-post-hero,
.products-page-hero,
.hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.distribution-hero::before,
.blog-hero::before,
.contact-hero::before,
.category-hero::before,
.event-post-hero::before,
.products-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: ax-ken-burns 22s ease-in-out infinite;
}

.distribution-hero,
.blog-hero,
.contact-hero {
    background-image: none !important;
}

.distribution-hero::before { background-image: url('../images/distribution-hero.jpg'); }
.blog-hero::before         { background-image: url('../images/blog-hero.jpg'); }
.contact-hero::before      { background-image: url('../images/contact-hero.jpg'); }

/* Home hero already has a dedicated layer for the bg image */
.hero-background {
    animation: ax-ken-burns 22s ease-in-out infinite;
    will-change: transform;
}

.distribution-hero h1,
.blog-hero h1,
.contact-hero h1,
.category-hero h1,
.event-post-hero h1,
.products-page-hero h1,
.legal-hero h1,
.hero-section .hero-eyebrow,
.hero-section .hero-headline,
.hero-section .hero-cta {
    animation: ax-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

.hero-section .hero-headline { animation-delay: 0.25s; }
.hero-section .hero-cta      { animation-delay: 0.4s; }
.hero-section .hero-brands   {
    animation: ax-fade-in 0.9s ease-out both;
    animation-delay: 0.05s;
}

/* Section title underline sweep */
.distribution-region h2,
.blog-section-heading h2,
.about-section-heading h2,
.systems-section-heading h2,
.testimonials-header h2,
.social-section-heading h2,
.news-section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.distribution-region h2::after,
.blog-section-heading h2::after,
.about-section-heading h2::after,
.systems-section-heading h2::after,
.testimonials-header h2::after,
.social-section-heading h2::after,
.news-section h2::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent, #e40521), transparent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.distribution-region.is-visible h2::after,
.blog-section-heading.is-visible h2::after,
.about-section-heading.is-visible h2::after,
.systems-section-heading.is-visible h2::after,
.testimonials-header.is-visible h2::after,
.social-section-heading.is-visible h2::after,
.news-section h2.is-visible::after {
    transform: scaleX(1);
}

/* Distribution card: lift, glow, accent border on hover */
.distribution-card {
    position: relative;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.45s ease;
    overflow: hidden;
}

.distribution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 25%, rgba(228, 5, 33, 0.08) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.distribution-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent, #e40521);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(228, 5, 33, 0.15);
}

.distribution-card:hover::after {
    transform: translateX(120%);
}

.distribution-card-logo img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.distribution-card:hover .distribution-card-logo img {
    transform: scale(1.06);
}

/* Smoother, more visible hotspots */
.distribution-hotspot {
    cursor: pointer;
}

.distribution-hotspot-pulse {
    animation: ax-pulse-ring 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.distribution-hotspot:hover .distribution-hotspot-dot {
    box-shadow: 0 0 0 6px rgba(228, 5, 33, 0.18);
}

/* Generic card lift+shadow on hover */
.blog-featured-card,
.blog-card--wp,
.blog-card,
.event-card,
.category-card,
.product-related-card,
.testimonial-card,
.social-tile,
.news-teaser,
.product-download-card,
.category-review-card,
.system-card {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.45s ease;
}

.blog-featured-card:hover,
.blog-card--wp:hover,
.blog-card:hover,
.event-card:hover,
.category-card:hover,
.product-related-card:hover,
.testimonial-card:hover,
.social-tile:hover,
.news-teaser:hover,
.product-download-card:hover,
.category-review-card:hover,
.system-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Image zoom inside any card with an image area */
.blog-featured-card-image img,
.blog-card-image img,
.event-card-image img,
.category-card-media img,
.product-related-media img,
.social-tile-image img,
.news-teaser-image img,
.system-card-media img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-featured-card:hover .blog-featured-card-image img,
.blog-card--wp:hover .blog-card-image img,
.blog-card:hover .blog-card-image img,
.event-card:hover .event-card-image img,
.category-card:hover .category-card-media img,
.product-related-card:hover .product-related-media img,
.social-tile:hover .social-tile-image img,
.news-teaser:hover .news-teaser-image img,
.system-card:hover .system-card-media img {
    transform: scale(1.05);
}

/* Buttons / CTAs lift + shimmer */
.btn,
.btn-outline-light,
.hero-cta,
.about-cta,
.testimonials-cta,
.category-card-button,
.product-cta,
.product-download-action,
.read-more {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn-outline-light:hover,
.hero-cta:hover,
.about-cta:hover,
.testimonials-cta:hover,
.category-card-button:hover,
.product-cta:hover,
.product-download-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(228, 5, 33, 0.22);
}

.read-more {
    transition: color 0.25s ease, transform 0.25s ease;
}

.read-more:hover {
    transform: translateX(4px);
}

/* Submit button shimmer on hover */
.automax-contact-form .button,
.automax-contact-form .btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.automax-contact-form .button::before,
.automax-contact-form .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: translateX(-120%);
    pointer-events: none;
}

.automax-contact-form .button:hover,
.automax-contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(228, 5, 33, 0.28);
}

.automax-contact-form .button:hover::before,
.automax-contact-form .btn:hover::before {
    animation: ax-shimmer 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Form field focus glow */
.automax-contact-form input,
.automax-contact-form textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.automax-contact-form input:focus,
.automax-contact-form textarea:focus {
    border-color: var(--color-accent, #e40521);
    box-shadow: 0 0 0 3px rgba(228, 5, 33, 0.18);
    transform: translateY(-1px);
}

/* Trust section logos: gentle hover scale */
.trust-logo {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.trust-logos:hover .trust-logo {
    filter: grayscale(0.4);
}

.trust-logos .trust-logo:hover {
    filter: none;
    transform: scale(1.06);
}