:root {
            --primary-color: #5d4037;
            --secondary-color: #8d6e63;
            --accent-color: #d7ccc8;
            --light-color: #f5f5f5;
            --dark-color: #3e2723;
            --gold-color: #d4af37;
            --text-color: #424242;
            --shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', Georgia, serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            color: var(--light-color);
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--gold-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 1.5rem;
        }
        
        .nav-menu a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .nav-menu a:hover {
            color: var(--gold-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--light-color);
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(61, 39, 35, 0.7), rgba(61, 39, 35, 0.7)), url('../img/05.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--light-color);
            padding-top: 80px;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212, 175, 55, 0.1)" stroke-width="1"/></svg>');
            pointer-events: none;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1.5s ease;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--gold-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--gold-color);
            color: var(--dark-color);
            text-decoration: none;
            border-radius: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Playfair Display', Georgia, serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--gold-color);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--gold-color);
            transform: translateY(-2px);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--gold-color);
        }
        
        /* About Section */
        .about {
            background-color: #fff;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--primary-color));
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: var(--shadow);
            border: 8px solid #fff;
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 1px solid var(--accent-color);
            z-index: -1;
        }
        
        /* Products Section */
        .products {
            background-color: var(--light-color);
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--primary-color), var(--gold-color));
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .product-card {
            background-color: #fff;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background-color: var(--gold-color);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 1.8rem;
        }
        
        .product-info h3 {
            font-size: 1.7rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        /* Prices Section */
        .prices {
            background-color: #fff;
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--primary-color));
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .price-card {
            background-color: var(--light-color);
            border-radius: 4px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--accent-color);
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--gold-color);
        }
        
        .price-card.featured::before {
            content: 'Aanbevolen';
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--gold-color);
            color: var(--dark-color);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
            font-family: 'Playfair Display', Georgia, serif;
            text-transform: uppercase;
        }
        
        .price-card h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .price {
            font-size: 2.8rem;
            color: var(--gold-color);
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .price-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light-color);
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--primary-color), var(--gold-color));
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Feedback Section */
        .feedback {
            background-color: #fff;
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--primary-color));
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding: 0 2rem;
        }
        
        .feedback-item p::before,
        .feedback-item p::after {
            content: '"';
            font-size: 3rem;
            color: var(--gold-color);
            position: absolute;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .feedback-item p::before {
            top: -1rem;
            left: -1rem;
        }
        
        .feedback-item p::after {
            bottom: -2rem;
            right: -1rem;
        }
        
        .feedback-author {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.2rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }
        
        .feedback-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            border: 2px solid var(--gold-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .feedback-btn:hover {
            background-color: var(--gold-color);
            color: var(--dark-color);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-color);
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--primary-color));
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background-color: #fff;
        }
        
        .faq-question {
            background-color: var(--primary-color);
            color: white;
            padding: 1.2rem 1.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.8rem;
            color: var(--gold-color);
        }
        
        .faq-question.active::after {
            content: '−';
        }
        
        .faq-answer {
            background-color: white;
            padding: 0 1.8rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 1.8rem;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact {
            background-color: #fff;
            padding: 80px 0;
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--primary-color));
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.8rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--primary-color);
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.1rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--accent-color);
            border-radius: 2px;
            font-family: 'Crimson Text', Georgia, serif;
            font-size: 1.1rem;
            background-color: var(--light-color);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 3rem 0 1rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--accent-color), var(--gold-color));
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--gold-color);
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--gold-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
            font-family: 'Crimson Text', Georgia, serif;
        }
        
        .footer-links a:hover {
            color: var(--gold-color);
        }
        
        .footer-contact p {
            margin-bottom: 0.8rem;
            font-family: 'Crimson Text', Georgia, serif;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            font-family: 'Crimson Text', Georgia, serif;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(93, 64, 55, 0.05);
            padding: 1.8rem;
            margin-top: 2rem;
            border-radius: 4px;
            font-size: 0.95rem;
            color: #666;
            border-left: 4px solid var(--gold-color);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 1.8rem 0;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 3px solid var(--gold-color);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            font-family: 'Crimson Text', Georgia, serif;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 10px 25px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Playfair Display', Georgia, serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background-color: var(--gold-color);
            color: var(--dark-color);
        }
        
        .cookie-accept:hover {
            background-color: transparent;
            color: var(--gold-color);
            border: 2px solid var(--gold-color);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--light-color);
            border: 2px solid var(--light-color);
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            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: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 4px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            border: 2px solid var(--gold-color);
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', Georgia, serif;
        }
        
        .modal-close {
            margin-top: 1.8rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 2rem;
                transition: left 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }

