    .custom-furniture-section {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      box-sizing: border-box;
    }
    .custom-furniture-section * { box-sizing: border-box; }

    h1 { font-size: 1.8rem; margin-bottom: 4px; text-align: center; }
    .subtitle { color: #666; margin-bottom: 24px; font-size: 0.95rem; text-align: center; }

    /* Mobile Navigation Bar */
    .custom-menu-bar {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 8px;
      list-style: none;
      padding: 0 0 12px 0;
      margin: 0 0 16px 0;
      -webkit-overflow-scrolling: touch;
    }
    .custom-menu-bar::-webkit-scrollbar { height: 4px; }
    .custom-menu-bar::-webkit-scrollbar-thumb { background: #00b4d8; border-radius: 2px; }

    .menu-item-container { 
      flex-shrink: 0; 
    }

    .custom-trigger-btn {
      background: #FDFBF7; border: 1px solid #ddd; padding: 10px 14px;
      border-radius: 6px; cursor: pointer; font-weight: 500; font-size: 14px;
      white-space: nowrap; transition: all 0.2s ease;
      -webkit-tap-highlight-color: transparent;
      color:#666666;
    }
    .custom-trigger-btn.btn-active { 
			background: #a88c74; color: #000000; border-color: #a88c74; font-weight: bold;
			

}

    /* GLOBALES DROPDOWN: Unabhängig von jedem Scroll-Container */
    .global-dropdown {
      position: absolute;
      z-index: 99999;
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      padding: 4px 0;
      width: calc(100% - 32px); /* Volle Breite minus Padding auf Smartphones */
      left: 16px;
    }

    .global-dropdown button {
      width: 100%; text-align: left; background: none; border: none;
      padding: 14px 16px; cursor: pointer; font-size: 15px; transition: background 0.2s;
      display: block; color: #333;
      -webkit-tap-highlight-color: transparent;
    }
    .global-dropdown button:hover { background: #f0f7ff; color: #0070f3; }

    /* Ab Desktop-Größe positionieren wir es wieder schick unter dem jeweiligen Button */
    @media (min-width: 1024px) {
      .custom-menu-bar { flex-wrap: wrap; overflow-x: visible; justify-content: center; }
      .global-dropdown {
        width: auto;
        min-width: 200px;
      }
    }

    /* GRID DESIGN */
    .custom-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 20px;
    }

    @media (min-width: 768px) { .custom-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
    @media (min-width: 1024px) { .custom-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

    .img-box {
      background: #fbfbfb; border-radius: 8px; overflow: hidden;
      border: 1px solid #e0e0e0; aspect-ratio: 1 / 1;
    }
    
    /* Bilder als anklickbar stylen */
    .img-box img, .slider-item img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
      cursor: pointer;
      transition: transform 0.2s ease;
    }
    .img-box img:hover, .slider-item img:hover {
      transform: scale(1.02);
    }

    /* SLIDER DESIGN */
    .custom-slider-wrapper {
      position: relative; max-width: 600px; margin: 20px auto 0 auto;
      background: #fafafa; border-radius: 12px; border: 1px solid #e5e5e5;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06); overflow: hidden;
    }
    .custom-slider { position: relative; aspect-ratio: 4 / 3; width: 100%; touch-action: pan-y; }
    .slider-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.35s; z-index: 1; }
    .slider-item.active { opacity: 1; z-index: 2; }
    .slider-item img { object-fit: contain; background: #fafafa; }

    .slider-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9); border: 1px solid #ddd; width: 38px; height: 38px;
      border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center;
      -webkit-tap-highlight-color: transparent;
    }
    .prev-arrow { left: 8px; } .next-arrow { right: 8px; }
    .slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
    .slider-dot { width: 8px; height: 8px; background: #ccc; border-radius: 50%; cursor: pointer; }
    .slider-dot.active { background: #0070f3; width: 20px; border-radius: 4px; }
    .swipe-hint { text-align: center; font-size: 12px; color: #888; margin-top: 8px; }
    @media (min-width: 768px) { .swipe-hint { display: none; } }

    /* 🔥 LIGHTBOX MODAL DESIGN (Vergrößerte Ansicht) */
    .lightbox-modal {
      position: fixed;
      z-index: 999999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
      animation: zoomIn 0.25s ease;
    }

    /* Roter Schließen-Button oben rechts */
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 25px;
      color: white;
      background-color: #ff3b30; /* iOS Rot */
      font-size: 30px;
      font-weight: bold;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.2s, transform 0.1s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      user-select: none;
    }

    .lightbox-close:hover {
      background-color: #d11a10;
      transform: scale(1.05);
    }

    @keyframes zoomIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }