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

html, body {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Centered site wrapper with side gutters */
.site {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Full-bleed section helper (backgrounds that stretch to viewport edges) */
.full-bleed {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
    padding: 0;
}
.site-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.bg-gray { background-color: #f6f7f9; } /* light gray */
.bg-white { background-color: #ffffff; }
.bg-soft { background-color: #f0f1f3; } /* hero: neutral subtle, slightly darker */

/* ensure full-bleed variant uses the same hero color and cannot be overridden */
.full-bleed.bg-soft { background-color: #f0f1f3 !important; }
.full-bleed.bg-gray { background-color: #f6f7f9 !important; }
.full-bleed.bg-white { background-color: #ffffff !important; }

/* Reduce vertical gap specifically between hero and products */
.full-bleed.bg-soft { 
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.full-bleed.bg-white { 
    padding-top: 6px;
    padding-bottom: 30px;
}
.hero { margin-bottom: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f0f1f3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Make top bar and footer full-bleed (edge-to-edge) even inside centered .site */
.top-bar,
.footer {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
}

/* Top Bar (legacy, falls noch verwendet) */
.top-bar {
    background-color: #e87e14;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
}

/* ====== NEUER KOMPAKTER HEADER ====== */
.main-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: linear-gradient(135deg, #e87e14 0%, #d16d0f 100%) !important;
    padding: 12px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;  /* gleich wie .site-inner */
    display: flex;
    align-items: center;
    justify-content: center;  /* Suchfeld mittig */
    position: relative;
}

.header-logo {
    position: absolute;
    left: 24px;
}

.header-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo weiß machen */
    transition: opacity 0.2s;
}

.header-logo:hover img {
    opacity: 0.85;
}

/* Header Suchfeld — mittig zentriert */
.header-search {
    width: 100%;
    max-width: 500px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 15px;
    outline: none;
    min-width: 0;
}

.header-search input::placeholder {
    color: #999;
}

.header-search button {
    padding: 12px 16px;
    background: #e87e14;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search button:hover {
    background: #d16d0f;
}

/* Mobile Header Anpassungen */
@media (max-width: 700px) {
    .main-header {
        display: block !important;
        visibility: visible !important;
        position: sticky;
        top: 0;
        padding: 10px 0;
        background: linear-gradient(135deg, #e87e14 0%, #d16d0f 100%) !important;
    }
    .header-inner {
        flex-direction: column;
        gap: 10px;
        padding: 10px 16px;
    }
    .header-logo {
        position: static;  /* nicht mehr absolut auf Mobile */
    }
    .header-logo img {
        height: 26px;
        filter: brightness(0) invert(1); /* Logo weiß */
    }
    .header-search {
        width: 100%;
        max-width: none;
    }
    .header-search input {
        padding: 10px 14px;
        font-size: 14px;
    }
    .header-search button {
        padding: 10px 14px;
    }
}

/* Logo Section (legacy) */
.logo-section {
    padding: 12px 20px 4px;
    text-align: center;
}

.logo-section img {
    max-height: 48px;
    height: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Section Titles */
.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: left;
}

/* Product Grid */
.products-grid {
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    display: block;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.product-card:focus,
.product-card:focus-visible {
    outline: 3px solid rgba(232,126,20,0.18);
    outline-offset: 4px;
}

.product-media {
    width: 100%;
    height: clamp(160px, 20vh, 260px);
    overflow: hidden;
    background: #f8f8f8;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease, filter 220ms ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #e87e14;
}

/* Three Images Section */
.three-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.three-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.three-images img:hover {
    transform: scale(1.02);
}

/* Categories Section - Aktualisiert */
.welcome-text-block {
    margin: 0 0 40px;
    padding: 28px 32px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    line-height: 1.7;
    color: #333;
}

.welcome-text-block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.4;
}

.welcome-text-block p {
    margin-bottom: 10px;
    font-size: 15px;
}

.welcome-text-block p:last-child {
    margin-bottom: 0;
}

.welcome-text-block a {
    color: #e87e14;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.welcome-text-block a:hover {
    color: #d66e0f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .welcome-text-block {
        margin: 20px 0;
        padding: 20px 24px;
    }
    
    .welcome-text-block h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .welcome-text-block p {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.category-section {
    margin-bottom: 24px;
}

.category-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
    text-align: left;
    padding-left: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.category-card {
    background: #f8f8f8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 126, 20, 0.3);
    border-color: #e87e14;
}

.category-card:hover .category-overlay {
    background-color: rgba(232, 126, 20, 0.15);
}

.category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    transition: all 0.3s;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Shops Section */
.shops-wrapper {
    position: relative;
    margin-bottom: 80px;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 768px) {
    .shops-wrapper {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.shops-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.shops-grid::-webkit-scrollbar {
    display: none;
}

.shops-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, box-shadow 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shops-scroll-left {
    left: 0;
}

.shops-scroll-right {
    right: 0;
}

.shops-wrapper:hover .shops-scroll-btn:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.shops-scroll-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: #f8f8f8;
}

.shops-scroll-btn.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.shops-scroll-btn svg {
    width: 20px;
    height: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .shops-scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .shops-scroll-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .shop-logo {
        height: 140px;
        min-width: 180px;
        padding: 30px;
    }
    
    .shop-logo img {
        width: 140px;
        height: 70px;
    }
}

.shop-logo {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    min-width: 220px;
    flex-shrink: 0;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}

.shop-logo:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.shop-logo img {
    width: 180px;
    height: 90px;
    object-fit: contain;
}

/* make shop cards transparent when inside a soft bg section so the section color shows */
.full-bleed.bg-soft .shop-logo {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background-color: #232323;
    color: white;
    padding: 48px 20px 28px;
    margin-top: auto;
}

/* Footer-Sektion: Wrapper soll keinen Hintergrund haben, Footer hat eigenen */
#section-footer {
    background: transparent !important;
}

#section-footer .footer {
    background-color: #232323;
}

.footer-top {
    padding-bottom: 18px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 360px;
    gap: 28px;
    align-items: start;
}

.footer-col {
    color: #ddd;
}

.footer-logo {
    max-height: 48px;
    display: block;
    margin-bottom: 12px;
}

.footer-brand-text {
    color: #cfcfcf;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.4;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link svg { display: block; }

.footer-heading {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-list a:hover { color: #e87e14; }

.footer-note {
    color: #ccc;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
}
.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.btn--primary {
    background: #e87e14;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #999;
    font-size: 14px;
}

.footer-note-small {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 8px auto 0;
    text-align: center !important;
    color: #bfbfbf;
    font-size: 12px !important;
    line-height: 1.4;
    font-family: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 18px; }
    .newsletter-form { flex-direction: column; }
}

.newsletter-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

.newsletter-input button {
    padding: 12px 25px;
    background-color: #e87e14;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-input button:hover {
    background-color: #d16d0f;
}

/* Search Box */
.search-box {
    max-width: 800px;
    margin: 0 auto 10px;
    padding: 0 20px;
    text-align: center;
}

.search-box h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    display: none;
}

@media (max-width: 768px) {
    .search-box h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.search-form {
    display: flex;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-form button {
    padding: 18px 40px;
    background-color: #e87e14;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #d16d0f;
}

/* Mobile: ensure search button text remains readable */
@media (max-width: 480px) {
    .search-form {
        gap: 6px;
    }
    .search-form input {
        padding: 14px 12px;
        font-size: 15px;
    }
    .search-form button {
        padding: 12px 16px;
        font-size: 15px;
        min-width: 80px;
        white-space: nowrap;
        text-align: center;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin: 18px 0 20px 0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    /* Feste Höhe statt aspect-ratio um volle Breite zu garantieren */
    height: clamp(180px, 25vw, 400px);
    background: #e8e8e8;
}

.hero-slide {
    display: none !important;
    animation: heroFadeIn 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide.active {
    display: block !important;
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Hero Navigation Pfeile */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-nav:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev {
    left: 16px;
}

.hero-nav-next {
    right: 16px;
}

/* Hero Dots Indikator */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

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

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Hero Link Wrapper */
.hero-slide a {
    display: block;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-slider {
        height: clamp(160px, 30vw, 280px);
        margin: 12px 0 16px 0;
    }
    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .hero-nav-prev { left: 10px; }
    .hero-nav-next { right: 10px; }
    .hero-dots { bottom: 10px; }
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: clamp(140px, 35vw, 200px);
        margin: 10px 0 12px 0;
    }
}

/* About page styles */
.about-hero {
    background: linear-gradient(180deg, rgba(232,126,20,0.08), rgba(232,126,20,0.03));
    padding: 36px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 18px auto;
}
.about-hero h1 {
    font-size: 34px;
    margin-bottom: 8px;
    color: #222;
}
.about-hero .lead {
    color: #444;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
}
.about-content {
    max-width: 900px;
    margin: 26px auto;
}
.about-card {
    background: #fff;
    padding: 26px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    color: #222;
    line-height: 1.6;
}
.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 18px;
}
@media (max-width: 880px) {
    .about-columns { grid-template-columns: 1fr; }
}
.about-cta {
    margin-top: 20px;
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:center;
}
.about-cta .btn { padding: 10px 16px; border-radius: 8px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.cookie-banner-text p:last-child {
    margin-bottom: 0;
}

.cookie-banner-text a {
    color: #e87e14;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: #e87e14;
    color: white;
}

.cookie-btn-accept:hover {
    background: #d66e0f;
}

.cookie-btn-reject {
    background: #f0f0f0;
    color: #333;
}

.cookie-btn-reject:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e87e14;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #d66e0f;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sticky-header.sticky-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-header .logo-section {
    padding: 12px 20px;
}

.sticky-header .logo-section img {
    max-height: 48px;
}

.sticky-header .search-box {
    margin: 0 auto;
    padding: 8px 20px 12px;
}

.sticky-header .search-form {
    max-width: 600px;
}

.header-original {
    transition: opacity 0.3s, height 0.3s;
}

@media (max-width: 768px) {
    .sticky-header .logo-section {
        padding: 10px 20px;
    }
    
    .sticky-header .logo-section img {
        max-height: 48px;
    }
    
    .sticky-header .search-box {
        padding: 6px 20px 10px;
    }
}

/* Page Content Styles for Subpages */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222;
}

.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #222;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #222;
}

.page-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.page-content p {
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.page-content ul, .page-content ol {
    margin: 20px 0;
    padding-left: 24px;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 12px;
    color: #333;
}

.page-content a {
    color: #e87e14;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.page-content a:hover {
    color: #d66e0f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-content {
        padding: 30px 0 40px !important;
    }
    
    .page-content h1 {
        font-size: 28px;
    }
    
    .page-content h2 {
        font-size: 22px;
    }
    
    .page-content h3 {
        font-size: 18px;
    }
}

/* Feed Products Section */
.feed-section {
    margin-bottom: 40px;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feed-grid {
        grid-template-columns: 1fr;
    }
}

/* 8-Produkte Grid */
.feed-grid-8 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .feed-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .feed-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feed-grid-8 {
        grid-template-columns: 1fr;
    }
}

.feed-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feed-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.3s;
}

.feed-card:hover .feed-card-image img {
    transform: scale(1.05);
}

.feed-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feed-card-brand {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.feed-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-card-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.feed-card-price-current {
    font-size: 18px;
    font-weight: 700;
    color: #e87e14;
}

.feed-card-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.feed-card-baseprice {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.feed-card-availability {
    font-size: 12px;
    margin-top: 8px;
}

.feed-card-availability.in-stock {
    color: #2e7d32;
}

.feed-card-availability.out-of-stock {
    color: #c62828;
}

/* Feed Section Link */
.feed-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 12px 24px;
    background: #e87e14;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}
.feed-section-link:hover {
    background: #d06d0a;
    transform: translateX(4px);
}

/* Skeleton Loading */
.feed-card.skeleton {
    pointer-events: none;
}

.skeleton-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-text {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pre-footer info box styles */
.pre-footer-info {
    max-width: 1100px;
    margin: 24px auto;
    padding: 0 20px;
}

.info-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    color: #222;
    line-height: 1.6;
}

.info-card h2 {
    margin-top: 0;
    font-size: 22px;
    color: #111;
}

.info-card h3 {
    margin-top: 18px;
    font-size: 18px;
    color: #222;
}

.info-card ul {
    margin: 12px 0 0 20px;
}

.pre-footer-strap {
    margin-top: 14px;
    font-weight: 700;
    color: #111;
}

@media (max-width: 880px) {
    .info-card {
        padding: 16px;
    }
    
    .info-card h2 {
        font-size: 20px;
    }
}

/* ================================================
   UMFASSENDE MOBILE STYLES
   ================================================ */

/* Mobile: bis 768px */
@media (max-width: 768px) {
    /* Allgemeine Abstände */
    .site {
        padding: 0 16px;
    }
    .site-inner {
        padding: 0 16px;
    }
    
    /* Welcome Text Block */
    .welcome-text-block h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    .welcome-text-block p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Pre-Footer Info Box */
    .pre-footer-info {
        padding: 16px 12px;
    }
    .info-card {
        padding: 16px;
    }
    .info-card h2 {
        font-size: 18px;
        line-height: 1.3;
    }
    .info-card h3 {
        font-size: 16px;
        margin-top: 14px;
    }
    .info-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    .info-card ul {
        font-size: 14px;
        margin-left: 16px;
    }
    .info-card ul li {
        margin-bottom: 6px;
    }
    .pre-footer-strap {
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 12px 20px;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-heading {
        font-size: 16px;
    }
    .footer-brand-text {
        font-size: 14px;
    }
    .footer-list li {
        font-size: 14px;
    }
    .footer-note {
        font-size: 13px;
    }
    .footer-bottom p {
        font-size: 13px;
    }
    .footer-note-small {
        font-size: 12px;
        padding: 12px;
    }
    
    /* Newsletter Form */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form input {
        padding: 12px 14px;
        font-size: 14px;
    }
    .newsletter-form button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Feed Sections */
    .feed-section {
        padding: 20px 0;
    }
    .feed-section-title {
        font-size: 18px;
        margin-bottom: 16px;
        text-align: left;
    }
    
    /* Product Cards */
    .product-card {
        border-radius: 6px;
    }
    .product-info {
        padding: 10px 12px;
    }
    .product-title {
        font-size: 13px;
    }
    .product-price {
        font-size: 15px;
    }
}

/* Mobile: bis 480px (kleine Handys) */
@media (max-width: 480px) {
    /* Header muss sichtbar sein */
    .main-header {
        display: block !important;
        visibility: visible !important;
        position: sticky;
        top: 0;
        padding: 8px 0;
        background: linear-gradient(135deg, #e87e14 0%, #d16d0f 100%) !important;
    }
    /* Header noch kompakter */
    .header-inner {
        padding: 8px 12px;
        gap: 8px;
    }
    .header-logo img {
        height: 22px;
        filter: brightness(0) invert(1); /* Logo weiß */
    }
    .header-search input {
        padding: 10px 12px;
        font-size: 14px;
    }
    .header-search button {
        padding: 10px 12px;
    }
    
    /* Hero Slider - Mobile Overrides */
    .hero-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .hero-nav-prev { left: 8px; }
    .hero-nav-next { right: 8px; }
    .hero-dots {
        bottom: 8px;
    }
    .hero-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Welcome Block */
    .welcome-text-block {
        margin: 12px 0;
        padding: 16px;
    }
    .welcome-text-block h2 {
        font-size: 18px;
    }
    .welcome-text-block p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    /* Pre-Footer */
    .info-card {
        padding: 14px;
    }
    .info-card h2 {
        font-size: 16px;
    }
    .info-card p {
        font-size: 13px;
    }
    .info-card ul {
        font-size: 13px;
    }
    
    /* Footer */
    .footer-logo {
        max-width: 120px;
    }
    .footer-social {
        gap: 12px;
    }
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Produkt Grid: nur 1 Spalte */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Feed Grid: 2 Spalten auf kleinen Handys */
    .feed-grid,
    .feed-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Kleinere Schriften */
    body {
        font-size: 14px;
    }
}

/* Extra kleine Geräte (unter 360px) */
@media (max-width: 360px) {
    .site,
    .site-inner {
        padding: 0 8px;
    }
    
    .header-inner {
        padding: 8px;
    }
    
    .welcome-text-block {
        padding: 12px;
    }
    
    .info-card {
        padding: 12px;
    }
    
    .footer {
        padding: 20px 8px 16px;
    }
    
    /* Noch kleinere Schriften */
    .welcome-text-block h2 {
        font-size: 16px;
    }
    .info-card h2 {
        font-size: 15px;
    }
}


