:root {
            --primary: #9C89B8;
            --secondary: #F0E6EF;
            --accent: #B8BEDD;
            --text: #2D3047;
            --light: #FDFFFC;
            --shadow: rgba(156, 137, 184, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 50%, var(--accent) 100%);
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--light);
            box-shadow: 0 2px 20px var(--shadow);
            z-index: 1000;
            padding: 1rem 2rem;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background: var(--text);
            margin: 5px;
            transition: all 0.3s;
        }

        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('https://images.pexels.com/photos/6295793/pexels-photo-6295793.jpeg?_gl=1*19e6eby*_ga*MTczODg1NDUxNi4xNzU0ODQ0MzY5*_ga_8JE65Q40S6*czE3NTcwOTk3OTgkbzIkZzEkdDE3NTcwOTk5MjckajU5JGwwJGgw') center/cover;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.7);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--text);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 25px;
            transition: transform 0.3s;
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .about, .products, .prices, .gallery, .feedback, .faq, .contact {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s;
        }

        .visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
            text-align: center;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }

        .price-table th, .price-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--accent);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }

        .slides {
            display: flex;
            transition: transform 0.5s;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            background: var(--light);
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
        }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 1rem;
        }

        .faq-question {
            font-weight: bold;
            cursor: pointer;
        }

        form {
            display: grid;
            gap: 1rem;
            max-width: 500px;
            margin: 2rem auto 0;
        }

        input, textarea {
            padding: 1rem;
            border: 1px solid var(--accent);
            border-radius: 10px;
            font-family: inherit;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--text);
            color: var(--light);
            padding: 1rem 2rem;
            display: none;
            justify-content: space-between;
            align-items: center;
        }

        footer {
            background: var(--text);
            color: var(--light);
            padding: 3rem 2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                right: 0;
                top: 100%;
                background: var(--light);
                flex-direction: column;
                width: 100%;
                text-align: center;
                transform: translateY(0%);
                opacity: 0;
                transition: all 0.5s;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }

            .burger {
                display: block;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }
        }

