
	:root {
    --gold: #c9a961;
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
}	
		.section-dark {
    background: var(--dark);
    padding: 5rem 0;
}
		  .about-image-container {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

        .about-image-container img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            transition: opacity 0.3s ease-in-out;
        }
		
		
		
    .image-parent .pin.view {
    position: absolute
}

.image-parent .pin.view .pin-layer {
    visibility: visible;
    opacity: 1;
    background: transparent;
    transform: none;
    top: auto;
    left: auto;
    padding: 0;
    z-index: 5;
    width: auto
}

.image-parent .pin.view .pin-layer .product-bottom {
    padding: 0;
    width: 100% !important
}

.image-parent .pin-layer .product-bottom {
    width: 50%;
    float: left;
    padding-left: 5% !important
}

.image-parent .pin .product-isLogo {
    margin-top: 0 !important
}

.product-bottom h3 {
    margin: 0px
}

.product-bottom .price {
    display: block;
    margin-bottom: 7px
}

.price {
    display: inline-block;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1
}

.image-parent .pin-layer .btn1-basket {
    padding: 7px 12px
}

.image-parent .pin.view .pin-layer .product-bottom {
    padding: 0;
    padding-left: 0px;
    width: 69% !important
}

.image-parent .pin.view .pin-layer .product-bottom {
    min-width: 150px
}
		
		
		
			
			
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #c9a961;
            --text-dark: #fff;
            --text-light: #666;
            --bg-light: #f8f8f8;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: var(--text-dark);
            background: #fff;
            line-height: 1.6;
        }

        /* Top Bar */
        .top-bar {
            background: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }

        .top-bar a {
            color: #333;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: 400;
        }

        .top-bar a:hover {
            color: var(--primary-gold);
        }

        /* New Header Styles */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            background: #1a1a1a;
            color: white;
            padding: 8px 20px;
            font-size: 13px;
            text-align: center;
        }

        .promo-banner {
            background: linear-gradient(135deg, #c9a961 0%, #b8944d 100%);
            color: white;
            padding: 10px 20px;
            text-align: center;
            font-weight: 600;
        }

        .header-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 40px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .main-nav {
            display: flex;
            gap: 35px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: static;
        }

        .nav-link {
            color: #333 !important;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-gold) !important;
        }

        .arrow-icon {
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid currentColor;
            transition: transform 0.3s;
        }

        .nav-item:hover .arrow-icon {
            transform: rotate(180deg);
        }

        .header-actions {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .action-btn {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .action-btn:hover {
            color: var(--primary-gold);
        }

        .cart-icon {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        /* Megamenü Styles */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            width: 100vw;
            background: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            max-height: 600px;
            overflow-y: auto;
            z-index: 999;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu-content {
            padding: 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mega-menu-tabs {
            display: flex;
            gap: 0;
            border-bottom: 2px solid #e0e0e0;
            padding: 0 40px;
            background: #f8f9fa;
        }

        .mega-tab {
            padding: 20px 30px;
            background: transparent;
            border: none;
            font-size: 15px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
        }

        .mega-tab:hover {
            color: var(--primary-gold);
            background: rgba(201, 169, 97, 0.05);
        }

        .mega-tab.active {
            color: var(--primary-gold);
            border-bottom-color: var(--primary-gold);
            background: white;
        }

        .mega-tab-content {
            display: none;
            padding: 40px;
        }

        .mega-tab-content.active {
            display: block;
        }

        .mega-menu-sections {
            display: flex;
            gap: 50px;
        }

        .mega-menu-section {
            flex: 1;
        }

        .mega-menu-title {
            font-size: 14px;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .mega-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-menu-item {
            margin-bottom: 15px;
        }

        .mega-menu-link {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .mega-menu-link:hover {
            background: #f8f9fa;
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .mega-menu-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid #e0e0e0;
        }

        .mega-menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-banner-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 75%;
            min-height: 400px;
        }

        .featured-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 30px;
            text-align: center;
        }

        .banner-overlay h3 {
            font-size: 32px;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .banner-overlay p {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.95;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

        .mega-menu-text {
            flex: 1;
        }

        .mega-menu-label {
            display: block;
            font-weight: 500;
            margin-bottom: 3px;
        }

        .mega-menu-desc {
            display: block;
            font-size: 12px;
            color: #999;
        }

        .featured-btn {
            background: white;
            color: var(--primary-gold);
            padding: 10px 25px;
            border-radius: 6px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: transform 0.3s;
        }

        .featured-btn:hover {
            transform: scale(1.05);
        }

        .new-badge {
            background: #e74c3c;
            color: white;
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 3px;
            margin-left: 8px;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 10000;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
        }

        .mobile-overlay.active {
            display: block;
        }

        /* Mobile Menu Styles */
        @media (max-width: 1024px) {
            .header-bottom {
                padding: 15px 20px;
            }
            .main-nav {
                gap: 15px;
            }
            .mega-menu-sections {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 85%;
                max-width: 320px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 60px 15px 20px;
                gap: 0;
                transition: left 0.3s ease;
                overflow-y: auto;
                z-index: 9999;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                left: 0;
            }
            .nav-item {
                border-bottom: 1px solid #f0f0f0;
                padding: 0;
                margin: 0;
            }
            .nav-link {
                padding: 12px 10px !important;
                width: 100%;
                font-size: 15px;
                justify-content: space-between;
            }
            .mobile-menu-btn {
                display: flex;
                position: relative;
                z-index: 10001;
            }
            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }
            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            /* MEGA MENU - Full screen overlay like rukespiegel.de */
            .mega-menu {
                position: fixed !important;
                top: 0 !important;
                left: 100% !important;
                width: 100% !important;
                max-width: 320px !important;
                height: 100vh !important;
                background: white !important;
                z-index: 10000 !important;
                overflow-y: auto !important;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                transition: left 0.3s ease !important;
                padding: 0 !important;
                margin: 0 !important;
                border: none !important;
            }
            .nav-item:hover .mega-menu {
                left: 100% !important;
            }
            .mega-menu.open {
                left: 0 !important;
            }
            
            /* Back button header in mega menu */
            .mega-menu-content {
                padding: 0;
            }
            .mega-menu-content::before {
                content: '← Zurück';
                display: block;
                padding: 18px 15px;
                font-size: 16px;
                font-weight: 600;
                color: #333;
                cursor: pointer;
                border-bottom: 1px solid #e0e0e0;
                background: #f9f9f9;
                position: sticky;
                top: 0;
                z-index: 10;
            }
            
            /* Tabs horizontal at top */
            .mega-menu-tabs {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                padding: 0;
                gap: 0;
                background: white;
                border-bottom: 1px solid #e0e0e0;
                position: sticky;
                top: 54px;
                z-index: 9;
            }
            .mega-tab {
                flex: 1;
                text-align: center;
                border-bottom: 2px solid transparent;
                padding: 12px 8px;
                font-size: 12px;
                border-radius: 0;
                margin: 0;
                background: white;
                white-space: nowrap;
            }
            .mega-tab.active {
                border-bottom-color: var(--primary-gold);
                color: var(--primary-gold);
                background: white;
            }
            
            /* Tab content */
            .mega-tab-content {
                padding: 15px;
            }
            .mega-menu-sections {
                flex-direction: column;
                gap: 20px;
            }
            .mega-menu-section {
                padding: 0;
            }
            .mega-menu-title {
                font-size: 11px;
                margin-bottom: 12px;
                padding-bottom: 8px;
                border-bottom: 1px solid #eee;
            }
            .mega-menu-list {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            .mega-menu-item {
                margin-bottom: 0;
            }
            .mega-menu-link {
                padding: 10px;
                gap: 12px;
                background: #f8f8f8;
                border-radius: 8px;
            }
            .mega-menu-link:hover {
                background: #f0f0f0;
            }
            .mega-menu-image {
                width: 50px;
                height: 50px;
                border-radius: 6px;
            }
            .mega-menu-label {
                font-size: 14px;
            }
            .mega-menu-desc {
                font-size: 11px;
            }
            .featured-banner-image {
                display: none;
            }
            .header-actions {
                gap: 15px;
            }
            .action-btn span {
                display: none;
            }
        }

        /* Hero Video Section */
        .hero-video-section {
            position: relative;
            width: 100%;
            height: 80vh;
            background: #000;
            overflow: hidden;
        }

        .hero-video-section video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .video-overlay h1 {
            color: #fff;
            font-size: 3.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            margin-bottom: 1.5rem;
        }

        .video-overlay p {
            color: #fff;
            font-size: 1.5rem;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
        }

        .btn-primary-gold {
            background: var(--primary-gold);
            color: #000;
            padding: 1rem 2.5rem;
            border: none;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 0;
        }

        .btn-primary-gold:hover {
            background: #b89851;
            transform: translateY(-2px);
        }

        /* Section Styling */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: left;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #000;
        }

        .section-subtitle {
            text-align: left;
            color: #666;
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        /* Filter Tabs - Phantom Mirrors Style */
        .filter-tabs {
            display: flex;
            justify-content: left;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .filter-tab {
            background: transparent;
            border: 1px solid #ddd;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.85rem;
            color: #333;
            border-radius: 0;
        }

        .filter-tab:hover {
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }

        .filter-tab.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #000;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .product-item.hidden {
            display: none;
        }

        .product-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .product-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .product-item:hover img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .product-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Features Section */
        .features-section {
            background: var(--bg-light);
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .feature-number {
            width: 60px;
            height: 60px;
            background: var(--primary-gold);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem; color: #555;
        }

        .feature-item p {
            color: var(--text-light);
        }

        /* Video Cards */
        .video-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .video-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }

        .video-card img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .video-card:hover img {
            transform: scale(1.1);
        }

        .video-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 2rem;
            color: #fff;
        }

        .video-card-overlay h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .video-card-overlay p {
            color: var(--primary-gold);
        }

        /* Modal Styles */
        .product-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s;
        }

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

        .modal-content-custom {
            background-color: #fff;
            margin: 5% auto;
            padding: 0;
            width: 90%;
            max-width: 1200px;
        }

        .modal-header-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #e0e0e0; background-color: #000;
        }

        .modal-header-custom h2 {
            margin: 0;
            font-size: 1.5rem;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #fff;
        }

        .close-btn:hover {
            color: var(--primary-gold);
        }

        .modal-body-custom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding: 2rem; background-color: #000;
        }

        .gallery-main img {
            width: 100%;
            height: auto;
            border: 1px solid #e0e0e0;
        }

        .gallery-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .gallery-thumbs img {
            width: 100%;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .gallery-thumbs img:hover,
        .gallery-thumbs img.active {
            border-color: var(--primary-gold);
        }

        .specs-list {
            list-style: none;
            padding: 0;
        }

        .specs-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.95rem;
        }

        .specs-list li:last-child {
            border-bottom: none;
        }

        /* Footer */
        footer {
            background: #f5f5f5;
            padding: 4rem 0 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-contact a {
            color: #333;
            text-decoration: none;
        }

        .footer-contact a:hover {
            color: var(--primary-gold);
        }

        .footer-links h5 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            color: #999;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .video-overlay h1 {
                font-size: 2rem;
            }
            .modal-body-custom {
                grid-template-columns: 1fr;
            }
            .gallery-thumbs {
                grid-template-columns: repeat(3, 1fr);
            }
        }