﻿/* ==========================================
   MOBILE CSS - HPS SystemTechnik
   Menü + Header + Layout Optimierung
   ========================================== */

body {
    font-size: 16px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Desktop komplett deaktivieren */
@media (min-width: 601px) {
    body::before {
        display: none !important;
    }
}

/* ===============================
   MOBILE: Header Grundlayout
   =============================== */

#header {
    padding: 4vw 4vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4vw;
    box-shadow: 0 0.7vw 1.5vw rgba(0,0,0,0.1);
    z-index: 2000;
    height: auto;
}

.logo-img {
.logo-img {
    width: 20vw;
}

.logo-text h1 {
    font-size: 5vw;
    margin: 0;
}

.subtext {
    font-size: 3vw;
    margin: 0;
    color: #de800e;
    font-style: italic;
}

/* KONTAKT Button verstecken (kommt später ins Menü) */
.header-button {
    display: none !important;
}

/* Page Title & Trennlinie ausblenden */
.page-title,
.header-divider {
    display: none !important;
}

/* ===============================
   BURGER MENU
   =============================== */

#burger-menu {
    position: fixed;
        display: block;
    top: 7vw;
    right: 4vw;
    font-size: 9vw;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    z-index: 3000;
}

/* Desktop Burger ausblenden */
@media (min-width: 601px) {
    #burger-menu {
        display: none;
    }
}

/* ===============================
   MOBILE NAVIGATION (ausklappbar)
   =============================== */

#header nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 20vw;
    left: 0;
    right: 0;
    background: white;
    padding: 6vw 0;
    text-align: center;
    box-shadow: 0 1vw 2vw rgba(0,0,0,0.1);
    z-index: 1500;
}

#header nav ul {
    flex-direction: column;
    gap: 6vw;
    margin: 0;
    padding: 0;
}

#header nav ul li a {
    font-size: 5vw;
    font-weight: 600;
}

#header nav.active {
    display: flex;
}

/* ==========================================
   MOBILE SCROLL HERO - FULLSCREEN TRANSITION
========================================== */

#mobile-scroll-hero {
    position: relative;
    width: 100%;
    height: 300vh; /* 3 Bilder → 3x viewport */
}

.scroll-layer {
    position: fixed; /* Start */
    top: 6vw;
    left: 0;
    width: 100%;
    height: calc(100vh - 6vw);
    overflow: hidden;
    will-change: transform, opacity;
    z-index: 1;
}

.scroll-layer.stuck {
    position: sticky !important;
    top: 6vw !important;
}


/* =========================
   Bilder - fullscreen
========================= */

.scroll-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================
   TEXT - allgemein
========================= */

.scroll-text1,
.scroll-text2,
.scroll-text3 {
    position: absolute;
    bottom: 12vw;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    color: white;
    background: rgba(85, 85, 85, 0.55);   /* #555 transparent */
    padding: 3vw 4vw;
    border-radius: 3vw;                   /* abgerundet */
    backdrop-filter: blur(5px);           /* optional, schöner */
    text-align: center;
    text-shadow: 0 0 2vw rgba(0,0,0,0.55);
}

/* Titel */
.scroll-text1 h3,
.scroll-text2 h3,
.scroll-text3 h3 {
    font-size: 5.2vw;
    margin-bottom: 2vw;
    font-weight: 600;
}

/* Text */
.scroll-text1 p,
.scroll-text2 p,
.scroll-text3 p {
    font-size: 3.8vw;
    line-height: 1.45;
}

/* =========================
   LAYER 2 - startet unten
========================= */

.layer2 {
    transform: translateY(100%);   /* wichtig! Start komplett unten */
    transition: transform 0.25s linear;
}

/* Text erscheint erst spät */
.scroll-text2 {
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Wenn Bild 2 oben bleibt */
.layer2.stuck {
    position: sticky;
    top: 6vw;
    transform: translateY(0) !important;
}


/* =========================
   LAYER 3 - startet unten
========================= */

/* Text 3 erst spät anzeigen */
.scroll-text3 {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.layer3 {
    transform: translateY(100%);
    transition: transform 0.25s linear;
    position: fixed; /* nur am Anfang */
    top: 6vw;
    left: 0;
    width: 100%;
    height: calc(100vh - 6vw);
    z-index: 3;
    overflow: hidden;
}

/* Wenn Bild 3 oben bleiben soll → sticky übernehmen */
.layer3.stuck {
    position: sticky !important;
    top: 6vw !important;
    transform: translateY(0) !important;
}



.layer1.fade-out,
.layer2.fade-out {
    opacity: 0;
    pointer-events: none;
    z-index: -1; /* WICHTIG: sonst kommt Bild 1 wieder vor! */
}


.layer1 { z-index: 1; }
.layer2 { z-index: 2; }
.layer3 { z-index: 3; }


/* ===============================
   "Wussten Sie schon" SECTION
   =============================== */

#didyouknow-section {
    padding: 6vw 4vw;
}

#didyouknow-section h2 {
    font-size: 7vw;
}

#didyouknow-section p {
    font-size: 3.8vw;
    margin: 4vw auto;
    max-width: 90%;
    text-align: center;
}

.btn-mehr {
    font-size: 3.8vw;
    padding: 2.4vw 5vw;
    margin: 4vw auto 0;
    display: inline-block;
}

/* ===============================
   ABOUT SECTION
   =============================== */

#about-section {
    padding: 8vw 4vw;
}

#about-section h3 {
    font-size: 6vw;
}

.about-bubble {
    flex: 0 0 80vw;
    margin-right: 4vw;
    padding: 6vw;
    border-radius: 4vw;
}


/* ===============================
   FOOTER
   =============================== */

.footer-container {
    flex-direction: column;
    gap: 6vw;
    text-align: center;
}

.footer-logo {
    width: 22vw;
}

.footer-buttons {
    gap: 4vw;
}

.footer-button {
    font-size: 3.8vw;
    padding: 2.4vw 6vw;
    border-radius: 2vw;
}

#footer-new .copy-wrap {
    position: relative;
    display: inline-block;
    z-index: 50;        /* reicht jetzt */
}


/* E-Mail klickbar machen */
#footer-new .copyable-email {
    display: inline-block;
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer;

    /* iOS Fix */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;

    /* Animation */
    transition: transform 0.18s ease;
}

/* Active (iOS + Android + Desktop) */
#footer-new .copyable-email:active {
    transform: scale(0.94);
}

/* Popup */
#footer-new .copy-popup {
    position: absolute;
    left: 50%;
    top: -2.6em;

    padding: 0.35em 0.8em;
    border-radius: 0.5em;

    background: #28a745;
    color: #fff;

    font-size: 0.9em;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    transform: translateX(-50%) translateY(-0.4em);

    /* Wichtig für Safari */
    will-change: opacity, transform;
}

/* Popup sichtbar → Keyframe statt transform-glitch */
#footer-new .copy-popup.aktiv {
    animation: footerPopup 1.2s ease forwards;
}

@keyframes footerPopup {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0.4em) scale(0.92);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-0.4em) scale(0.98);
    }
}
/* verhindert blau/underline durch iOS AutoLink */
#footer-new .footer-contact a {
    color: inherit !important;
    text-decoration: none !important;
}


/* ===============================
   Cookie Fenster (leicht kleiner)
   =============================== */

.cookie-box {
    width: 90%;
    padding: 1.4em;
    font-size: 0.9em;
}

.cookie-buttons button {
    width: 100%;
    font-size: 1em;
    padding: 0.8em;
}

/* ============================
   MOBILE HERO
============================ */

#hero-section {
    display: none !important;
}

/* ============================
   CARD - kleinere Version
============================ */
.m-hero-card {
    position: absolute;
    bottom: 5vw;
    left: 50%;
    transform: translateX(-50%);

    width: 60%;           /* vorher 70% → schmäler */
    max-height: 30vw;     /* vorher 40vw → niedriger */
    padding: 2.4vw 3vw;   /* kleineres Padding */

    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 3vw;

    text-align: center;
    color: #222;

    /* wichtig: verhindert, dass das Bild mitscrollt */
    max-height: 40vw;
    overflow-y: auto;
    overscroll-behavior: contain; /* verhindert Page-Scroll beim Wischen */
}

/* Überschrift */
.m-hero-card h3 {
    font-size: 4.4vw;
    margin-bottom: 1.5vw;
    color: #333;
}

/* BUTTON kleiner */
.m-hero-btn {
    margin-top: 3vw;
    padding: 1.6vw 3.8vw;       /* kleiner */
    font-size: 3.2vw;           /* kleiner */
    border-radius: 2vw;

    background-color: #ff8800;
    color: #fff;
    border: none;
    cursor: pointer;

    transition: background-color 0.3s ease, transform 0.25s ease;
}

.m-hero-btn:hover {
    transform: scale(1.05);
    background-color: #af6005;
}

.m-hero-btn:active {
    transform: scale(0.95);
}

/* Punkte ausblenden */
.m-dots {
    display: none !important;
}

.m-hero-more {
    margin-top: 3vw;
    display: inline-block;
    padding: 2vw 4vw;
    background-color: #ff8800;   /* Dein Orange */
    color: #fff;                 /* Weißer Text */
    font-size: 3.4vw;
    border-radius: 2vw;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

/* Hover-Effekt (leicht dunkler + größer) */
.m-hero-more:hover {
    background-color: #af6005;
    transform: scale(1.05);
}

/* Active (gedrückt) */
.m-hero-more:active {
    transform: scale(0.95);
}

/* ==========================================
   MODERNES OFF-CANVAS MENU - GLASLOOK
========================================== */

#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    height: 100vh;

    /* Glas-Effekt Hintergrund */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);

    /* Soft Shadow */
    box-shadow: -2vw 0 6vw rgba(0,0,0,0.18);

    z-index: 9999;
    padding: 12vw 6vw;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    transition: transform 0.35s ease, background 0.4s ease;
}

#mobile-menu.active {
    transform: translateX(0);
}

/* Überschrift: "Navigation" */
.mobile-menu-title {
    text-align: center;
    font-size: 5vw;
    font-weight: 500;
    letter-spacing: 0.3vw;
    color: #de800e;
    margin-bottom: 6vw;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Dünne Linie unter Navigation */
.mobile-menu-title::after {
    content: "";
    display: block;
    width: 30%;
    height: 0.7vw;
    background: rgba(0,0,0,0.15);
    margin: 2vw auto 0 auto;
    border-radius: 10vw;
}

/* Menüeinträge */
#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 10vw 0 0 0;
}

#mobile-menu ul li {
    margin-bottom: 6vw;
}

#mobile-menu ul li button {
    font-size: 4.6vw;
    font-weight: 400;
    color: #444;
    background: none;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    padding-bottom: 1vw;
    padding-left: 0;
    cursor: pointer;

    /* Für die animierte Unterlinie */
    position: relative;
}

#mobile-menu ul li button::after {
    content: "";
    position: absolute;
    bottom: -0.8vw;
    left: 0;
    width: 0%;
    height: 0.7vw;
    background: #ff8800;
    border-radius: 10vw;
    transition: width 0.25s ease;
}

#mobile-menu ul li button:hover::after {
    width: 40%;
}

#mobile-menu ul li button:hover {
    color: #ff8800;
}


/* "X" schließen Icon */
.mobile-menu-close {
    position: absolute;
    top: 5vw;
    right: 5vw;
    font-size: 8vw;
    font-weight: 300;
    color: #333;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.mobile-menu-close:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* Overlay */
#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    z-index: 9990;
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
}

#mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===============================================
   WUSSTEN SIE SCHON - MODERN MOBILE CARDS
   =============================================== */

/* Desktop-Text ausblenden */
#didyouknow-section p {
    display: none !important;
}

/* Container für mobile Cards */
.didyouknow-mobile-modern {
    margin-top: 4vw;
    display: flex;
    flex-direction: column;
    gap: 5vw;
    padding: 0 5vw;
}

.dyk-card {
    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(14px);
    border-radius: 4vw;

    padding: 5vw 6vw;
    font-size: 3.9vw;
    color: #333;
    line-height: 1.5;

    box-shadow: 0 1.2vw 3vw rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.35);

    opacity: 0;
    transform: translateY(25px) scale(0.97);

}

/* Verzögerungen bleiben */
.dyk-card:nth-child(1) { animation-delay: .05s; }
.dyk-card:nth-child(2) { animation-delay: .18s; }
.dyk-card:nth-child(3) { animation-delay: .33s; }

/* Keyframes */
@keyframes dykCardFade {
    0%   { opacity: 0; transform: translateY(25px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Button am ENDE der Sektion */
.btn-mehr {
    display: block;
    margin: 7vw auto 2vw;
    padding: 2.8vw 7vw;
            margin-bottom: 11vw;
    font-size: 4vw;
    border-radius: 4vw;

    background-color: #ff8800;
    color: #fff;
    border: none;
    text-decoration: none;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-mehr:hover {
    background-color: #af6005;
    transform: scale(1.05);
}

/* Alten Desktop-Button ausblenden */
#didyouknow-section .btn-mehr {
    display: none !important;
}

/* ===== ABOUT MOBILE (neu) ===== */

#about-mobile {
    padding: 6vw 4vw;               /* 30px 20px → vw */
    background: #f7f7f7;
}

.about-mobile-container {
    display: flex;
    flex-direction: column;
    gap: 3.5vw;                     /* 18px → vw */
}

.about-mobile-title {
    text-align: center;
    font-size: 6.5vw;               /* 1.45rem → vw (mobile-typisch) */
    line-height: 1.3;
    margin-bottom: 2vw;             /* 10px → vw */
}

.about-mobile-card {
    background: white;
    padding: 4vw 4vw;               /* 18px → vw */
    border-radius: 3.5vw;           /* 14px → vw */
    font-size: 3.8vw;               /* 0.95rem → vw */
    line-height: 1.45;
    box-shadow: 0 1vw 2.5vw rgba(0,0,0,0.07); /* 4px 10px → vw */
    opacity: 0;
    transform: translateY(4vw);     /* 20px → vw */
    animation: fadeUp 0.6s ease forwards;
}

.about-mobile-card:nth-child(2) {
    animation-delay: 0.15s;
}
.about-mobile-card:nth-child(3) {
    animation-delay: 0.30s;
}
.about-mobile-card:nth-child(4) {
    animation-delay: 0.45s;
}

.about-mobile-quote {
    margin-top: 2vw;                /* 10px → vw */
    text-align: center;
    font-size: 4vw;                 /* 1rem → vw */
    color: #de800e;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(4vw); /* passend zum Start */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#about-section {
    display: none !important;
}

/* =======================================
   NEUER MOBILE FOOTER - Modern & Clean
   ======================================= */

#footer-new {
    background: #1d1d1d;
    padding: 10vw 5vw 14vw;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 7vw;
    font-family: inherit;
}

/* Titel */
#footer-new .footer-title {
    font-size: 6vw;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2vw;
    text-transform: uppercase;
    text-shadow: 0 1vw 2vw rgba(0,0,0,0.3);
}

/* Kontakt */
#footer-new .footer-contact p {
    font-size: 4.2vw;
    line-height: 1.55;
    color: #fff;
    opacity: 1;
    margin: 1vw 0;
    font-weight: 300;
}

/* ==========================================================
   BUTTON-GRID (2×2)
   ========================================================== */

.footer-links-cloud {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 4vw 8vw;
    padding: 4vw 0;
}

/* Standard-Buttons */
.footer-links-cloud a,
.footer-cookie-btn {
    font-size: 3.9vw;
    padding: 2.4vw 5.4vw;
    border-radius: 50vw;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(14px);

    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1vw 3vw rgba(0,0,0,0.25);

    text-align: center;
}

/* Hover-Effekt */
.footer-links-cloud a:hover,
.footer-cookie-btn:hover {
    transform: translateY(-1vw);
    background: rgba(255,255,255,0.25);
    color: #000;
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 2vw 4vw rgba(0,0,0,0.35);
}

/* Cookie Button, extra row */
.footer-cookie-btn {
    margin-top: 3vw;
    display: inline-block;
}

/* Copyright */
#footer-new .footer-bottom-small {
    font-size: 3.5vw;
    color: #ddd;
    opacity: 0.8;
    padding-top: 4vw;
}

footer {
    display: none !important;
}

#footer-new {
    display: block !important;
}

/* ==========================================
   MOBILE: Suche ausblenden
   ========================================== */
@media (max-width: 600px) {
    #site-search,
    #search-btn,
    .search-results {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* ============================================
   MOBILE MENU - Suchbox (immer sichtbarer Text)
============================================ */

.mobile-search-entry {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1vw 0 10vw;
}

.mobile-search-wrapper {
    width: 80%;
    position: relative;
    margin-bottom: 10vw;
    margin-top: -5vw;
     z-index: 20000;  

    background: rgba(60,60,60,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);

    padding: 3vw 4vw;
    border-radius: 6vw;

    display: flex;
    align-items: center;
}

/* Das Eingabefeld, kein Rahmen */
.mobile-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;

    font-size: 4vw;
    font-weight: 400;
    color: #fff;

    padding-right: 10vw;
}

/* Placeholder sichtbar */
.mobile-search-input::placeholder {
    color: #ddd;
    opacity: 0.9;
}

/* Lupe rechts */
.mobile-search-icon {
    position: absolute;
    right: 4vw;

    width: 5vw;
    height: 5vw;
    stroke: #ffffffcc;

    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none; /* nicht anklickbar */
    transition: transform 0.25s ease, stroke 0.25s ease;
}

.mobile-search-wrapper:hover .mobile-search-icon {
    transform: scale(1.15);
    stroke: #ff8800;
}

#mobile-search-input {
    caret-color: #fff;
}

/* ==========================================
   MOBILE SUCHERGEBNIS-DROPDOWN
========================================== */

.mobile-search-results {
    position: absolute;
    z-index: 2001;

    width: 90vw;
    top: 3vw;
    left: 28.5%;
    transform: translateX(-50%);
    background: white;
    border-radius: 3vw;
    box-shadow: 0 2vw 6vw rgba(0,0,0,0.25);

    padding: 0;
    list-style: none;

    max-height: 90vw; /* Fast voller Screen */
    overflow-y: auto;             /* <- Scroll erlaubt */


    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;

    overscroll-behavior: contain;   
    touch-action: pan-y;            
}


.mobile-search-results.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto; 
}

/* ------------------------------------------
   TITEL „SUCHERGEBNISSE“
------------------------------------------- */
.search-results-title {
    font-size: 6.2vw;
    font-weight: 600;
    color: #de800e;
    padding: 2vw 3vw 0.6vw 3vw;  /* 🔥 viel enger unten */
}

/* ==========================================
   Kategorien
========================================== */

.search-category {
    margin-top: 0vw;        /* 🔥 direkt unter dem Titel */
    margin-bottom: 0vw;     /* 🔥 enger an Produkten */
    padding: 1.8vw 3vw;     /* 🔥 kompakter */
    font-size: 4vw;
    font-weight: 600;
    color: #555;
    background: #f5f5f5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
    border-bottom: 0.25vw solid #e0e0e0;
}

/* Abstand zwischen Kategorien */
.search-category + .search-category {
    margin-top: 2vw !important;   /* 🔥 viel kleiner! */
}

/* Pfeil */
.cat-arrow {
    font-size: 3.8vw;
    transition: transform 0.25s ease;
}

.search-category .cat-arrow.open {
    transform: rotate(180deg);
}

/* ==========================================
   Produkte
========================================== */

.cat-products {
    margin: 0;
    padding: 0;
    list-style: none;

    max-height: 0;
    overflow-y: hidden !important;
    transition: max-height 0.3s ease;
}

.cat-products.open {
    max-height: 9999px;
padding-top: 0 !important;
}

/* Produkt-Liste */
.cat-products .search-item {
    padding: 2.2vw 3.5vw;  /* 🔥 kompakter */
    font-size: 3.7vw;
    border-bottom: 0.25vw solid #ececec;
}

.mobile-search-results li:last-child {
    border-bottom: none;
}

/* UL Reset nur im Such-Dropdown */
.mobile-search-results ul {
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-search-results ul.cat-products {
    margin-top: 0 !important;
}

/* Fix: Entfernt das 6vw margin von <li> EINZIG im Such-Dropdown */
#mobile-search-results li {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}



#mobile-search-results .search-category {
    margin-top: 3vw !important;
    margin-bottom: 3vw !important;
}


#mobile-search-results .cat-products .search-item {
    margin-bottom: 0vw !important;
}

.cat-products .search-item .small.grey {
    display: inline-block;
    margin-top: 2vw;   /* 🔥 Abstand zwischen Artikelnummer & Description */
}

/* Abstand für Description */
.cat-products .search-item .descr {
    display: inline-block;
    margin-top: 1.2vw;
}

/* Link „zur Produktseite“ */
.product-link {
    display: inline-block;
    margin-top: 1.8vw;
    font-size: 3.6vw;
    color: #de800e;
    font-weight: 600;
    cursor: pointer;
}

/* kleiner Tap-Effekt */
.product-link:active {
    opacity: 0.7;
}

#mobile-menu {
    overflow-y: visible !important;
    overscroll-behavior: contain !important;
}

    .product {
        opacity: 1 !important;
        animation: none !important;
    }

    