* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {background-color: #f5f5f5;
            color: #212121;
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        h1, h2, h3 {
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: #212121;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #c10000;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #c10000;
            padding-left: 10px;
            margin-top: 30px;
        }
        
        h3 {
            font-size: 1.3rem;
            margin-top: 25px;
        }
        
        p, ul {
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            font-style: italic;
            margin-bottom: 30px;
            color: #666;
        }
        
        @media (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
/* Reset a základní styly */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {background-color: #f5f5f5;
            color: #212121;
            line-height: 1.6;
            padding-top: 80px;}
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        /* Konstruktivistický styl */
        h1, h2, h3, h4 {
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #c10000;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 2rem;
            color: #212121;
            margin-bottom: 15px;
            border-left: 5px solid #c10000;
            padding-left: 10px;
        }
        
        h3 {
            font-size: 1.5rem;
            color: #212121;
            margin-bottom: 10px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #212121;
            color: #fff;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffeb3b;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 20px;
        }
        
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #ffeb3b;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero sekce */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/6295780/pexels-photo-6295780.jpeg?_gl=1*1w32x2t*_ga*MTczODg1NDUxNi4xNzU0ODQ0MzY5*_ga_8JE65Q40S6*czE3NTcwOTk3OTgkbzIkZzEkdDE3NTcwOTk4OTQkajI5JGwwJGgw');
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #c10000;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #a00000;
        }
        
        /* Sekce */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        /* About */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        /* Prices */
        .prices-container {
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .price-table th, .price-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .price-table th {
            background-color: #f5f5f5;
            font-weight: bold;
        }
        
        .price-table tr:last-child td {
            border-bottom: none;
        }
        
        .discount {
            color: #c10000;
            font-weight: bold;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            flex: 0 0 100%;
            padding: 20px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 0 15px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-btn {
            background-color: #c10000;
            color: #fff;
            border: none;
            padding: 10px 15px;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-btn:hover {
            background-color: #a00000;
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px 20px;
            background-color: #212121;
            color: #fff;
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            transition: transform 0.3s;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-question.active + .faq-answer {
            padding: 15px 20px;
            max-height: 1000px;
        }
        
        /* Contact */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #212121;
            color: #fff;
            padding: 20px;
            font-size: 0.8rem;
            margin-top: 50px;
        }
        
        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #212121;
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-btn {
            background-color: #ffeb3b;
            color: #212121;
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background-color: #212121;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            color: #ffeb3b;
            margin-bottom: 20px;
            border-bottom: 2px solid #c10000;
            padding-bottom: 10px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col a:hover {
            color: #ffeb3b;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                height: calc(100vh - 80px);
                width: 100%;
                flex-direction: column;
                background-color: #212121;
                transition: right 0.5s ease;
                padding: 50px 0;
                text-align: center;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .hero {
                padding: 60px 20px;
            }
        }

