/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

:root {
    --primary-color: #084259;
    --secondary-color: #165c78;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #ed7560;
    --nav-bg: radial-gradient(circle, #165c78, #084259);
    --body-copy-size: 1.15rem;
    --section-title-size: 3rem;
    --link-hover: #0f97a6;
    --link-active: #13c2d5;
    --link-on-dark-hover: #ed7560;
    --link-on-dark-active: #f29d8e;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 64px; /* Height of navbar to prevent content from being hidden */
}

a {
    color: #000;
    text-decoration: underline;
    transition: 0.2s color;
}

a:hover,
a:focus {
    color: var(--link-hover);
}

a:active {
    color: var(--link-active);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--nav-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 40px;
}

.navbar .container {
    max-width: 100%;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    flex: 1;
    min-width: 0;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 56px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nav-links li:last-child {
    margin-left: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 1.375rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--link-on-dark-hover);
}

.nav-links a:active {
    color: var(--link-on-dark-active);
}

.btn-shop {
    background: transparent;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 3px;
    border: none;
    transition: background 0.2s, color 0.2s;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.btn-shop:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 40px 0 80px 0;
    background: var(--nav-bg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero .btn-primary {
    background: #084259;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero .btn-primary:hover {
    background: #000;
}

.hero-image img {
    width: 60%;
    height: auto;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Target Groups */
.target-groups {
    padding: 80px 0;
}

/* Screenshot-style alternating blocks: colored text panel + image panel */
.split-blocks {
    padding: 80px 0;
    background: var(--bg-white);
}

.split-block {
    margin-bottom: 28px;
}

.split-block:last-child {
    margin-bottom: 0;
}

.split-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.split-block__text {
    padding: 44px;
    color: #fff;
}

.split-block__text h2 {
    font-size: var(--section-title-size);
    line-height: 1.1;
    margin-bottom: 22px;
    color: #fff;
}

.split-block__text p {
    margin-bottom: 16px;
    font-size: var(--body-copy-size);
    color: #fff;
}

.split-block__text p:last-child {
    margin-bottom: 0;
}

.split-block__media {
    background: var(--bg-white);
    overflow: hidden;
}

.split-block__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.split-block--blue .split-block__text {
    background: var(--primary-color);
}

.split-block--blue .btn {
    border: 2px solid #fff;
}

.split-block--orange .split-block__text {
    background: var(--accent-color);
}

.split-block--reverse .split-block__text {
    order: 2;
}

.split-block--reverse .split-block__media {
    order: 1;
}

.target-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.target-group.reverse {
    direction: rtl;
}

.target-group.reverse > * {
    direction: ltr;
}

.target-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.target-content p {
    margin-bottom: 15px;
    font-size: var(--body-copy-size);
    color: var(--text-light);
}

.target-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Mission */
.mission {
    background: var(--bg-white);
    color: var(--text-dark);
    text-align: center;
    padding: 60px 0;
}

.mission h2 {
    font-size: var(--section-title-size);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Product Info */
.product-info {
    padding: 80px 0;
    background: var(--bg-white);
}

.product-info h2 {
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.product-description {
    max-width: 900px;
    margin: 0 auto;
}

.product-description p {
    font-size: var(--body-copy-size);
    margin-bottom: 20px;
    color: var(--text-light);
}

/* History */
.history {
    padding: 80px 0;
}

.history h2 {
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content p {
    font-size: var(--body-copy-size);
    margin-bottom: 20px;
    color: var(--text-light);
}

.video-wrapper {
    margin-top: 40px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-white);
    padding: 0;
}

.cta-section .split-block {
    margin-bottom: 0;
}

.cta-section .btn-primary {
    display: inline-block;
    margin-top: 12px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--bg-white);
}

.benefits h2 {
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-column {
    background: transparent;
    padding: 0;
}

.benefit-column h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.benefit-column ul {
    list-style: none;
    padding-left: 0;
}

.benefit-column li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--text-dark);
    font-size: var(--body-copy-size);
}

.benefit-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1.4rem;
}

.benefit-column a {
    color: #000;
    text-decoration: underline;
}

.benefit-column a:hover {
    color: var(--link-hover);
}

.benefit-column a:active {
    color: var(--link-active);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials h2 {
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content h3 {
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-content h3:first-child {
    margin-top: 0;
}

.testimonial-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-content blockquote p {
    font-size: var(--body-copy-size);
    margin: 0;
}

.testimonial-content > p {
    margin-bottom: 30px;
    font-size: var(--body-copy-size);
    color: var(--text-dark);
}

.testimonial-content a {
    color: #000;
    text-decoration: underline;
}

.testimonial-content a:hover {
    color: var(--link-hover);
}

.testimonial-content a:active {
    color: var(--link-active);
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
    background: var(--bg-white);
}

.blog-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.blog-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-article__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article__content {
    padding: 15px 0;
}

.blog-article__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}

.author-date {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

.blog-article__content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.blog-article__content h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-article__content h2 a:hover {
    color: var(--primary-color);
}

.blog-article__excerpt {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Reverse layout for alternating articles */
.blog-article--reverse {
    grid-template-columns: 1fr 1fr;
}

.blog-article--reverse .blog-article__image {
    order: 2;
}

.blog-article--reverse .blog-article__content {
    order: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .blog-article,
    .blog-article--reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-article--reverse .blog-article__image,
    .blog-article--reverse .blog-article__content {
        order: initial;
    }
    
    .blog-article__image {
        height: 250px;
    }
    
    .blog-article__content h2 {
        font-size: 1.6rem;
    }
}

/* Partners */
.partners {
    padding: 80px 0;
    background: #ffffff;
}

.partners h2 {
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.partners h3 {
    font-size: 1.8rem;
    text-align: center;
    margin: 60px 0 30px;
    color: var(--text-dark);
}

.partners-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.partners-grid img {
    width: 300px;
    height: 150px;
    object-fit: contain;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    width: 300px;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.awards, .band-section {
    text-align: center;
    margin: 60px 0;
}

.award-badge img {
    max-width: 300px;
    height: auto;
}

.band-section img {
    max-width: 400px;
    height: auto;
}

.supporters {
    margin-top: 60px;
}

.supporters-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.supporters-links a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px 20px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s;
}

.supporters-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--nav-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info a {
    color: #fff;
    text-decoration: none;
}

.footer-info a:hover {
    color: var(--link-on-dark-hover);
    text-decoration: underline;
}

.footer-info a:active {
    color: var(--link-on-dark-active);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter-privacy {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-privacy input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.newsletter-privacy label {
    cursor: pointer;
    line-height: 1.4;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.footer-social a i {
    font-size: 1.3rem;
}

.footer-social a:hover {
    color: var(--link-on-dark-hover);
}

.footer-social a:active {
    color: var(--link-on-dark-active);
}

.footer-swissness {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-swissness img {
    width: 50px;
    margin-bottom: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--link-on-dark-hover);
}

/* Footer language section is now handled by language-dropdown styles below */

.footer-links a:active {
    color: var(--link-on-dark-active);
}

/* Alternating blue/orange text blocks (help2type look) */
.color-block {
    padding: 80px 0;
}

.color-block--blue {
    background: var(--primary-color);
}

.color-block--orange {
    background: var(--accent-color);
}

.color-block h1,
.color-block h2,
.color-block h3,
.color-block h4,
.color-block p,
.color-block li,
.color-block blockquote {
    color: #fff;
}

.color-block a {
    color: #fff;
    text-decoration: underline;
}

.color-block a:hover,
.color-block a:focus {
    color: var(--link-on-dark-hover);
}

.color-block a:active {
    color: var(--link-on-dark-active);
}

.color-block ul {
    padding-left: 1.2rem;
}

/* Make section-specific backgrounds transparent when used as colored blocks */
.color-block.product-info,
.color-block.benefits,
.color-block.partners,
.color-block.testimonials,
.color-block.history {
    background: transparent;
}

/* Target groups: allow full-width stripes with inner containers */
.color-block.target-groups {
    padding: 0;
}

.color-block.target-groups .target-group {
    margin-bottom: 0;
}

/* Cards should not fight with colored blocks */
.color-block .benefit-card,
.color-block .testimonial-card {
    background: transparent;
    box-shadow: none;
}

.color-block .benefit-card h3,
.color-block .testimonial-card h3 {
    color: #fff;
}

.color-block .benefit-card li,
.color-block .benefit-card li::before {
    color: #fff;
}

.color-block .testimonial-card blockquote {
    border-left-color: #fff;
}

.color-block .testimonial-card blockquote,
.color-block .testimonial-card p {
    color: #fff;
}

/* CTA button contrast inside orange/blue blocks */
.color-block .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.color-block .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-wrapper {
        gap: 16px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: var(--nav-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 30px 0;
        gap: 24px;
        z-index: 999;
    }

    .nav-menu.active .nav-links {
        left: 0;
    }

    .nav-links li:last-child {
        margin-left: 0;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .btn-shop {
        border: 2px solid var(--text-dark);
        color: var(--text-dark) !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image img {
        width: 100%;
    }

    .target-group,
    .target-group.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-block__inner {
        grid-template-columns: 1fr;
    }

    .split-block--reverse .split-block__text,
    .split-block--reverse .split-block__media {
        order: initial;
    }

    .partners-grid img {
        width: 90%;
        height: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .footer-info,
    .footer-social {
        width: 100%;
        max-width: 400px;
    }

    .footer-social {
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .container {
        padding: 0 20px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-layout.reverse .product-content,
    .product-layout.reverse .product-image {
        order: initial;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 55px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 35px;
    }

    .hero {
        padding: 20px 0 40px 0;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero-image img {
        width: 100%;
    }

    .split-block__text {
        padding: 30px 20px;
    }

    .split-block__text h2 {
        font-size: 1.5rem;
    }

    .mission h2 {
        font-size: 1.8rem;
    }

    .product-info h2,
    .history h2,
    .benefits h2,
    .testimonials h2,
    .partners h2 {
        font-size: 1.8rem;
    }

    .benefit-column h3 {
        font-size: 1.2rem;
    }

    .btn,
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .partners-grid img {
        width: 100%;
    }

    .band-section img {
        max-width: 300px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 25px;
        padding: 0 15px;
    }

    .footer-info,
    .footer-social {
        max-width: 100%;
    }

    .footer-info p {
        font-size: 0.95rem;
    }

    .footer-social a {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .video-wrapper {
        margin: 20px 0;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-content p {
    color: #fff;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-link {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s;
    white-space: nowrap;
    font-size: 0.95rem;
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-btn {
    background: #fff;
    color: var(--nav-bg);
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Product Pages Hero Banner */
.products-hero {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: var(--nav-bg);
}

.products-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.unternehmen-hero {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: var(--nav-bg);
}

.unternehmen-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.unternehmen-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.blog-hero {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: var(--nav-bg);
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Blog Post Preview Styles */
.container--has-bottom-offset {
    padding-bottom: 80px;
}

.container--padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-set--in {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.post-preview {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.post-preview:hover {
    text-decoration: none;
}

.post-preview__article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.post-preview--mirror .post-preview__article {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.post-preview--mirror .post-preview__content {
    direction: ltr;
}

.post-preview__image {
    overflow: hidden;
    border-radius: 8px;
    height: 320px;
    margin-top: 0;
}

.post-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.post-preview:nth-child(4) .post-preview__image img {
    object-fit: contain;
}

.post-preview:nth-child(5) .post-preview__image img {
    object-fit: cover;
}

.post-preview:nth-child(2) .post-preview__image img {
    object-fit: cover;
    object-position: center 40%;
}

.post-preview:hover .post-preview__image img {
    transform: scale(1.05);
}

.post-preview__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.article-meta__avatar {
    flex-shrink: 0;
}

.article-meta__avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.article-meta__content {
    flex: 1;
}

.article-meta__author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.article-meta__date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-preview__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-preview__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-preview__description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.button {
    padding: 12px 24px;
    border: 2px solid var(--nav-bg);
    background: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.button--inverted {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button--inverted:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .post-preview__article {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-preview--mirror .post-preview__article {
        direction: ltr;
    }

    .post-preview__image {
        height: 250px;
    }

    .post-preview__title {
        font-size: 1.25rem;
    }

    .container--padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* Product Pages Styles */
.product-section {
    padding: 60px 0;
    background: #fff;
}

.product-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.product-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.product-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-item {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-layout.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.product-layout.reverse > * {
    direction: ltr;
}

.product-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.product-content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.product-image {
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.advantage {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.advantage strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.advantage span {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #fff;
}

.specs-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 16px 12px;
    text-align: left;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: var(--text-dark);
}

.specs-table td:last-child {
    color: #666;
}

/* Responsive */
@media (max-width: 968px) {
    .products-hero {
        height: 350px;
    }

    .product-section h1 {
        font-size: 1.75rem;
    }

    .product-section h2 {
        font-size: 1.5rem;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-layout.reverse {
        direction: ltr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-item {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .products-hero {
        height: 250px;
    }
}

/* Swiper & Additional Components from Compiled Site */
/* Include Swiper styles for sliders, carousels, and modern components */
/* These extend the base styles without overriding existing design */
@import url('site.css');

/* Language Dropdown */
.footer-language {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 8px;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.2s;
}

.language-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.language-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.language-dropdown:hover .language-menu,
.language-menu:hover {
    opacity: 1;
    visibility: visible;
}

.language-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.2s;
}

.language-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}
