
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Górny pasek */
        .top-bar {
            background: #2c3e50;
            padding: 0.3rem 0;
            font-size: 0.9rem;
            color: white;
        }
        
        .top-bar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .language-selector {
            display: flex;
            gap: 1.5rem;
        }
        
        .language-selector a {
            color: #f39c12;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .contact-top {
            display: flex;
            gap: 1.5rem;
        }
        
        .contact-top a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Nagłówek */
        header {
            background: white;
            color: rgb(31, 69, 132);
            padding: 0.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: rgb(31, 69, 132);
            margin-left: 5px;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2.2rem;
            color: #f39c12;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: #f39c12;
        }
        
        /* Sekcja hero */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('/img/hero1.webp');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 1rem;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: rgb(31, 69, 132);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid rgb(31, 69, 132);
            margin: 10px 10px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: #f39c12;
        }
        
        .btn-outline {
            background-color: transparent;
            color: #f39c12;
        }
        
        .btn-outline:hover {
            background-color: #f39c12;
            color: white;
        }
        
        /* Sekcje ogólne */
        section {
            padding: 5rem 0;
        }
        
        section h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: #2c3e50;
            position: relative;
            font-size: 2.5rem;
        }
        
        section h2:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: #f39c12;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* O nas */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
            padding: 1.5rem;
            background: rgb(31, 69, 132);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #f39c12;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #ffffff;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('/img/about.webp');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Co nas wyróżnia */
        .features-section {
            background-color: #f5f5f5;
            padding: 5rem 0;
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-card i {
            font-size: 3rem;
            color: #f39c12;
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        
        /* Sekcja kategorii produktów */
        .categories-section {
            background-color: white;
            padding: 5rem 0;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .category-item {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-align: center;
            border-left: 4px solid #f39c12;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: #fff;
        }
        
        .category-item h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
            .category-link {
                    text-decoration: none;
                    color: inherit;
        }

        .category-image {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 0.8rem;
        }
        
        /* Sekcja galerii */
        .gallery-section {
            background-color: #f5f5f5;
            padding: 5rem 0;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
            /* Utility: visually hidden but available to screen readers */
            .sr-only {
                position: absolute !important;
                width: 1px !important;
                height: 1px !important;
                padding: 0 !important;
                margin: -1px !important;
                overflow: hidden !important;
                clip: rect(0, 0, 0, 0) !important;
                white-space: nowrap !important;
                border: 0 !important;
            }

            /* Language selector dropdown in top-bar */
            .lang-dropdown{position:relative}
            .lang-toggle{background:transparent;border:1px solid rgba(255,255,255,0.12);color:white;padding:6px 8px;border-radius:4px;display:inline-flex;align-items:center;gap:6px;cursor:pointer}
            .lang-toggle:focus{outline:2px solid #f39c12;outline-offset:2px}
            .lang-toggle .caret{font-size:0.8rem;opacity:0.9}
            .lang-list{position:absolute;right:0;top:calc(100% + 6px);background:white;color:#333;list-style:none;margin:0;padding:6px 0;border-radius:6px;box-shadow:0 6px 18px rgba(0,0,0,0.15);min-width:150px;display:none;z-index:2001}
            /* make the list scrollable for long lists */
            .lang-list{max-height:220px;overflow-y:auto;scroll-behavior:smooth;-webkit-overflow-scrolling:touch}

            /* light custom scrollbar for WebKit/Blink/Edge */
            .lang-list::-webkit-scrollbar{width:10px}
            .lang-list::-webkit-scrollbar-track{background:transparent}
            .lang-list::-webkit-scrollbar-thumb{background:rgba(0,0,0,0.12);border-radius:6px}
            .lang-list::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,0.18)}
            .lang-list[aria-hidden="false"],.lang-list.show{display:block}
            .lang-list li{padding:8px 12px;cursor:pointer}
            .lang-list li[aria-selected="true"]{background:#f0f0f0;font-weight:600}
            .lang-list li:hover,.lang-list li:focus{background:#f7f7f7}

            @media (max-width:600px){
                .lang-toggle{padding:6px 6px}
                .lang-list{min-width:120px}
            }

            /* Compact navbar on small devices: hide logo and reduce paddings */
            @media (max-width:600px){
                header{padding:0.2rem 0}
                .top-bar{padding:0.1rem 0}
                .logo{display:none}
                nav ul li a{padding:4px 6px;font-size:0.95rem}
                .header-container{align-items:center}
                /* hide contact items to save space on mobile */
                .contact-top{display:none}
            }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 250px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(44, 62, 80, 0.85);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-caption h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: #f39c12;
        }
        
        .modal-caption {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            padding: 10px;
            background-color: rgba(0,0,0,0.7);
        }
        
        /* Kontakt */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-info h3 {
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        
        .contact-details {
            margin-bottom: 1.5rem;
        }
        
        .contact-details p {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .contact-details i {
            margin-right: 10px;
            color: #f39c12;
            font-size: 1.2rem;
            width: 25px;
        }
        
        .map-container {
            margin-top: 2rem;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form h3 {
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #f39c12;
            outline: none;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            padding: 1rem 2rem;
            background-color: #f39c12;
            color: #2c3e50;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1.1rem;
            font-weight: bold;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #e67e22;
        }
        
        /* Stopka */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #f39c12;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #f39c12;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #f39c12;
            color: white;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .made-in-poland {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            font-weight: bold;
        }
        
        /* Responsywność */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .top-bar-container {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            section h2 {
                font-size: 2rem;
            }
            
            .about-content, .contact-container {
                flex-direction: column;
            }
            
            .about-image {
                height: 300px;
            }
            
            .gallery-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
