        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color var(--transition-speed), color var(--transition-speed);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: var(--bg-light);
            color: var(--text-light);
            position: relative;
            overflow-x: hidden;
        }
        
        body.dark-mode {
            background-color: var(--bg-dark);
            color: var(--text-dark);
        }
        
       
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
       
        nav {
            background-color: var(--card-light);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        body.dark-mode nav {
            background-color: var(--card-dark);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: inherit;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width var(--transition-speed) ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        
        .nav-icons i {
            font-size: 1.2rem;
            cursor: pointer;
        }
        
        .theme-toggle {
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: transform var(--transition-speed), opacity var(--transition-speed);
        }
        
        body.dark-mode .hamburger span {
            background-color: var(--text-dark);
        }
        
       
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(67,97,238,0.1) 0%, rgba(114,9,183,0.1) 100%);
            position: relative;
            overflow: hidden;
        }
        
        body.dark-mode .hero {
            background: linear-gradient(135deg, rgba(67,97,238,0.2) 0%, rgba(114,9,183,0.2) 100%);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle, transparent 20%, var(--bg-light) 70%);
            animation: rotate 20s linear infinite;
            z-index: 0;
        }
        
        body.dark-mode .hero::before {
            background: radial-gradient(circle, transparent 20%, var(--bg-dark) 70%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            padding: 2rem 0;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--btn-primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform var(--transition-speed), background-color var(--transition-speed);
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }
        
        .btn:hover {
            background-color: var(--btn-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .btn:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .hero-image {
            position: relative;
            animation: float 4s ease-in-out infinite;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--primary-color);
            opacity: 0.2;
            filter: blur(40px);
            z-index: -1;
            animation: pulse 4s ease-in-out infinite;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
      
        .features {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: var(--card-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        
        body.dark-mode .feature-card {
            background-color: var(--card-dark);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .feature-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .feature-img {
            height: 200px;
            overflow: hidden;
        }
        
        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-speed);
        }
        
        .feature-card:hover .feature-img img {
            transform: scale(1.05);
        }
        
        .feature-content {
            padding: 1.5rem;
        }
        
        .feature-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        
        .shop {
            padding: 5rem 0;
            background-color: rgba(0,0,0,0.02);
        }
        
        body.dark-mode .shop {
            background-color: rgba(255,255,255,0.02);
        }
        
        .shop-header {
            margin-bottom: 2rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: var(--card-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            position: relative;
        }
        
        body.dark-mode .product-card {
            background-color: var(--card-dark);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .product-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .product-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity var(--transition-speed);
        }
        
        .product-image .hover-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity var(--transition-speed);
        }
        
        .product-card:hover .product-image .hover-img {
            opacity: 1;
        }
        
        .product-card:hover .product-image .main-img {
            opacity: 0;
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--secondary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-content {
            padding: 1.5rem;
        }
        
        .product-title {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .product-price {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .add-to-cart {
            width: 100%;
            padding: 0.7rem;
            background-color: var(--btn-primary);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        
        .add-to-cart:hover {
            background-color: var(--btn-hover);
        }
        
       
        footer {
            background-color: var(--footer-light);
            padding: 4rem 0 2rem;
        }
        
        body.dark-mode footer {
            background-color: var(--footer-dark);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-col h4 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-speed);
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(0,0,0,0.05);
            border-radius: 50%;
            color: inherit;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
        }

        .agb-container {
            padding: 5rem 0;
        }
        
        .agb-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .agb-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .agb-header p {
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }
        
        .agb-content {
            background-color: var(--card-light);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        body.dark-mode .agb-content {
            background-color: var(--card-dark);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .agb-section {
            margin-bottom: 2.5rem;
        }
        
        .agb-section h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(67,97,238,0.2);
        }
        
        .agb-section h3 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--secondary-color);
        }
        
        .agb-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        
        .agb-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .agb-section li {
            margin-bottom: 0.5rem;
            position: relative;
        }
        
        .agb-section li::before {
            content: '';
            position: absolute;
            left: -1.2rem;
            top: 0.7rem;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }
        
        .highlight-box {
            background-color: rgba(67,97,238,0.05);
            border-left: 3px solid var(--primary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        body.dark-mode .highlight-box {
            background-color: rgba(67,97,238,0.1);
        }
        
        .highlight-box p {
            margin-bottom: 0;
        }
        
        body.dark-mode .social-links a {
            background-color: rgba(255,255,255,0.05);
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.1);
            opacity: 0.7;
        }
        
        body.dark-mode .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
        }

                @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--card-light);
                flex-direction: column;
                align-items: center;
                padding: 6rem 0;
                gap: 2rem;
                transition: transform var(--transition-speed);
                z-index: 999;
            }
            
            body.dark-mode .nav-links {
                background-color: var(--card-dark);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
                z-index: 1000;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .privacy-header h1 {
                font-size: 2.2rem;
            }
            
            .privacy-content {
                padding: 2rem 1.5rem;
            }
            
            .privacy-section h2 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 480px) {
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .privacy-section h2 {
                font-size: 1.4rem;
            }
        }

         .privacy-header {
            text-align: center;
            padding: 5rem 0 3rem;
            position: relative;
        }
        
        .privacy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .privacy-header p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            opacity: 0.8;
        }
        
        .privacy-content {
            max-width: 900px;
            margin: 0 auto 5rem;
            background-color: var(--card-light);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        body.dark-mode .privacy-content {
            background-color: var(--card-dark);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .privacy-section {
            margin-bottom: 3rem;
        }
        
        .privacy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .privacy-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .privacy-section h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--secondary-color);
        }
        
        .privacy-section p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .privacy-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .privacy-section li {
            margin-bottom: 0.7rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .privacy-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .back-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            background-color: var(--btn-primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform var(--transition-speed), background-color var(--transition-speed);
            margin-top: 1.5rem;
        }
        
        .back-btn i {
            margin-right: 8px;
        }
        
        .back-btn:hover {
            background-color: var(--btn-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .back-btn:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

                /* ===== ÜBER UNS HEADER ===== */
        .about-header {
            text-align: center;
            padding: 5rem 0 3rem;
            position: relative;
            background: linear-gradient(135deg, rgba(67,97,238,0.1) 0%, rgba(114,9,183,0.1) 100%);
        }
        
        body.dark-mode .about-header {
            background: linear-gradient(135deg, rgba(67,97,238,0.2) 0%, rgba(114,9,183,0.2) 100%);
        }
        
        .about-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            animation: fadeInUp 1s ease;
        }
        
        .about-header p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        /* ===== ÜBER UNS INHALT ===== */
        .about-mission {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .mission-content {
            animation: fadeInLeft 1s ease;
        }
        
        .mission-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            animation: fadeInRight 1s ease;
        }
        
        body.dark-mode .mission-image {
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform var(--transition-speed);
        }
        
        .mission-image:hover img {
            transform: scale(1.05);
        }
        
        /* ===== GESCHICHTE ===== */
        .history {
            padding: 5rem 0;
            background-color: rgba(0,0,0,0.02);
        }
        
        body.dark-mode .history {
            background-color: rgba(255,255,255,0.02);
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            animation: fadeInUp 0.6s ease;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 70px;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 70px;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border: 4px solid var(--bg-light);
            top: 32px;
            border-radius: 50%;
            z-index: 1;
        }
        
        body.dark-mode .timeline-item::after {
            border: 4px solid var(--bg-dark);
        }
        
        .timeline-item:nth-child(odd)::after {
            right: -12px;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -12px;
        }
        
        .timeline-content {
            background-color: var(--card-light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        body.dark-mode .timeline-content {
            background-color: var(--card-dark);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .timeline-year {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        /* ===== TEAM ===== */
        .team {
            padding: 5rem 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .team-member {
            background-color: var(--card-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            animation: fadeInUp 0.6s ease;
        }
        
        body.dark-mode .team-member {
            background-color: var(--card-dark);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .team-member:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-speed);
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .member-name {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .member-position {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(0,0,0,0.05);
            border-radius: 50%;
            color: inherit;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
        }
        
        body.dark-mode .social-links a {
            background-color: rgba(255,255,255,0.05);
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* ===== WERTE ===== */
        .values {
            padding: 5rem 0;
            background-color: rgba(0,0,0,0.02);
        }
        
        body.dark-mode .values {
            background-color: rgba(255,255,255,0.02);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            background-color: var(--card-light);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed);
            animation: fadeInUp 0.6s ease;
        }
        
        body.dark-mode .value-card {
            background-color: var(--card-dark);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .value-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* ===== CALL TO ACTION ===== */
        .cta {
            padding: 5rem 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(67,97,238,0.1) 0%, rgba(114,9,183,0.1) 100%);
        }
        
        body.dark-mode .cta {
            background: linear-gradient(135deg, rgba(67,97,238,0.2) 0%, rgba(114,9,183,0.2) 100%);
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 2rem;
            background-color: var(--btn-primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform var(--transition-speed), background-color var(--transition-speed);
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: var(--btn-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .btn:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
                .shop {
            padding: 6rem 0;
            position: relative;
        }
        
        .shop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
            z-index: -1;
        }
        
        .shop-header {
            margin-bottom: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .categories {
            display: flex;
            gap: 1rem;
        }
        
        .category-btn {
            padding: 0.7rem 1.5rem;
            background: rgba(30, 30, 46, 0.6);
            border: 1px solid rgba(138, 43, 226, 0.3);
            border-radius: 30px;
            cursor: pointer;
            transition: all var(--transition-speed);
            color: var(--text-light);
            font-weight: 600;
        }
        
        .category-btn.active, .category-btn:hover {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-color: transparent;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        
        .product-card {
            background: linear-gradient(145deg, #161622, #1e1e2e);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            position: relative;
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
            border-color: rgba(138, 43, 226, 0.5);
        }
        
        .product-image {
            height: 260px;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity var(--transition-speed);
        }
        
        .product-image .hover-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity var(--transition-speed);
        }
        
        .product-card:hover .product-image .hover-img {
            opacity: 1;
        }
        
        .product-card:hover .product-image .main-img {
            opacity: 0;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            z-index: 2;
        }
        
        .product-content {
            padding: 1.8rem;
        }
        
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        
     
        
        .add-to-cart {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .add-to-cart::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            opacity: 0;
            transition: opacity var(--transition-speed);
            z-index: -1;
        }
        
        .add-to-cart:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        
        .add-to-cart:hover::before {
            opacity: 1;
        }
        
       
        .snowflakes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 100;
            display: var(--snowflakes);
        }
        
        .snowflake {
            position: absolute;
            top: -20px;
            color: var(--snow-color);
            font-size: 1.2rem;
            opacity: 0.8;
            filter: blur(1px);
            animation: snowfall linear infinite;
        }
        
       
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                opacity: 0.2;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.3;
            }
            100% {
                transform: scale(0.95);
                opacity: 0.2;
            }
        }
        
        @keyframes snowfall {
            to {
                transform: translateY(100vh);
            }
        }
        
               @media (max-width: 1100px) {
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero-grid {
                gap: 2rem;
            }
        }
        
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content {
                order: 1;
                margin-top: 3rem;
            }
            
            .hero p {
                margin: 0 auto 2.5rem;
            }
            
            .hero-image {
                max-width: 80%;
                margin: 0 auto;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(10, 10, 18, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 8rem 0;
                gap: 2rem;
                transition: right var(--transition-speed);
                z-index: 999;
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            .shop-header {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
            }
        }
        
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .logo {
                font-size: 1.8rem;
            }
        }
        
          @media (max-width: 992px) {
            .mission-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                text-align: left;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                left: 0;
                padding-left: 70px;
                padding-right: 25px;
                text-align: left;
            }
            
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 21px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--card-light);
                flex-direction: column;
                align-items: center;
                padding: 6rem 0;
                gap: 2rem;
                transition: transform var(--transition-speed);
                z-index: 999;
            }
            
            body.dark-mode .nav-links {
                background-color: var(--card-dark);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
                z-index: 1000;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .about-header h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .feature-card, .product-card {
                max-width: 350px;
                margin: 0 auto;
            }
        }
       
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-image {
                text-align: center;
                max-width: 80%;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--card-light);
                flex-direction: column;
                align-items: center;
                padding: 6rem 0;
                gap: 2rem;
                transition: transform var(--transition-speed);
                z-index: 999;
            }
            
            body.dark-mode .nav-links {
                background-color: var(--card-dark);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
                z-index: 1000;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }