@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

        :root {
            --primary-color: #5d3a95; /* Fialová */
            --secondary-color: #e5c3a6; /* Púdrovo ružová */
            --accent-color: #f7a233; /* Oranžová */
            --dark-color: #333;
            --light-color: #f4f4f9;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            background-color: var(--light-color);
            color: var(--dark-color);
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: #fff;
            padding: 1rem 2rem;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #d1872a;
            transform: translateY(-3px);
        }

        .section-padding {
            padding: 6rem 0;
        }

        header {
            background-color: #fff;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        header .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            font-weight: bold;
            text-transform: uppercase;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #fff;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 2rem 0;
            }

            .burger-menu {
                display: flex;
            }
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding-top: 6rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(93, 58, 149, 0.7), rgba(121, 88, 172, 0.7)), url(../img/09.webp) no-repeat center center/cover;
            z-index: -1;
            animation: parallax-bg 30s infinite alternate;
        }

        @keyframes parallax-bg {
            from {
                transform: translateY(-20%);
            }
            to {
                transform: translateY(20%);
            }
        }

        .hero-content {
            z-index: 1;
            opacity: 0;
            animation: fadeIn 1s forwards 0.5s;
        }
        
        .hero h1 {
            color: #fff;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .about {
            background-color: #fff;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about img {
            max-width: 50%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about .text-content {
            flex: 1;
        }
        
        @media (max-width: 768px) {
            .about {
                flex-direction: column;
                text-align: center;
            }
            .about img {
                max-width: 100%;
            }
        }

        .products {
            background-color: var(--light-color);
        }

        .products .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background-color: #fff;
            padding: 2rem;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card img {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .prices {
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }

        .prices h2 {
            color: var(--dark-color);
        }
        
        .prices .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .price-card {
            background-color: #fff;
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .price-card:hover {
            border-color: var(--primary-color);
        }

        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--accent-color);
        }

        .price-card h3 {
            color: var(--primary-color);
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin: 1rem 0;
        }
        
        .price-card .price span {
            font-size: 1rem;
            font-weight: normal;
            color: #777;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 992px) {
            .prices .price-grid {
                grid-template-columns: 1fr;
            }
        }

        .gallery {
            background-color: #fff;
        }

        .gallery .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            opacity: 0;
            animation: fadeIn 1s forwards;
        }
        
        .feedback {
            background-color: var(--primary-color);
            color: #fff;
        }

        .feedback h2 {
            color: #fff;
        }
        
        .feedback .slider-container {
            overflow: hidden;
            position: relative;
        }
        
        .feedback .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .feedback .slide {
            min-width: 100%;
            text-align: center;
            padding: 2rem;
        }
        
        .feedback .slide blockquote {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .feedback .slide .author {
            font-weight: bold;
        }
        
        .faq {
            background-color: var(--light-color);
        }
        
        .faq .faq-item {
            border-bottom: 1px solid #ccc;
            padding: 1.5rem 0;
        }
        
        .faq .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
        }
        
        .faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            padding-top: 0.5rem;
        }
        
        .faq .faq-answer.open {
            max-height: 200px;
        }

        .contact-form {
            background-color: #fff;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .contact-form label {
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .contact-form input {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .contact-form .btn {
            align-self: flex-start;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer .footer-links a,
        .footer .footer-links span {
            color: #fff;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .footer .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            .footer .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(51, 51, 51, 0.95);
            color: #fff;
            padding: 1.5rem 2rem;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            z-index: 2000;
            display: none;
        }
        
        .cookie-banner.show {
            display: block;
        }

        .cookie-banner p {
            margin: 0 0 1rem;
        }

        .cookie-banner .btn {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 0.7rem 1.5rem;
        }
        
        .cookie-banner .btn:hover {
            background-color: var(--accent-color);
        }

        .disclaimer {
            background-color: #f0f0f0;
            color: #666;
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 3000;
        }

        .popup-content {
            background-color: #fff;
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #999;
        }

        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            opacity: 0;
        }

