* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: #f5e6d3;
            color: #2a2a2a;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 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="%23f5e6d3"/><path d="M0 0L100 100M100 0L0 100" stroke="%23d4b896" stroke-width="0.5"/></svg>');
            opacity: 0.3;
            z-index: -1;
            pointer-events: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(245, 230, 211, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border-bottom: 2px solid #d4b896;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #8b4513;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #2a2a2a;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background-color: #8b4513;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #8b4513;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #2a2a2a;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(245, 230, 211, 0.9), rgba(212, 184, 150, 0.8)), url('../img/22.webp');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: #2a2a2a;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.1) 0%, rgba(245, 230, 211, 0) 70%);
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            padding: 30px;
            background-color: rgba(245, 230, 211, 0.7);
            border: 2px solid #8b4513;
            box-shadow: 0 0 30px rgba(139, 69, 19, 0.2);
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: bold;
            position: relative;
            display: inline-block;
        }
        
        .hero h1::before, .hero h1::after {
            content: '◆';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #8b4513;
            font-size: 24px;
        }
        
        .hero h1::before {
            left: -40px;
        }
        
        .hero h1::after {
            right: -40px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #2a2a2a;
            font-weight: bold;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: #8b4513;
            color: #f5e6d3;
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: 2px solid #8b4513;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f5e6d3;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover {
            color: #8b4513;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
        }
        
        .btn:hover::before {
            transform: translateX(0);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #f5e6d3;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: #8b4513;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #8b4513;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            flex: 1;
            padding: 30px;
            background-color: rgba(212, 184, 150, 0.3);
            border: 1px solid #d4b896;
            position: relative;
        }
        
        .about-text::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid #8b4513;
            z-index: -1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #2a2a2a;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #8b4513;
        }
        
        .about-image img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: #d4b896;
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #f5e6d3;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #8b4513;
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid rgba(139, 69, 19, 0.3);
            z-index: 0;
            pointer-events: none;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
        }
        
        .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-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(245, 230, 211, 0.7), transparent);
        }
        
        .product-info {
            padding: 25px;
            position: relative;
            z-index: 1;
        }
        
        .product-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            margin-bottom: 20px;
            color: #2a2a2a;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: #f5e6d3;
            position: relative;
        }
        
        .prices::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #f5e6d3;
            border-radius: 0;
            padding: 35px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #8b4513;
            position: relative;
        }
        
        .price-card.featured {
            background-color: #d4b896;
            transform: scale(1.05);
        }
        
        .price-card.featured::before {
            content: 'NAJBOLJ POPULAREN';
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #8b4513;
            color: #f5e6d3;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-card h3 {
            font-size: 26px;
            margin-bottom: 20px;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price {
            font-size: 42px;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .price::after {
            content: '€';
            position: absolute;
            top: 0;
            right: -25px;
            font-size: 24px;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }
        
        .price-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(139, 69, 19, 0.2);
            color: #2a2a2a;
            position: relative;
            padding-left: 25px;
        }
        
        .price-features li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #8b4513;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: #d4b896;
            position: relative;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            border: 2px solid #8b4513;
        }
        
        .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;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(245, 230, 211, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: #f5e6d3;
            position: relative;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .feedback-text {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 25px;
            color: #2a2a2a;
            line-height: 1.8;
            position: relative;
            padding: 0 30px;
        }
        
        .feedback-text::before,
        .feedback-text::after {
            content: '"';
            font-size: 60px;
            position: absolute;
            color: rgba(139, 69, 19, 0.3);
        }
        
        .feedback-text::before {
            top: -20px;
            left: 0;
        }
        
        .feedback-text::after {
            bottom: -40px;
            right: 0;
        }
        
        .feedback-author {
            font-weight: bold;
            color: #8b4513;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .feedback-btn {
            width: 50px;
            height: 50px;
            border-radius: 0;
            background-color: transparent;
            border: 2px solid #8b4513;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #8b4513;
        }
        
        .feedback-btn:hover {
            background-color: #8b4513;
            color: #f5e6d3;
            transform: scale(1.1);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #d4b896;
            position: relative;
        }
        
        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #f5e6d3;
            border-radius: 0;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid #8b4513;
        }
        
        .faq-question {
            padding: 20px 25px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #8b4513;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #8b4513;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #2a2a2a;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: #f5e6d3;
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b4513, transparent);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #f5e6d3;
            padding: 40px;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #8b4513;
            position: relative;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid rgba(139, 69, 19, 0.3);
            z-index: 0;
            pointer-events: none;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: transparent;
            border: 2px solid #8b4513;
            border-radius: 0;
            font-size: 16px;
            color: #2a2a2a;
            transition: all 0.3s ease;
            font-family: 'Courier New', monospace;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8b4513;
            box-shadow: 0 0 10px rgba(139, 69, 19, 0.2);
        }
        
        .form-group textarea {
            height: 150px;
            resize: none;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #8b4513;
            color: #f5e6d3;
            padding: 25px 0;
            text-align: center;
            font-size: 14px;
            border-top: 1px solid rgba(245, 230, 211, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: #2a2a2a;
            color: #f5e6d3;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #d4b896;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #d4b896;
            bottom: 0;
            left: 0;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: #f5e6d3;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #f5e6d3;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #d4b896;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(245, 230, 211, 0.1);
            font-size: 14px;
            color: #d4b896;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #2a2a2a;
            color: #f5e6d3;
            padding: 25px 0;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 2px solid #8b4513;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
            color: #f5e6d3;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 10px 25px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background-color: #8b4513;
            color: #f5e6d3;
            border: 2px solid #8b4513;
        }
        
        .cookie-accept:hover {
            background-color: transparent;
            color: #8b4513;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #f5e6d3;
            border: 2px solid #f5e6d3;
        }
        
        .cookie-decline:hover {
            background-color: rgba(245, 230, 211, 0.1);
        }
        
        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #f5e6d3;
            padding: 40px;
            border-radius: 0;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            border: 2px solid #8b4513;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .popup p {
            margin-bottom: 30px;
            color: #2a2a2a;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #2a2a2a;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            background-color: transparent;
            border: 1px solid #2a2a2a;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            background-color: #8b4513;
            color: #f5e6d3;
            border-color: #8b4513;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #f5e6d3;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                z-index: 999;
                border-top: 2px solid #8b4513;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero h1::before, .hero h1::after {
                display: none;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
        }

