﻿/* === main.css === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow on all elements */
*, *::before, *::after {
    max-width: 100%;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-light: #2a2a2a;
    --bg-dark: #1a1a1a;
    --card-bg: #333333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Prevent iOS bounce scrolling issues */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%), url('../../pictures/background-banner.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    filter: none;
    color: white;
    position: relative;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}



.hero-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-badge-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-text-section {
    max-width: 600px;
    margin-left: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Logo Under Text */
.hero-logo-under-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.hero-logo-icon-animated {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.2));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-logo-icon-animated:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.35));
}

.sparkle-container {
    display: none;
}

/* No entry animations */
.fade-in,
.fade-in-delay,
.fade-in-delay-2 {
    opacity: 1;
    transform: none;
    animation: none;
}/* Secti
on Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    display: none;
}

.service-card.clickable {
    cursor: pointer;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Process Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-badge {
    display: inline-block;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.google-badge-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.google-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.google-badge-score {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.google-badge-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.star-svg {
    width: 22px;
    height: 22px;
    display: block;
}

.google-badge-count {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

.google-badge-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo .logo-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    object-fit: contain;
}

/* Scroll animations — disabled */
.scroll-animate {
    opacity: 1;
    transform: none;
    transition: none;
}

.scroll-animate.animate {
    opacity: 1;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix mobile viewport issues */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Fix hero section for mobile */
    .hero {
        min-height: 70vh;
        min-height: 70dvh; /* Dynamic viewport height for mobile */
        background-position: center 30%;
        overflow: visible;
        position: relative;
        padding-top: 130px !important;
        align-items: flex-start !important;
    }

    .hero-content {
        margin-top: 0 !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-text-section {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .hero-logo-under-text {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
    
    /* Fix services section */
    .services {
        overflow: visible;
        position: relative;
    }
    
    .services-grid {
        width: 100%;
        overflow: visible;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}
/* Additional mobile fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content,
    .content-grid,
    .services-grid,
    .partners-grid,
    .testimonials-grid {
        width: 100%;
        position: relative;
    }

    section {
        position: relative;
        width: 100%;
    }

    .slider-container {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 0;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* Contact page – name + email side by side */
.contact-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-page .form-row .form-group {
    margin-bottom: 1.5rem;
}

.contact-page .contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-page .contact-form .form-group:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.contact-page .contact-form .form-group:last-of-type textarea {
    flex: 1;
    resize: none;
    min-height: 0;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
}

/* Map scroll button under Standort */
.map-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    background: none;
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.map-scroll-btn:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: var(--secondary-color);
}

.map-scroll-btn i {
    font-size: 0.7rem;
    /* override the contact-item icon styles */
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    color: var(--secondary-color) !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 280px;
    }

    .contact-page .form-row {
        grid-template-columns: 1fr;
    }
}


/* === partners.css === */
/* Partners Page Specific Styles */

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Partners Hero */
.partners-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%), url('../../pictures/background-banner.jpg');
    background-size: cover;
    background-position: center 75%;
    filter: none;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    display: none;
}

.partners-hero .hero-content {
    position: relative;
    z-index: 2;
}

.partners-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partners-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Partner Categories */
.partner-categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card::before {
    display: none;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Partners List */
.partners-list {
    padding: 106px 0 80px;
    background: var(--bg-dark);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.partner-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo {
    margin-bottom: 1.5rem;
}

.partner-image {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.partner-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

/* Partner Testimonials */
.partner-testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 80px 0;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partnership Application */
.partnership-application {
    padding: 80px 0;
    background: var(--bg-light);
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.application-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.application-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.application-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-point i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.benefit-point span {
    color: var(--text-dark);
    font-weight: 500;
}

.partnership-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-form h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
}

.partnership-form input:focus,
.partnership-form select:focus,
.partnership-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
    color: var(--text-light);
}

.partnership-form textarea {
    resize: vertical;
    min-height: 100px;
}

.partnership-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .application-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* === preisliste.css === */
/* Pricing Page Specific Styles */

/* Pricing Hero */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%), url('../../pictures/background-banner.jpg');
    background-size: cover;
    background-position: center 75%;
    filter: none;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    display: none;
}

.pricing-hero .hero-content {
    position: relative;
    z-index: 2;
}

.pricing-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--accent-color);
    font-weight: 500;
}

/* Pricing Tables */
.pricing-tables {
    padding: 106px 0 80px;
    background: var(--bg-dark);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
}

.pricing-category {
    margin-bottom: 3rem;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.pricing-row.highlight {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: var(--secondary-color);
}

.service-name {
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.service-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: right;
}

/* Pricing CTA */
.pricing-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations — disabled */
.pricing-category {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .pricing-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .pricing-row {
        padding: 0.8rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .service-price {
        align-self: flex-end;
        min-width: auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pricing-category {
        padding: 1rem;
    }
    
    .pricing-row {
        padding: 0.6rem 0.8rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
}

/* === restaurierung.css === */
/* Restoration Page Specific Styles */

/* Prevent horizontal overflow on restaurierung page */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

.restaurierung-page * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Services Hero */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%), url('../../pictures/background-banner.jpg');
    background-size: cover;
    background-position: center 75%;
    filter: none;
    color: white;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.services-hero::before {
    display: none;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Services-Kacheln: Icon statt Foto (Schleifservice \/ Restaurierung haben kein Beitragsbild) */
.services-list .shop-category-img-wrap {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.services-list .shop-category-img-fallback {
    background: transparent;
    color: white;
    font-size: 3.5rem;
}

/* Restoration Hero */
.restoration-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%), url('../../pictures/background-banner.jpg');
    background-size: cover;
    background-position: center 75%;
    filter: none;
    color: white;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.restoration-hero::before {
    display: none;
}

.restoration-hero .hero-content {
    position: relative;
    z-index: 2;
}

.restoration-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.restoration-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Restoration Services */
.restoration-services {
    padding: 106px 0 80px;
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.restoration-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.restoration-card::before {
    display: none;
}

.restoration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.restoration-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.restoration-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Main Content */
.restoration-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.content-section h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.cta-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Restoration Showcase */
.content-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.restoration-showcase {
    width: 100%;
    max-width: 500px;
}

.restoration-showcase h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.before-after-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.before-after-slider {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-x;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: none;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    cursor: ew-resize;
    z-index: 15;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0 1rem;
}

.before-label,
.after-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.before-label {
    color: var(--text-light);
}

.after-label {
    color: var(--secondary-color);
}

/* Hover effects — removed */

/* Process Section */
.restoration-process {
    padding: 80px 0;
    background: var(--bg-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.restoration-testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Horizontal overflow prevention for mobile */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }

    .restoration-hero,
    .restoration-services,
    .restoration-content,
    .restoration-process {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .restoration-services .section-title {
        font-size: 1.6rem;
        text-align: center;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: calc(100vw - 30px);
        margin: 0 auto 3rem auto;
        padding: 0 15px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Fix negative margins on mobile */
    .content-section h3::before {
        left: 0;
        margin-right: 10px;
        position: relative;
        display: inline-block;
        transform: none;
    }

    .restoration-hero .hero-title {
        font-size: 2.2rem;
    }

    /* Fix long section title on mobile */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .restoration-showcase {
        max-width: 100%;
        width: 100%;
    }

    .slider-container {
        height: 200px;
        cursor: grab;
        touch-action: pan-x;
    }

    .slider-container:active {
        cursor: grabbing;
    }

    .before-after-slider {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .slider-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        touch-action: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* Extra small screens - more aggressive text fixes */
    .restoration-services .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        word-break: break-word;
        hyphens: auto;
        max-width: calc(100vw - 20px);
        padding: 0 10px;
    }

    .slider-container {
        height: 180px;
    }

    .before-after-slider {
        padding: 0.8rem;
    }

    .slider-button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .slider-labels {
        padding: 0 0.5rem;
        font-size: 0.8rem;
    }
}

/* === shop.css === */
/* ============================================
   SHOP — Category Overview
   ============================================ */

/* ============================================
   SHOP — Category Overview
   ============================================ */

/* Placeholder hat exakt dieselbe Struktur wie .shop-breadcrumb-section auf Kategorie-Seiten,
   damit das Grid beim Navigieren nicht springt. Inhalt ist visibility:hidden. */
.shop-breadcrumb-placeholder {
    padding: 86px 0 16px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumb-current {
    color: var(--secondary-color);
}

.shop-intro-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.shop-categories {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shop-category-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.shop-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.shop-category-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.shop-category-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.shop-category-card:hover .shop-category-img {
    transform: scale(1.05);
}

.shop-category-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 3rem;
}

.shop-category-info {
    padding: 1.5rem;
}

.shop-category-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.shop-category-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.shop-category-count {
    display: inline-block;
    background: rgba(231, 76, 60, 0.15);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Partner-Seite: ganze Bilder zeigen statt zuschneiden (Logos statt Fotos) */
.partners-list .shop-category-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
    box-sizing: border-box;
}

.partners-list .shop-category-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partners-list .shop-category-card:hover .shop-category-img {
    transform: none;
}

.partners-list .shop-category-info {
    text-align: center;
    padding: 0 1.5rem 1.5rem;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.shop-breadcrumb-section {
    padding: 86px 0 16px;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.shop-breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.shop-breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-sep {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.5;
}

.shop-breadcrumb span:last-child {
    color: var(--text-dark);
}

/* ============================================
   SHOP — Products Grid
   ============================================ */

.shop-products {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-img-wrap {
    width: 100%;
    height: 0;
    padding-top: 133.333%;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.product-img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-img-fallback {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 2.5rem;
}

.product-info {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-detail-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-card:hover .product-detail-link {
    color: var(--secondary-color);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail-section {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
    position: relative;
}

.product-detail-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.product-detail-img-fallback {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 3rem;
}

.product-detail-img-fallback span {
    font-size: 1rem;
}

.product-detail-category {
    display: inline-block;
    background: rgba(231, 76, 60, 0.15);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-detail-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.product-specs {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-specs h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-specs ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-specs ul li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.product-detail-buy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-detail-buy .stock {
    margin: 0;
}

.product-detail-buy form.cart {
    flex-wrap: nowrap !important;
    width: auto;
}

.product-detail-buy .single_add_to_cart_button {
    white-space: nowrap;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-detail-buy .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* WooCommerce Warenkorb-Formular (Menge + Button) an das restliche Design angleichen */
.product-detail-buy form.cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-detail-buy .quantity {
    display: flex;
    margin: 0;
}

.product-detail-buy .quantity .qty {
    width: 70px;
    height: 48px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    padding: 0 10px;
    -moz-appearance: textfield;
}

.product-detail-buy .single_add_to_cart_button {
    padding: 12px 30px;
    height: 48px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--secondary-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-detail-buy .single_add_to_cart_button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.product-detail-buy .single_add_to_cart_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.product-detail-note {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-detail-note i {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.product-back-section {
    padding: 0 0 60px;
    background: var(--bg-dark);
}

.product-back-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-title {
        font-size: 1.7rem;
    }

    .product-detail-buy {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .product-detail-buy .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* === termine.css === */
.termine-section {
    padding: 106px 0 80px;
    background: var(--bg-dark);
    min-height: 70vh;
}

.termine-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.termine-empty {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* List */
.termine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.termin-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.termin-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Date badge */
.termin-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    min-width: 68px;
    flex-shrink: 0;
    gap: 0.1rem;
}

.termin-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.termin-month {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.termin-year {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Body */
.termin-body {
    flex: 1;
}

.termin-titel {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.termin-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.termin-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.termin-meta i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.termin-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Past termine */
.termine-past-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 3rem 0 0;
}

.termine-list--past .termin-date-badge {
    opacity: 0.45;
}

.termin-item--past .termin-titel {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 600px) {
    .termin-item {
        gap: 1.25rem;
    }

    .termin-date-badge {
        min-width: 58px;
        padding: 0.6rem 0.8rem;
    }

    .termin-day {
        font-size: 1.5rem;
    }

    .termin-titel {
        font-size: 1.1rem;
    }

    .termin-meta {
        flex-direction: column;
        gap: 0.4rem;
    }
}




/* Warenkorb-Icon in der Navigation */
.nav-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-left: 1.5rem;
    text-decoration: none;
}
.nav-cart-link:hover { color: var(--secondary-color); }
.nav-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}
.nav-cart-count:empty,
.nav-cart-link[data-count="0"] .nav-cart-count { display: none; }
@media (max-width: 860px) {
    .nav-cart-link { margin-left: 1rem; order: 2; }
}


/* Einfache Seiten-Ueberschriften (ersetzen die entfernten Bild-Banner) */
.partners-heading,
.restoration-heading,
.services-heading,
.pricing-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-list {
    padding: 106px 0 80px;
    background: var(--bg-dark);
}

/* Generische Inhaltsseiten (Sonderanfertigung, Lieferung & Annahme, etc.) */
.generic-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.generic-page-content {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

.generic-page-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.generic-page-content p {
    margin-bottom: 1.25rem;
}

.generic-page-content ul {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.generic-page-content li {
    margin-bottom: 0.6rem;
}

.generic-page-content .btn {
    display: inline-block;
    margin: 0.5rem 1rem 0.5rem 0;
}

/* Partner-Standortkarte */
.partners-map-section {
    padding: 0 0 80px;
    background: var(--bg-dark);
}

.partners-map-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

#partners-map {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--card-bg);
}

.partners-map-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    margin: 0;
}

.partner-map-pin {
    width: 56px !important;
    height: 56px !important;
    max-width: none !important;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-map-pin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-map-pin--fallback {
    color: var(--secondary-color);
    font-size: 1.5rem;
    background: var(--bg-light);
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.partner-map-marker { max-width: none !important; }
.partner-map-pin img { max-width: none !important; }

/* Partner-Karte: Popup mit Route-Button */
.partner-map-popup {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    color: var(--primary-color);
}

.partner-map-popup strong {
    color: var(--primary-color);
}

.partner-map-route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white !important;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.partner-map-route-btn:hover {
    background: #c0392b;
}

/* Partner-Karte: Cluster-Bubbles im Markenlook */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background-color: rgba(231, 76, 60, 0.35) !important;
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background-color: var(--secondary-color) !important;
    color: white !important;
    font-weight: 700 !important;
}

/* Leaflet-Karte generell von der globalen max-width-Reset-Regel ausnehmen */
.leaflet-container *,
.leaflet-container *::before,
.leaflet-container *::after {
    max-width: none !important;
}

/* Services: Bildkarussell */
.shop-category-img-wrap.service-carousel {
    position: relative;
}

.service-carousel-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.service-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26,26,26,0.65);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.service-carousel-nav:hover {
    background: var(--secondary-color);
}

.service-carousel-nav.prev { left: 10px; }
.service-carousel-nav.next { right: 10px; }

.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.service-more-link:hover {
    text-decoration: underline;
}

/* Sonderanfertigung: Detail-Bildkarussell (Coverflow) */
.detail-carousel-wrap {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.detail-carousel {
    position: relative;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.detail-carousel-slide {
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 42% !important;
    height: 85% !important;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.7);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.detail-carousel-slide.is-active {
    opacity: 1;
    z-index: 3;
    cursor: zoom-in;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.detail-carousel-slide.is-prev {
    opacity: 0.45;
    z-index: 2;
    transform: translate(-140%, -50%) scale(0.8);
}

.detail-carousel-slide.is-next {
    opacity: 0.45;
    z-index: 2;
    transform: translate(40%, -50%) scale(0.8);
}

.detail-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26,26,26,0.65);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.detail-carousel-nav:hover {
    background: var(--secondary-color);
}

.detail-carousel-nav.prev { left: 15px; }
.detail-carousel-nav.next { right: 15px; }

.detail-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.6rem;
}

.detail-carousel-wrap {
    margin-bottom: 1.5rem !important;
}

.detail-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.detail-carousel-dot.is-active {
    background: white;
}

.detail-carousel-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 2rem;
}

.detail-carousel-lightbox.is-open {
    display: flex;
}

.detail-carousel-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

@media (max-width: 640px) {
    .detail-carousel {
        height: 220px;
    }
    .detail-carousel-slide.is-prev,
    .detail-carousel-slide.is-next {
        display: none;
    }
    .detail-carousel-slide.is-active {
        width: 88% !important;
        height: 92% !important;
    }
}



/* Hero: Textbereich als Karussell (1. Folie = Standardtext, weitere = Termine/Blogbeitraege/Aktionen) */
.hero-slides-wrap {
    position: relative;
    display: grid;
}

.hero-slide {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes heroSlideFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-slide-badge {
    display: none;
}

.hero-slide-img {
    max-width: 320px;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.hero-slide-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.hero-slide-arrow:hover {
    background: var(--secondary-color);
}

.hero-slide-arrow.prev {
    left: -55px;
}

.hero-slide-arrow.next {
    left: calc(100% + 15px);
}

@media (max-width: 900px) {
    .hero-slide-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slides-wrap {
        margin-bottom: 0.5rem;
    }

    .hero-slide-badge {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-logo-under-text {
        margin: 0.75rem 0;
    }

    .hero-logo-icon-animated {
        width: 50px;
        height: auto;
    }

    .hero-slide-img {
        max-width: 220px;
        margin: 1rem auto;
    }

    .hero-slide-dots {
        margin-top: 1.25rem;
        justify-content: center;
    }

    .hero-static-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .hero-static-buttons .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .hero-badge-section {
        margin-top: 1.5rem;
    }
}

.hero-slide-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-slide-dot.is-active {
    background: var(--secondary-color);
}

/* Hero: fixe Buttons ausserhalb des Karussells, zentriert */
.hero-static-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}



/* Einzelansicht Blogbeitrag */
.single-post-meta {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.single-post-thumb {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.single-post-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1rem 0;
}

.single-post-content {
    text-align: left;
}

/* Blog-Uebersicht Kacheln */
.blog-card-date {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Service-Icon: Bild statt Icon-Schrift, falls Beitragsbild hinterlegt */
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Footer-Links (Impressum etc.) */
.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer: Social-Media-Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Preisliste: zwei Preise (Standard-\/Premium-Schliff) nebeneinander */
.pricing-row-dual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.pricing-row-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem 0;
    background: none;
}

.service-price-dual {
    display: grid;
    grid-template-columns: 80px 80px;
    gap: 1.5rem;
    flex-shrink: 0;
}

.service-price-option {
    display: flex;
    justify-content: center;
    text-align: center;
}

.service-price-option .service-price {
    width: 100%;
    text-align: center;
}

.service-price-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .pricing-row-dual {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-price-dual {
        width: 100%;
        justify-content: space-around;
    }
    .pricing-row-head {
        justify-content: space-around;
        padding: 0 0.5rem;
    }
}