* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Garamond', 'Times New Roman', serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3 {
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3rem;
            text-align: center;
            letter-spacing: 2px;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #c9a961;
        }
        
        h3 {
            font-size: 1.8rem;
            text-align: center;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        a {
            color: #8b4513;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #c9a961;
        }
        
        button {
            background-color: #c9a961;
            color: #1a1a1a;
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Garamond', 'Times New Roman', serif;
        }
        
        button:hover {
            background-color: #8b4513;
            color: #f5f5f5;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #1a1a1a;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: #c9a961;
            letter-spacing: 3px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #f5f5f5;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        
        .nav-links a:hover {
            color: #c9a961;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }
        
        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #f5f5f5;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            padding: 180px 0 100px;
            text-align: center;
            background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../img/05.webp') no-repeat center center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: #f5f5f5;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            color: #f5f5f5;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            margin-top: 20px;
            padding: 15px 40px;
            font-size: 1.2rem;
            background-color: #c9a961;
            color: #1a1a1a;
            border: 2px solid #c9a961;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: #c9a961;
        }
        
        .about {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 5px solid #c9a961;
        }
        
        .products {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #f5f5f5;
        }
        
        .products h2 {
            color: #f5f5f5;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .product-card {
            background-color: #f5f5f5;
            color: #1a1a1a;
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #c9a961;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(201, 169, 97, 0.3);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
        }
        
        .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: 30px;
        }
        
        .product-info h3 {
            margin-bottom: 15px;
            color: #8b4513;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .price-card {
            background-color: #1a1a1a;
            color: #f5f5f5;
            border: 2px solid #c9a961;
            border-radius: 5px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
        }
        
        .price-card.featured::before {
            content: "Najbolj priljubljeno";
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: #c9a961;
            color: #1a1a1a;
            padding: 5px 30px;
            font-weight: 600;
            transform: rotate(45deg);
            font-size: 0.9rem;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-card h3 {
            margin-bottom: 20px;
            color: #c9a961;
        }
        
        .price {
            font-size: 3rem;
            color: #c9a961;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }
        
        .price-card li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }
        
        .price-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #c9a961;
            font-weight: bold;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #f5f5f5;
        }
        
        .gallery h2 {
            color: #f5f5f5;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 60px;
        }
        
        .gallery-item {
            height: 300px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            border: 3px solid #c9a961;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 26, 26, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: #c9a961;
            font-weight: 600;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .feedback-slider {
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 40px;
            background-color: #1a1a1a;
            color: #f5f5f5;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #c9a961;
        }
        
        .feedback-content {
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }
        
        .feedback-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid #c9a961;
        }
        
        .feedback-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-text {
            flex: 1;
        }
        
        .feedback-text h3 {
            margin-bottom: 5px;
            color: #c9a961;
            text-align: left;
        }
        
        .feedback-text .position {
            color: #f5f5f5;
            margin-bottom: 20px;
            font-size: 1rem;
            text-align: left;
        }
        
        .feedback-text p {
            font-style: italic;
            font-size: 1.1rem;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .feedback-btn {
            background-color: #1a1a1a;
            color: #c9a961;
            border: 2px solid #c9a961;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }
        
        .feedback-btn:hover {
            background-color: #c9a961;
            color: #1a1a1a;
        }
        
        .faq {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #f5f5f5;
        }
        
        .faq h2 {
            color: #f5f5f5;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 60px;
        }
        
        .faq-item {
            background-color: #f5f5f5;
            color: #1a1a1a;
            border-radius: 5px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid #c9a961;
        }
        
        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            background-color: #1a1a1a;
            color: #f5f5f5;
        }
        
        .faq-question:hover {
            background-color: #333;
        }
        
        .faq-question h3 {
            margin-bottom: 0;
            font-size: 1.3rem;
            text-align: left;
            color: #c9a961;
        }
        
        .faq-icon {
            font-size: 1.8rem;
            transition: transform 0.3s ease;
            color: #c9a961;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #f5f5f5;
            color: #1a1a1a;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        .contact {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background-color: #1a1a1a;
            padding: 50px;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 2px solid #c9a961;
            color: #f5f5f5;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #c9a961;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: #f5f5f5;
            border: 1px solid #c9a961;
            border-radius: 0;
            color: #1a1a1a;
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
            font-family: 'Garamond', 'Times New Roman', serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8b4513;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px;
            background-color: #c9a961;
            color: #1a1a1a;
            border: none;
            border-radius: 0;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Garamond', 'Times New Roman', serif;
        }
        
        .submit-btn:hover {
            background-color: #8b4513;
            color: #f5f5f5;
        }
        
        footer {
            background-color: #1a1a1a;
            padding: 80px 0 30px;
            border-top: 3px solid #c9a961;
            color: #f5f5f5;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: #c9a961;
            text-align: left;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #f5f5f5;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #c9a961;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 1rem;
            color: #999;
        }
        
        .disclaimer {
            background-color: #1a1a1a;
            color: #f5f5f5;
            padding: 30px;
            border-radius: 5px;
            margin: 60px 0;
            font-size: 1rem;
            text-align: center;
            border: 1px solid #c9a961;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background-color: #1a1a1a;
            border: 2px solid #c9a961;
            border-radius: 5px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            color: #f5f5f5;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 30px;
            font-size: 1.1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 12px 25px;
            border-radius: 0;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Garamond', 'Times New Roman', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background-color: #c9a961;
            color: #1a1a1a;
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #8b4513;
            color: #f5f5f5;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #f5f5f5;
            border: 1px solid #c9a961;
        }
        
        .cookie-decline:hover {
            background-color: #c9a961;
            color: #1a1a1a;
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            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: #f5f5f5;
            border-radius: 5px;
            padding: 50px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            border: 3px solid #c9a961;
            color: #1a1a1a;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #8b4513;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .popup-close:hover {
            color: #1a1a1a;
        }
        
        .popup h3 {
            color: #8b4513;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .popup p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .popup button {
            background-color: #c9a961;
            color: #1a1a1a;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Garamond', 'Times New Roman', serif;
        }
        
        .popup button:hover {
            background-color: #8b4513;
            color: #f5f5f5;
        }
        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 140px 0 80px;
            }
            
            .feedback-content {
                flex-direction: column;
                text-align: center;
            }
            
            .feedback-avatar {
                margin: 0 auto;
            }
            
            .feedback-text h3,
            .feedback-text .position {
                text-align: center;
            }
            
            .cookie-banner {
                left: 15px;
                right: 15px;
                bottom: 15px;
                padding: 20px;
            }
        }

