/* ========================================
   MKGS24-SHOP CSS-DATEI
   Alle Farben und Größen sind hier einstellbar!
   ======================================== */

/* ========== HAUPT-EINSTELLUNGEN ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333333;
}


/* ========== FARBEN - HIER KANNST DU ALLES ÄNDERN! ========== */
:root {
    /* Header-Farben */
    --header-hintergrund: #98f065;           /* Schwarzer Header-Hintergrund */
    --header-text: #ffffff;                   /* Weiße Schrift im Header */
    --header-button-hover: #333333;          /* Dunkelgrau beim Hover */
    
    /* Menü-Button Farben */
    --menue-button-hintergrund: hsl(103, 78%, 69%);     /* Weißer Button-Hintergrund */
    --menue-button-text: #000000;            /* Schwarze Schrift */
    --menue-button-border: hsl(101, 58%, 60%);          /* Grauer Rand */
    
    /* Seiten-Menü Farben */
    --seiten-menue-hintergrund: #ffffff;     /* Weißer Menü-Hintergrund */
    --seiten-menue-text: #333333;            /* Dunkelgraue Schrift */
    --kategorie-hover: #f5f5f5;              /* Hellgrau beim Hover */
    --pfeil-farbe: #666666;                  /* Grauer Pfeil */
    
    /* Overlay Farbe */
    --overlay-hintergrund: rgba(0, 0, 0, 0.5); /* Halbtransparentes Schwarz */
    
    /* Haupt-Inhalt Farben */
    --inhalt-hintergrund: #ffffff;           /* Weißer Inhalt-Hintergrund */
    --inhalt-text: #333333;                  /* Dunkelgrauer Text */

/* Footer-Farben */
    --footer-hintergrund: #f5f5f5;           /* Hellgrauer Footer-Hintergrund */
    --footer-text: #333333;                  /* Dunkelgrauer Text */
    --footer-titel: #000000;                 /* Schwarze Überschriften */
    --footer-link: #0066c0;                  /* Blaue Links */
    --footer-link-hover: #c45500;            /* Orange beim Hover */
    --footer-copyright-bg: #e8e8e8;          /* Hellgrauer Copyright-Bereich */
    
    /* Footer-Größen */
    --footer-padding: 40px;                  /* Innenabstand */
    --footer-titel-groesse: 16px;            /* Größe der Überschriften */
    --footer-text-groesse: 14px;             /* Größe der Links */


    /* Live-Chat-Farben */
    --chat-button-hintergrund: linear-gradient(135deg, #39e639 0%, #2ee76b 100%);  /* Rot-Orange wie Logo */
    --chat-button-hover: linear-gradient(135deg, #2736c2 0%, #6edf4c 100%);       /* Dunkler beim Hover */
    --chat-header-hintergrund: linear-gradient(135deg, #e63946 0%, #8eec68 100%); /* Rot-Orange Header */
    --chat-fenster-hintergrund: #ffffff;                                           /* Weiß */
    --chat-nachricht-support: #f8f9fa;                                            /* Hellgrau für Support */
    --chat-nachricht-kunde: linear-gradient(135deg, #e63946 0%, #97eb48 100%);    /* Rot-Orange für Kunde */
    --chat-text: #333333;                                                          /* Dunkelgrau */
    --chat-status-gruen: #10b981;                                                 /* Grün für "Online" */
    
    /* Live-Chat-Größen */
    --chat-button-groesse: 60px;                                                  /* Größe des Chat-Buttons */
    --chat-fenster-breite: 380px;                                                 /* Breite des Chat-Fensters */
    --chat-fenster-hoehe: 550px;                                                  /* Höhe des Chat-Fensters */
}



/* Mega Navigation */
.mega-nav {
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 9999;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-top: var(--header-hoehe);
}



.mega-nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.kategorien-btn{
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.quick-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.quick-links a{
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.quick-links a:hover{
  background: rgba(0,0,0,0.06);
}




/* ========== GRÖßEN - HIER KANNST DU ALLES ÄNDERN! ========== */
:root {
    /* Header-Größen */
    --header-hoehe: 200px;                    /* Höhe des Headers */
    --logo-hoehe: 130px;                      /* Höhe des Logos */
    
    /* Menü-Button Größen */
    --menue-button-breite: 90px;             /* Breite des Menü-Buttons */
    --menue-button-hoehe: 45px;              /* Höhe des Menü-Buttons */
    --menue-icon-breite: 24px;               /* Breite der Menü-Linien */
    --menue-icon-hoehe: 2px;                 /* Dicke der Menü-Linien */
    
    /* Seiten-Menü Größen */
    --seiten-menue-breite: 380px;            /* Breite des ausgeklappten Menüs */
    --kategorie-schriftgroesse: 16px;        /* Schriftgröße der Kategorien */
    --menue-titel-schriftgroesse: 18px;      /* Schriftgröße der Titel */
}


/* ========== HEADER (OBEN) ========== */
.haupt-header {
    background-color: var(--header-hintergrund);
    height: var(--header-hoehe);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-inhalt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}


/* ========== MENÜ-BUTTON (LINKS) ========== */
.menue-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--menue-button-breite);
    height: var(--menue-button-hoehe);
    background-color: var(--menue-button-hintergrund);
    border: 1px solid var(--menue-button-border);
    border-radius: 3px;
    cursor: pointer;
    padding: 8px;
    transition: background-color 0.3s ease;
}

.menue-button:hover {
    background-color: var(--kategorie-hover);
}

.menue-icon-linie {
    width: var(--menue-icon-breite);
    height: var(--menue-icon-hoehe);
    background-color: var(--menue-button-text);
    margin: 2px 0;
    border-radius: 2px;
}

.menue-text {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--menue-button-text);
}


/* ========== SHOP-LOGO ========== */
.shop-logo {
    margin-left: 15px;
}

.shop-logo img {
    height: var(--logo-hoehe);
    width: auto;
}.shop-logo {
    margin-left: 10px;
    margin-right: auto;  /* Schiebt alles andere nach rechts */
}

.shop-logo img {
    height: var(--logo-hoehe);
    width: auto;
}


/* ========== SUCHLEISTE ========== */
.such-leiste {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 900px;
    margin: 0 120px;
}

.such-eingabe {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #cccccc;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    outline: none;
}

.such-eingabe:focus {
    border-color: #999999;
}

.such-button {
    width: 50px;
    height: 40px;
    background-color: var(--menue-button-hintergrund);
    border: 1px solid #cccccc;
    border-left: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.such-button:hover {
    background-color: var(--kategorie-hover);
}


/* ========== BENUTZER-AKTIONEN (RECHTS) ========== */
.benutzer-aktionen {
    display: flex;
    gap: 15px;
}

.aktion-button {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--header-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.aktion-button:hover {
    background-color: var(--header-button-hover);
}


/* ========== AUSKLAPPBARES SEITEN-MENÜ ========== */
.seiten-menue {
    position: fixed;
    top: 0;
    left: -400px; /* Versteckt (links außerhalb) */
    width: var(--seiten-menue-breite);
    height: 100%;
    background-color: var(--seiten-menue-hintergrund);
    z-index: 2000;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.seiten-menue.aktiv {
    left: 0; /* Sichtbar */
}


/* ========== MENÜ-HEADER ========== */
.menue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.menue-logo img {
    height: 35px;
}

.menue-schliessen-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--seiten-menue-text);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menue-schliessen-btn:hover {
    background-color: var(--kategorie-hover);
}


/* ========== MENÜ-INHALT ========== */
.menue-inhalt {
    padding: 20px;
}

.menue-titel {
    font-size: var(--menue-titel-schriftgroesse);
    font-weight: 700;
    color: var(--seiten-menue-text);
    margin-bottom: 15px;
}


/* ========== KATEGORIEN-LISTE ========== */
.kategorie-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kategorie-eintrag {
    border-bottom: 1px solid #e0e0e0;
}

.kategorie-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    text-decoration: none;
    color: var(--seiten-menue-text);
    font-size: var(--kategorie-schriftgroesse);
    transition: background-color 0.3s ease;
}

.kategorie-link:hover {
    background-color: var(--kategorie-hover);
    padding-left: 10px;
}

.pfeil {
    font-size: 24px;
    color: var(--pfeil-farbe);
}


/* ========== SERVICE-BEREICH ========== */
.service-bereich {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.service-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-liste li {
    margin-bottom: 10px;
}

.service-liste a {
    text-decoration: none;
    color: var(--seiten-menue-text);
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-liste a:hover {
    color: #000000;
    text-decoration: underline;
}


/* ========== OVERLAY (DUNKLER HINTERGRUND) ========== */
.menue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-hintergrund);
    z-index: 1500;
    display: none; /* Versteckt */
}

.menue-overlay.aktiv {
    display: block; /* Sichtbar */
}


/* ========== HAUPT-INHALT ========== */
.haupt-inhalt {
    margin-top: var(--header-hoehe);
    padding: 40px 20px;
    min-height: calc(100vh - var(--header-hoehe));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--inhalt-hintergrund);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container h1 {
    font-size: 32px;
    color: var(--inhalt-text);
    margin-bottom: 15px;
}

.container p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

/* ========== FOOTER (FUSSBEREICH) ========== */
.haupt-footer {
    background-color: var(--footer-hintergrund);
    border-top: 1px solid #ddd;
    margin-top: 60px;
}

.footer-inhalt {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--footer-padding) 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-spalte {
    display: flex;
    flex-direction: column;
}

.footer-titel {
    font-size: var(--footer-titel-groesse);
    font-weight: 700;
    color: var(--footer-titel);
    margin-bottom: 15px;
}

.footer-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-liste li {
    margin-bottom: 8px;
}

.footer-liste a {
    text-decoration: none;
    color: var(--footer-link);
    font-size: var(--footer-text-groesse);
    transition: color 0.3s ease;
}

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

/* Copyright-Zeile */
.footer-copyright {
    background-color: var(--footer-copyright-bg);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: var(--footer-text);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-inhalt {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-inhalt {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
}



/* ========== LIVE-CHAT-SYSTEM ========== */
.live-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Chat-Button (Bubble) */
.chat-bubble-button {
    position: relative;
    width: var(--chat-button-groesse);
    height: var(--chat-button-groesse);
    background: var(--chat-button-hintergrund);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.chat-bubble-button:hover {
    background: var(--chat-button-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6);
}

.chat-bubble-button .chat-icon,
.chat-bubble-button .close-icon {
    transition: opacity 0.2s ease;
}

.chat-bubble-button.active .chat-icon {
    display: none;
}

.chat-bubble-button.active .close-icon {
    display: block !important;
}

/* Badge (Benachrichtigung) */
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Chat-Fenster */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: var(--chat-fenster-breite);
    height: var(--chat-fenster-hoehe);
    background: var(--chat-fenster-hintergrund);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-window.active {
    display: flex;
}

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

/* Chat-Header */
.chat-header {
    background: var(--chat-header-hintergrund);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.chat-status {
    margin: 5px 0 0 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.95;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--chat-status-gruen);
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Chat-Nachrichten */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9fafb;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: var(--chat-nachricht-support);
    padding: 12px 16px;
    border-radius: 12px;
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--chat-text);
}

.support-message .message-content p {
    background: var(--chat-nachricht-support);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content p {
    background: var(--chat-nachricht-kunde);
    color: white;
}

.message-time {
    font-size: 11px;
    color: #9ca3af;
    padding: 0 5px;
}

/* Chat-Eingabe */
.chat-input-container {
    padding: 16px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #e63946;
}

.chat-send-button {
    width: 44px;
    height: 44px;
    background: var(--chat-button-hintergrund);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send-button:hover {
    background: var(--chat-button-hover);
    transform: scale(1.05);
}

.chat-send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== PRODUKTE MIT LIKE-SYSTEM ========== */
.produkte-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.produkte-titel {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.produkte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Produkt-Karte */
.produkt-karte {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produkt-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Produkt-Bild */
.produkt-bild {
    position: relative;
    width: 100%;
    height: 300px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.produkt-bild img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Like-Button */
.like-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.like-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.like-button .heart-icon {
    color: #999;
    transition: all 0.3s ease;
}

.like-button.liked .heart-icon {
    fill: #e63946;
    stroke: #e63946;
    animation: heartBeat 0.3s ease;
}

.like-count {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.4);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.25); }
}

/* Produkt-Info */
.produkt-info {
    padding: 20px;
}

.produkt-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.produkt-preis {
    font-size: 24px;
    font-weight: 700;
    color: #e63946;
    margin: 0 0 15px 0;
}

.produkt-button {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.produkt-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .produkte-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .produkt-bild {
        height: 250px;
    }
}



/* Responsive Chat */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 140px);
        bottom: 80px;
    }
}

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

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .seiten-menue {
        width: 300px;
    }
    
    /* Suchleiste auf Handy nach unten verschieben */
    .such-leiste {
        position: fixed;
        top: var(--header-hoehe);  /* Direkt unter dem Header */
        left: 0;
        right: 0;
        margin: 0;
        padding: 10px;
        background-color: white;
        z-index: 999;
        max-width: 100%;
    }
    
    .haupt-inhalt {
        margin-top: calc(var(--header-hoehe) + 60px);  /* Header + Suchleiste */
    }
    
     /* Auf Handy ausblenden */
    }
    
    .container {
        padding: 9px;
    }

    /* ========== HAUPT-INHALT PRODUKTE ========== */
.haupt-inhalt {
    margin-top: var(--header-hoehe);  /* Platz für Header */
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: 100vh;
}

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

/* Kategorie-Titel */
.kategorie-titel {
    text-align: center;
    margin-bottom: 40px;
}

.kategorie-titel h1 {
    font-size: 32px;
    color: var(--header-text);
    margin-bottom: 10px;
}

.kategorie-beschreibung {
    color: #666;
    font-size: 16px;
}

/* Produkt-Grid */
.produkt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
/* Einzelne Produkt-Karte */
.produkt-karte {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.produkt-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Produkt-Bild */
.produkt-bild {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

/* Produkt-Info */
.produkt-info {
    padding: 20px;
}

.produkt-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--header-text);
    margin-bottom: 10px;
}

.produkt-preis {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.produkt-button {
    width: 100%;
    padding: 12px;
    background: var(--menue-button-hintergrund);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.produkt-button:hover {
    background: #2c5aa0;
}

/* ============================================================
   TABELLEN STYLING FUER PRODUKTBESCHREIBUNG
   ============================================================ */
.produkt-beschreibung table,
.product-description table,
.beschreibung table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    background: #fff;
}

.produkt-beschreibung table,
.produkt-beschreibung th,
.produkt-beschreibung td,
.product-description table,
.product-description th,
.product-description td,
.beschreibung table,
.beschreibung th,
.beschreibung td {
    border: 1px solid #e5e5e5;
}

.produkt-beschreibung th,
.produkt-beschreibung td,
.product-description th,
.product-description td,
.beschreibung th,
.beschreibung td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.produkt-beschreibung th,
.product-description th,
.beschreibung th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.produkt-beschreibung tr:nth-child(even),
.product-description tr:nth-child(even),
.beschreibung tr:nth-child(even) {
    background: #fafafa;
}

.produkt-beschreibung tr:hover,
.product-description tr:hover,
.beschreibung tr:hover {
    background: #f5f5f5;
}

/* Verschachtelte Tabellen (Tabelle in Tabelle) */
.produkt-beschreibung table table,
.product-description table table,
.beschreibung table table {
    margin: 0;
    width: 100%;
}

/* Responsive Tabellen */
@media (max-width: 768px) {
    .produkt-beschreibung table,
    .product-description table,
    .beschreibung table {
        font-size: 12px;
    }
    
    .produkt-beschreibung th,
    .produkt-beschreibung td,
    .product-description th,
    .product-description td,
    .beschreibung th,
    .beschreibung td {
        padding: 8px 10px;
    }
}


/* FIX: Produktbild komplett sichtbar auf Mobile */
@media (max-width: 768px) {
    .product-breadcrumb {
        margin-top: 280px !important;
    }
    .product-container {
        margin-top: 20px !important;
    }
    .product-main-image {
        width: 85% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
}

/* ========== ZAHLUNGSMETHODEN SLIDER ========== */
.footer-zahlungen {
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.zahlungen-titel {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.zahlungen-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.zahlungen-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll-links 25s linear infinite;
    width: max-content;
}

.zahlung-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.zahlung-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-links {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.zahlungen-slider:hover .zahlungen-track {
    animation-play-state: paused;
}

/* ========== FOOTER AUF HANDY AUSBLENDEN ========== */
@media (max-width: 768px) {
    .footer-inhalt {
        display: none !important;
    }
}

/* ========== SEITENMENÜ PROFESSIONELL (NUR HANDY) ========== */
@media (max-width: 768px) {
    .seiten-menue {
        width: 85% !important;
        max-width: 350px !important;
    }
    
    .menue-inhalt {
        padding: 0 !important;
    }
    
    .menue-titel {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #111 !important;
        padding: 18px 20px 10px 20px !important;
        margin: 0 !important;
        border-top: 1px solid #e5e5e5 !important;
        background-color: #fafafa !important;
    }
    
    .menue-inhalt > .menue-titel:first-child {
        border-top: none !important;
    }
    
    .kategorie-liste {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .kategorie-liste li {
        margin: 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .kategorie-liste li:last-child {
        border-bottom: none !important;
    }
    
    .kategorie-liste a {
        display: block !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        color: #0066c0 !important;
        text-decoration: none !important;
        transition: background-color 0.2s ease !important;
    }
    
    .kategorie-liste a:hover {
        background-color: #f5f5f5 !important;
        text-decoration: underline !important;
    }
}

/* ========== SEITENMENÜ FÜR GROSSE BILDSCHIRME (PC) ========== */
@media (min-width: 769px) {
    .menue-inhalt {
        padding: 20px;
    }
    
    .menue-titel {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        padding: 15px 0 10px 0;
        margin: 0 0 10px 0;
        border-bottom: 2px solid #e5e5e5;
    }
    
    .kategorie-liste {
        margin-bottom: 25px;
    }
    
    .kategorie-liste li {
        margin: 0;
    }
    
    .kategorie-liste a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        color: #0066c0;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .kategorie-liste a:hover {
        color: #c45500;
        text-decoration: underline;
    }
    
    .kategorie-liste li:last-child a {
        border-bottom: none;
    }
}

/* ========== VERSANDPARTNER BEREICH ========== */
.footer-versand {
    padding: 25px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.versand-titel {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.versand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.versand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.versand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .versand-logos {
        gap: 20px;
    }
    
    .versand-logo {
        height: 32px;
    }
}
