body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background: url('Photo/Fondlyasaqta.jpg');
            background-size: cover;
            background-attachment: fixed;
        }

        .user-section-container {
            position: fixed;
            top: 20px;
            right: 90px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        @media (max-width: 768px) {
            .user-section-container {
                position: relative;
                top: auto;
                right: auto;
                margin-top: 10px;
                margin-bottom: 10px;
                justify-content: center;
                width: 100%;
            }
            
            .cart-button {
                position: relative;
                top: auto;
                right: auto;
                margin: 10px auto;
            }
            
            .header-container {
                flex-direction: column;
                align-items: center;
            }
            
            #userSection {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            #userSection {
                padding: 6px;
                border-radius: 25px;
            }
            
            #userSection .nav-button {
                margin: 3px;
                font-size: 12px;
                padding: 5px 8px;
            }
            
            #loginButton {
                font-size: 12px;
                padding: 6px 10px;
            }
        }
        
        .header-container {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            margin: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .social-buttons {
            display: flex;
            align-items: center;
            margin-left: 15px;
        }

        .social-buttons a {
            margin: 0 5px;
        }

        .nav-buttons a {
            margin: 0 5px;
        }

        .nav-button {
            cursor: pointer;
            background-color: darkblue;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 50px;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
        }

        .hero-section {
            text-align: center;
            padding: 60px 20px;
            background-color: rgba(255, 255, 255, 0.8);
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-section h1 {
            font-size: 2.5rem;
            color: darkblue;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .cta-button {
            background-color: darkblue;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: #00008b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .features-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 40px 20px;
            margin: 20px;
        }

        .feature-card {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h3 {
            color: darkblue;
            margin-bottom: 15px;
        }

        .feature-card p {
            line-height: 1.5;
        }

        .products-section {
            padding: 40px 20px;
            margin: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
        }

        .products-section h2 {
            text-align: center;
            color: darkblue;
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            background-color: #f8f8f8;
            padding: 15px;
        }

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .product-price {
            color: darkblue;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .product-button {
            background-color: darkblue;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
            text-decoration: none;
        }

        .product-button:hover {
            background-color: #00008b;
        }

        footer {
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        /* Стили для кнопки корзины */
        .cart-button {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .cart-button:hover {
            transform: scale(1.05);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #ff6b6b;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4caf50;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1003;
            display: none;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .social-buttons,
            .nav-buttons {
                margin-left: 0;
                margin-top: 10px;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
