:root {
    --primary-blue: #0b407a;
    --accent-blue: #29aae1;
    --brand-orange: #ea902d;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --dark-text: #2c3e50;
    --gray-text: #666;
    --footer-bg: #000000;
    --font-main: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-main); 
    color: var(--dark-text); 
    line-height: 1.6; 
    background-color: var(--white); 
    overflow-x: hidden; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- HEADER --- */
header { width: 100%; position: relative; z-index: 1001; }

.top-bar { 
    background-color: var(--white); 
    border-bottom: 1px solid #eee; 
    padding: 10px 0; 
    font-size: 0.85rem; 
    color: var(--primary-blue); 
    position: relative; 
    z-index: 1002; 
}

.top-bar-container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; }
.top-info-item i { margin-right: 8px; color: var(--accent-blue); }
.top-bar-right .social-icon { color: var(--primary-blue); font-size: 1rem; transition: 0.3s; }
.top-bar-right .social-icon:hover { color: var(--brand-orange); }

/* --- MAIN NAV --- */
.main-nav { 
    background-color: var(--white); 
    padding: 15px 0; 
    /* Zmiana na sticky - dzięki temu pasek z telefonem będzie widoczny NAD menu */
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--primary-blue); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; position: relative; padding: 5px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-orange); }

/* Pasek pod linkiem (tylko dla głównych elementów, nie dla dropdowna) */
.nav-links > li > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--brand-orange); transition: 0.3s; }
.nav-links > li > a:hover::after { width: 100%; }

/* --- DROPDOWN MENU (Style podstawowe) --- */

/* Wrapper dla tekstu i strzałki */
.nav-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Przycisk rozwijania (strzałka) - domyślnie styl dla mobile */
.dropdown-btn {
    padding: 10px 20px;
    cursor: pointer;
    color: var(--brand-orange);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

/* Kontener podmenu */
.dropdown-content {
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 3px solid var(--brand-orange);
    border-radius: 0 0 5px 5px;
}

/* Linki w podmenu */
.dropdown-content li a {
    color: var(--dark-text);
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none; /* Reset uppercase */
    transition: 0.3s;
}

.dropdown-content li a:hover {
    background-color: #f4f4f4;
    color: var(--primary-blue);
    padding-left: 25px;
}
/* Usuwamy pasek podkreślenia dla linków w dropdownie */
.dropdown-content li a::after { display: none; }


/* --- HEADER ACTIONS --- */
.mobile-lang-item { display: none; } /* Domyślnie ukryte */

.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-order { padding: 10px 25px; background: var(--brand-orange); color: white; border-radius: 50px; font-weight: 700; font-size: 0.85rem; box-shadow: 0 4px 15px rgba(234, 144, 45, 0.3); }
.btn-order:hover { background: #d37e22; transform: translateY(-2px); }
.lang-switch button { background: none; border: none; cursor: pointer; font-weight: 600; color: #ccc; }
.lang-switch button.active { color: var(--primary-blue); }
.burger { display: none; font-size: 1.5rem; color: var(--primary-blue); cursor: pointer; }


/* --- HERO SLIDER --- */
.hero { height: calc(100vh - 80px); position: relative; overflow: hidden; }
.slider, .slide { height: 100%; width: 100%; }
.slide { position: absolute; top: 0; left: 0; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 1s; }
.slide.active { opacity: 1; }
.slide .content { text-align: center; color: white; max-width: 900px; padding: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.slide h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; }
.slide p { font-size: 1.3rem; font-weight: 500; }
.deco-line { width: 60px; height: 4px; background: var(--brand-orange); margin: 0 auto 20px; border-radius: 2px; }
.arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; font-size: 2rem; padding: 15px; cursor: pointer; color: white; z-index: 10; border-radius: 50%; transition: 0.3s; }
.arrow:hover { background: rgba(255,255,255,0.4); }
.arrow.left { left: 30px; }
.arrow.right { right: 30px; }


/* --- SEKCJE OGÓLNE --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.sub-heading { color: var(--brand-orange); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.section-title { color: var(--primary-blue); font-size: 2.5rem; font-weight: 800; margin-bottom: 30px; position: relative; }
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* --- ABOUT --- */
.bg-white { background-color: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--gray-text); margin-bottom: 15px; font-size: 1.05rem; }
.feature-list { margin: 30px 0; }
.feature-list li { display: flex; align-items: center; margin-bottom: 15px; font-weight: 600; color: var(--primary-blue); }
.feature-list i { color: var(--brand-orange); margin-right: 15px; font-size: 1.2rem; }
.btn-outline { border: 2px solid var(--primary-blue); color: var(--primary-blue); padding: 10px 30px; border-radius: 50px; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-outline:hover { background: var(--primary-blue); color: white; }
.about-image-wrapper { position: relative; padding: 10px; border: 3px solid var(--accent-blue); border-radius: 10px; }
.about-image-wrapper img { width: 100%; border-radius: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: block; }


/* --- OFFER --- */
.bg-light-pattern { background-color: var(--light-bg); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.card { background: white; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s, box-shadow 0.3s; border-top: 4px solid transparent; }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-top-color: var(--brand-orange); }
.card-icon { font-size: 3rem; color: var(--primary-blue); margin-bottom: 20px; }
.card-link { color: var(--brand-orange); font-weight: 700; font-size: 0.9rem; }
.card-link i { margin-left: 5px; transition: 0.3s; }
.card:hover .card-link i { transform: translateX(5px); }


/* --- SERVICES --- */
.bg-blue-section { background-color: var(--primary-blue); color: white; position: relative; }
.white-text { color: white !important; }
.orange-text { color: var(--brand-orange) !important; }
.services-wrapper { display: flex; justify-content: center; gap: 30px; margin-top: 50px; flex-wrap: wrap; position: relative; z-index: 2; }
.service-box { flex: 1; min-width: 280px; text-align: center; padding: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; transition: 0.3s; background: rgba(255,255,255,0.03); }
.service-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.service-box i { font-size: 3rem; color: var(--brand-orange); margin-bottom: 20px; }
.btn-white { padding: 12px 35px; background: white; color: var(--primary-blue); border-radius: 50px; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-white:hover { background: var(--brand-orange); color: white; }


/* --- PROCESS (JAK DZIAŁAMY) --- */
.process-steps { display: flex; justify-content: space-between; margin-top: 60px; position: relative; gap: 20px; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 50px; right: 50px; height: 2px; background: #eee; z-index: 0; }
.step-item { flex: 1; text-align: center; position: relative; z-index: 1; background: #fff; padding: 0 10px; }
.step-icon { width: 80px; height: 80px; background: var(--white); border: 2px solid var(--accent-blue); color: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.step-item:hover .step-icon { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); transform: translateY(-5px); }
.step-number { font-size: 3rem; font-weight: 800; color: #f0f0f0; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); z-index: -1; }
.step-item h3 { color: var(--primary-blue); margin-bottom: 10px; font-size: 1.1rem; }
.step-item p { font-size: 0.9rem; color: var(--gray-text); }


/* --- STATYSTYKI --- */
.stats-section { background: linear-gradient(rgba(11, 64, 122, 0.9), rgba(11, 64, 122, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-attachment: fixed; padding: 80px 0; color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item i { font-size: 2.5rem; color: var(--brand-orange); margin-bottom: 15px; }
.stat-number { font-size: 3rem; font-weight: 800; margin-bottom: 5px; }
.stat-item p { font-size: 1.1rem; font-weight: 500; opacity: 0.9; }


/* --- PARTNERZY --- */
.partners-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 40px; align-items: center; }
.partner-logo { font-size: 1.8rem; font-weight: 800; color: #ccc; padding: 10px 20px; border: 2px solid #eee; border-radius: 5px; transition: 0.3s; cursor: default; }
.partner-logo:hover { color: var(--primary-blue); border-color: var(--primary-blue); transform: scale(1.05); }


/* --- CONTACT --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.contact-desc { color: var(--gray-text); margin-bottom: 40px; }
.info-items-wrapper { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; align-items: center; gap: 20px; }
.icon-circle { width: 50px; height: 50px; background: var(--light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-orange); font-size: 1.2rem; }
.info-item strong { display: block; color: var(--primary-blue); font-size: 1.1rem; }
.info-item p { color: var(--gray-text); }
.contact-form-wrapper { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 1px solid #eee; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; background: var(--light-bg); border: 1px solid transparent; border-radius: 5px; font-family: inherit; transition: 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-blue); background: white; outline: none; }
.btn-full { width: 100%; padding: 15px; background: var(--primary-blue); color: white; border: none; font-weight: 700; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.btn-full:hover { background: var(--brand-orange); }

/* AJAX Messages */
#form-message { margin-bottom: 20px; display: none; padding: 10px; border-radius: 5px; font-weight: 600; text-align: center; }
.msg-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.msg-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }


/* --- FOOTER --- */
footer { background-color: var(--footer-bg); color: #fff; padding: 70px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background-color: var(--brand-orange); }
.footer-logo img { height: 40px; margin-bottom: 15px; }
.footer-text { font-weight: 700; margin-bottom: 10px; font-size: 1.1rem; color: #fff; }
.footer-desc { color: #aaa; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 15px; margin-bottom: 20px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: #222; border-radius: 50%; transition: 0.3s; }
.footer-socials a:hover { background-color: var(--brand-orange); color: #fff; }
.privacy-link { display: inline-block; color: #fff; font-weight: 600; font-size: 0.9rem; margin-top: 10px; padding-bottom: 2px; border-bottom: 1px solid var(--brand-orange); transition: 0.3s; }
.privacy-link:hover { color: var(--brand-orange); border-bottom-color: transparent; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; transition: 0.3s; }
.footer-links a:hover { color: var(--brand-orange); padding-left: 5px; }
.footer-contact-list li { display: flex; gap: 15px; margin-bottom: 15px; color: #aaa; }
.footer-contact-list i { color: #fff; font-size: 1.2rem; margin-top: 5px; }
.footer-contact-list a { color: #aaa; }
.footer-contact-list a:hover { color: var(--brand-orange); }

/* Footer Bottom (Podpis) */
.footer-bottom { border-top: 1px solid #222; margin-top: 50px; padding-top: 25px; text-align: center; font-size: 0.85rem; color: #666; }
.footer-bottom strong { color: #fff; font-weight: 600; }
.footer-bottom .separator { margin: 0 10px; color: #444; }
.dev-link { text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; }
.dev-link .bracket { color: #22C55E; font-family: monospace; font-size: 1.1em; font-weight: 700; transition: 0.3s; }
.dev-link .dev-name { color: #ffffff; margin: 0 2px; transition: 0.3s; }
.dev-link:hover .dev-name { color: #22C55E; }
.dev-link:hover .bracket { color: #fff; }


/* --- PODSTRONY / DETALE PRODUKTU / KATALOG --- */
.page-header { height: 40vh; min-height: 300px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; background-color: var(--primary-blue); }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 64, 122, 0.7); }
.page-header .content { position: relative; z-index: 2; text-align: center; color: white; }
.page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; font-weight: 500; }

.about-full-content { max-width: 900px; margin: 0 auto; }
.text-block p { margin-bottom: 20px; color: var(--gray-text); font-size: 1.05rem; line-height: 1.8; }
.text-block strong { color: var(--primary-blue); }

/* Wartości w "O nas" */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-item { text-align: center; padding: 30px; background: var(--light-bg); border-radius: 10px; transition: 0.3s; border-bottom: 3px solid transparent; }
.value-item:hover { transform: translateY(-5px); background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom-color: var(--brand-orange); }
.value-item i { font-size: 2.5rem; color: var(--brand-orange); margin-bottom: 20px; }
.value-item h3 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.2rem; }
.value-item p { font-size: 0.95rem; color: var(--gray-text); }

/* Nagłówki Kategorii */
.category-header { text-align: left; margin-bottom: 30px; }
.category-header h2 { font-size: 1.8rem; color: var(--primary-blue); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.category-line { width: 60px; height: 4px; background-color: var(--brand-orange); border-radius: 2px; }

/* Grid Produktów */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 20px; }
.product-item { background: white; padding: 30px; border-radius: 10px; text-align: center; position: relative; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #eee; }
.product-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: var(--accent-blue); }
.prod-badge { position: absolute; top: 20px; right: 20px; width: 60px; height: 30px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.veka-badge { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Veka_Logo.svg/1200px-Veka_Logo.svg.png'); }
.schuco-badge { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Sch%C3%BCco_logo.svg/2560px-Sch%C3%BCco_logo.svg.png'); }
.prod-img { height: 250px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; overflow: hidden; }
.prod-img img { max-height: 100%; width: auto; transition: transform 0.5s; }
.product-item:hover .prod-img img { transform: scale(1.05); }
.prod-title { color: var(--primary-blue); font-size: 1.1rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.prod-title::after { content: ''; display: block; width: 40px; height: 3px; background: var(--brand-orange); margin: 10px auto 0; }
.prod-desc { color: var(--gray-text); font-size: 0.9rem; line-height: 1.6; }

/* Detale Produktu */
.product-detail-section { padding: 80px 0; background: #fff; position: relative; z-index: 1; }
.product-detail-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.prod-detail-img { position: relative; padding: 20px; border: 1px solid #eee; border-radius: 10px; display: flex; justify-content: center; align-items: center; }
.recommendation-badge { position: absolute; top: -15px; right: 20px; background: #333; color: #fff; padding: 8px 15px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.recommendation-badge i { color: var(--brand-orange); font-size: 1.2rem; }
.prod-detail-info h2 { font-size: 2rem; color: var(--primary-blue); margin-bottom: 20px; }
.prod-main-desc { color: #555; line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.prod-note { font-style: italic; color: #777; margin-bottom: 30px; display: block; }
.tech-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 40px; }
.tech-value { display: block; font-size: 1.4rem; font-weight: 800; color: var(--brand-orange); margin-bottom: 5px; }
.tech-label { font-size: 0.8rem; color: #666; line-height: 1.4; }
.btn-product { background-color: var(--brand-orange); color: #fff; padding: 15px 35px; border-radius: 5px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.btn-product:hover { background-color: #d37e22; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(234, 144, 45, 0.3); }


/* --- FLOATING BUTTONS --- */
#scroll-top { position: fixed; bottom: 30px; left: 30px; right: auto; background: #333; color: white; width: 45px; height: 45px; border: none; border-radius: 5px; font-size: 1rem; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); opacity: 0; pointer-events: none; transition: 0.3s; z-index: 1000; }
#scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#scroll-top:hover { background: #555; }
.floating-phone { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background-color: var(--brand-orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 5px 20px rgba(234, 144, 45, 0.5); z-index: 1002; transition: transform 0.3s; }
.floating-phone:hover { transform: scale(1.1); background-color: #d37e22; }
.phone-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--brand-orange); opacity: 0; animation: pulse-ring 1.5s infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }


/* --- MEDIA QUERIES --- */

/* WERSJA DESKTOP (Powyżej 901px) */
@media (min-width: 901px) {
    .nav-item-wrapper { display: contents; width: auto; }
    .nav-links li.dropdown { position: relative; }
    .dropdown-content { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; padding: 10px 0; }
    .nav-links li.dropdown:hover .dropdown-content { display: block; animation: fadeInMenu 0.3s ease; }
    .dropdown-btn { display: none; }
    .nav-item-wrapper > a::after { content: '\f078'; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-left: 5px; font-size: 0.7em; transition: transform 0.3s; display: inline-block; color: var(--primary-blue); }
    .nav-links li.dropdown:hover .nav-item-wrapper > a::after { transform: rotate(180deg); color: var(--brand-orange); }
    @keyframes fadeInMenu { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
}

/* WERSJA MOBILE (Do 900px) */
@media (max-width: 900px) {
    .nav-links { 
        position: fixed; 
        right: 0; 
        top: 0; 
        background: white; 
        flex-direction: column; 
        align-items: center; 
        justify-content: flex-start; 
        width: 100%; 
        padding: 80px 0 40px 0; 
        transform: translateX(100%); 
        transition: 0.4s ease-in-out; 
        box-shadow: none; 
        height: 100vh; 
        overflow-y: auto; 
        z-index: 9998; /* Poniżej burgera */
    }
    .nav-links.nav-active { transform: translateX(0); }
    
    .nav-links > li { width: 100%; border-bottom: 1px solid #f0f0f0; }
    
    .nav-item-wrapper {
        display: flex;
        padding-right: 10px;
        width: 100%;
    }

    .nav-links a { 
        display: block; 
        width: 100%; 
        padding: 15px 20px; 
        font-size: 1.1rem; 
        text-align: left;
    }

    .dropdown-content { 
        display: none; 
        position: static; 
        background-color: #f9f9f9; 
        border-top: none;
        box-shadow: inset 0 5px 10px rgba(0,0,0,0.05); 
        padding: 0;
        width: 100%;
    }

    .dropdown-content.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    .dropdown-content li a {
        padding: 12px 20px 12px 40px;
        font-size: 0.95rem;
        border-bottom: 1px solid #eee;
    }

    .dropdown-btn.rotate {
        transform: rotate(180deg);
    }
    
    .burger { display: block; }
    
    .header-actions .btn-order { display: none; }
    .header-actions .desktop-lang { display: none; }
    
    .mobile-lang-item { 
        display: block; 
        margin-top: 20px; 
        padding-top: 20px;
        border-top: 1px solid #eee;
        width: 100%;
        text-align: center;
    }
    .mobile-lang-item .lang-switch button { font-size: 1.2rem; padding: 10px; }

    .top-bar-container { flex-direction: column; gap: 10px; text-align: center; }
    .about-grid, .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { margin: 0; width: 100%; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-logo { text-align: left; }
    #scroll-top { bottom: 20px; left: 20px; }
    
    .page-header h1 { font-size: 2rem; }
    .page-header { height: 30vh; }
    
    .process-steps { flex-direction: column; gap: 40px; }
    .process-steps::before { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    .product-detail-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .tech-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { font-size: 0.75rem; margin-top: 30px; }
    
    /* Poprawka dla Cookie na mobile */
    .cookie-container { flex-direction: column; text-align: center; gap: 20px; }
    .btn-cookie-accept { width: 100%; }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: 1fr; }
    .door-grid { grid-template-columns: 1fr; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- STRONA DRZWI (DOOR PAGE STYLES) --- */

/* Kontener na przyciski zakładek */
.door-tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Stylizacja przycisku zakładki */
.btn-tab {
    padding: 12px 40px;
    border: none;
    background-color: #e0e0e0;
    color: var(--gray-text);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    outline: none;
}

.btn-tab:hover {
    background-color: #ccc;
}

.btn-tab.active {
    background-color: var(--brand-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(234, 144, 45, 0.4);
}

/* GRID DLA DRZWI */
.door-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    margin-top: 40px;
}

.door-item {
    text-align: center;
    background: transparent;
    transition: transform 0.3s;
}

.door-item:hover {
    transform: translateY(-5px);
}

.door-img-box {
    width: 100%;
    height: auto; 
    background: white;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.door-img-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.door-item h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RWD - Responsywność */
@media (max-width: 1100px) {
    .door-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .door-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .btn-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .door-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ROLETY (ROLLER SHUTTERS PAGE) --- */

.roller-tabs-container {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: #f4f6f8;
    border-radius: 5px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.roller-tab {
    flex: 1;
    padding: 20px 10px;
    border: none;
    background-color: #e0e0e0;
    color: #666;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    border-right: 1px solid #fff;
}

.roller-tab:last-child {
    border-right: none;
}

.roller-tab.active, .roller-tab:hover {
    background-color: var(--brand-orange); 
    color: white;
}

.roller-content-wrapper {
    position: relative;
    min-height: 400px;
}

.roller-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.roller-pane.active {
    display: block;
    opacity: 1;
    animation: fadeInTab 0.5s;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.roller-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.roller-img {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 500px;
}

.roller-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.5s;
}

.roller-img:hover img {
    transform: scale(1.03);
}

.roller-text h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.roller-text p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* RWD */
@media (max-width: 900px) {
    .roller-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roller-img {
        order: -1;
    }
    
    .roller-tabs-container {
        flex-direction: column;
    }
    
    .roller-tab {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #fff;
    }
}
/* --- STRONA MONTAŻ (INSTALLATION PAGE) --- */

.install-intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.benefit-box:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--brand-orange);
}

.benefit-box i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.benefit-box p {
    font-size: 0.95rem;
    color: var(--gray-text);
}


/* --- TIMELINE (OŚ CZASU) --- */
.installation-timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
}

.installation-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--brand-orange);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: transparent;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--primary-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-date {
    position: absolute;
    top: 10px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    z-index: 0;
    line-height: 1;
}

.timeline-item:nth-child(odd) .timeline-date { right: 50px; }
.timeline-item:nth-child(even) .timeline-date { left: 50px; }

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.timeline-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--brand-orange);
    font-size: 1.2rem;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
}


/* --- CIEPŁY MONTAŻ (WIZUALIZACJA) --- */
.warm-install-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.warm-list {
    margin-top: 30px;
}

.warm-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.layer-indicator {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.layer-indicator.red { background-color: #ff4d4d; box-shadow: 0 0 10px #ff4d4d; }
.layer-indicator.yellow { background-color: #ffcc00; box-shadow: 0 0 10px #ffcc00; }
.layer-indicator.blue { background-color: #00ccff; box-shadow: 0 0 10px #00ccff; }

.warm-list strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.warm-visual {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.window-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass {
    background: #aaddff;
    width: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    font-weight: 700;
    color: #0b407a;
    font-size: 0.7rem;
    border: 2px solid #fff;
}

.profile-frame {
    background: #fff;
    width: 80px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b407a;
    font-weight: 800;
    border-radius: 5px;
    margin-left: -5px;
    z-index: 2;
}

.wall-section {
    display: flex;
    flex-direction: row;
    height: 200px;
    align-items: center;
}

.layer-tape-in {
    background: #ff4d4d; 
    width: 10px;
    height: 100%;
    color: transparent;
    writing-mode: vertical-lr;
    display: flex; align-items: center; font-size: 0.6rem;
}
.layer-foam {
    background: #ffcc00; 
    width: 40px;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    writing-mode: vertical-lr;
    font-weight: 700; color: #333; font-size: 0.8rem;
    background-image: radial-gradient(#ffe066 20%, transparent 20%);
    background-size: 10px 10px;
}
.layer-tape-out {
    background: #00ccff;
    width: 10px;
    height: 100%;
}
.wall {
    background: #777;
    width: 60px;
    height: 100%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    background-image: linear-gradient(45deg, #666 25%, transparent 25%, transparent 75%, #666 75%, #666), linear-gradient(45deg, #666 25%, transparent 25%, transparent 75%, #666 75%, #666);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}


/* RWD */
@media (max-width: 900px) {
    .benefits-grid { grid-template-columns: 1fr; }
    
    .warm-install-wrapper { grid-template-columns: 1fr; }
    .warm-visual { display: none; }
    
    .installation-timeline::after { left: 31px; }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
    
    .timeline-item:nth-child(odd) .timeline-dot, 
    .timeline-item:nth-child(even) .timeline-dot {
        left: 21px;
        right: auto;
    }
    
    .timeline-date { display: none; }
}
/* --- STRONA SERWIS (SERVICE PAGE) --- */

.brands-service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.brand-box {
    padding: 15px 30px;
    border: 2px solid #eee;
    color: var(--gray-text);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: default;
    background: #fff;
    min-width: 140px;
    text-align: center;
}

.brand-box:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--brand-orange);
}

.srv-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .srv-icon {
    background: var(--primary-blue);
    color: #fff;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.check-list-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.check-list-white {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list-white li {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.check-list-white li:last-child {
    border-bottom: none;
}

.check-list-white i {
    color: var(--brand-orange);
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

/* RWD */
@media (max-width: 768px) {
    .brands-service-grid {
        gap: 10px;
    }
    .brand-box {
        flex: 1 1 40%;
        font-size: 1rem;
        padding: 10px;
    }
    .check-list-white li {
        font-size: 1rem;
    }
}

/* --- GALERIA REALIZACJI --- */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #eee;
    background: transparent;
    color: var(--gray-text);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
    box-shadow: 0 5px 15px rgba(234, 144, 45, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeInImg 0.5s ease;
}

@keyframes fadeInImg {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 64, 122, 0.8);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--brand-orange);
}


/* --- LIGHTBOX (Pełny ekran) --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
    animation: fadeInLightbox 0.3s;
}

@keyframes fadeInLightbox {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.close-lightbox {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--brand-orange);
}

.prev-lightbox, .next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
    user-select: none;
}

.prev-lightbox { left: 20px; }
.next-lightbox { right: 20px; }

.prev-lightbox:hover, .next-lightbox:hover {
    background-color: var(--brand-orange);
}

@media (max-width: 768px) {
    .prev-lightbox, .next-lightbox {
        padding: 10px;
        font-size: 20px;
    }
}
/* --- STRONA KONTAKT (CONTACT PAGE) --- */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title-sm {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-desc {
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact-detail-item:hover .icon-box {
    background: var(--brand-orange);
    color: white;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text .label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}

.detail-text strong {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.contact-socials {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-socials span {
    font-weight: 700;
    color: var(--primary-blue);
}

.contact-socials a {
    width: 40px; height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}

.contact-socials a:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 5px solid #fff;
}


/* Prawa strona: Formularz */
.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 5px solid var(--brand-orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(234, 144, 45, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-check input {
    width: auto;
    cursor: pointer;
}

.form-check label a {
    color: var(--brand-orange);
    text-decoration: underline;
}


/* RWD */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-side {
        order: 2;
    }
    
    .contact-form-side {
        order: 1;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 25px;
    }
}/* --- POLITYKA PRYWATNOŚCI (PRIVACY POLICY PAGE) --- */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.legal-block {
    margin-bottom: 40px;
    background: #fff;
}

.legal-block h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    font-weight: 700;
}

.legal-block p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.legal-block strong {
    color: var(--dark-text);
}

.company-data {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid var(--brand-orange);
    font-family: monospace; 
    font-size: 1.05rem;
    color: #333;
}

.company-data a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.legal-list li::before {
    content: '\f058'; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--brand-orange);
    position: absolute;
    left: 0;
    top: 2px;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 4px solid var(--brand-orange);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 10000; /* Zawsze na wierzchu */
    padding: 20px 0;
    
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0); 
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(234, 144, 45, 0.3);
}

.btn-cookie-accept:hover {
    background-color: #d68125;
    transform: translateY(-2px);
}

/* RWD - wersja mobilna */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .btn-cookie-accept {
        width: 100%;
    }
}
/* --- STYLIZACJA DLA OKIEN DREWNIANYCH (Dodaj do style.css) --- */

/* Plakietka "PREMIUM" w rogu produktu */
.wood-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #8b4513; /* Brązowy kolor drewna */
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wood-badge::after {
    content: 'PREMIUM';
}

/* Tabelka z danymi technicznymi w karcie produktu */
.tech-specs {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #555;
    background: #fdfdfd;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #eee;
}

.tech-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 4px 0;
}

.tech-row:last-child {
    border-bottom: none;
}

.tech-label {
    font-weight: 600;
    color: #0b407a; /* Granat firmowy */
}

.tech-val {
    font-weight: 500;
    color: #333;
}
/* ==========================================================================
   OSTATECZNA NAPRAWA: ZWYKŁE LINKI JĘZYKOWE I ODSTĘPY
   ========================================================================== */

/* 1. Usunięcie starych śmieci językowych (zabezpieczenie) */
.lang-switch, .desktop-lang, .mobile-lang-box { display: none !important; }

/* 2. Zwykłe, proste linki językowe (BEZ PRZYCISKÓW, BEZ RAMEK) */
.simple-lang-switcher {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
}

.simple-lang-switcher a {
    color: var(--primary-blue) !important; /* Zawsze granatowe */
    text-decoration: none !important;
    font-weight: 700 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: 0.3s !important;
}

.simple-lang-switcher a:hover {
    color: var(--brand-orange) !important;
}

.simple-lang-switcher .sep {
    color: #ccc !important;
    font-weight: 400 !important;
}

/* 3. Górny Pasek */
.top-bar-left { display: flex !important; align-items: center !important; flex-wrap: wrap !important; gap: 20px !important; }
.vetrex-top-text { color: #C60C30 !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; font-size: 0.85rem !important; }
@media (min-width: 769px) { .vetrex-top-text { border-left: 1px solid #ccc !important; padding-left: 20px !important; margin-left: 0 !important; } }

/* 4. Główny Kontener */
.container { max-width: 1400px !important; }

/* ================= WERSJA DESKTOP (Powyżej 1050px) ================= */
@media (min-width: 1051px) {
    /* Blokady elementów mobilnych */
    .burger, .mobile-lang-item { display: none !important; }

    .nav-container { display: flex !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important; width: 100% !important; flex-wrap: nowrap !important; }

    /* --- TO JEST ODSUNIĘCIE "STRONA GŁÓWNA" OD LOGO (MARGINES 60PX) --- */
    .logo-area { display: flex !important; align-items: center !important; gap: 20px !important; flex-shrink: 0 !important; margin-right: 60px !important; }
    
    .main-logo-link img { height: 50px !important; width: auto !important; display: block !important; }
    .logo-separator { width: 1px !important; height: 45px !important; background-color: #ddd !important; display: block !important; }
    .vetrex-logo-img { height: 35px !important; width: auto !important; display: block !important; }

    /* Środkowe Menu */
    nav { flex-grow: 1 !important; display: flex !important; justify-content: flex-start !important; }
    .nav-links { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 30px !important; margin: 0 !important; padding: 0 !important; }
    .nav-links > li { display: inline-flex !important; flex-shrink: 0 !important; }
    .nav-links > li > a, .nav-item-wrapper > a { white-space: nowrap !important; font-size: 0.9rem !important; font-weight: 700 !important; color: var(--primary-blue) !important; }

    .dropdown-btn { display: none !important; }
    .nav-item-wrapper > a::after { content: '\f078'; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-left: 6px; font-size: 0.7em; display: inline-block; transition: 0.3s; }
    .nav-links li.dropdown:hover .nav-item-wrapper > a::after { transform: rotate(180deg); color: var(--brand-orange); }

    /* Prawy Panel */
    .header-actions { display: flex !important; align-items: center !important; gap: 25px !important; flex-shrink: 0 !important; margin-left: auto !important; }
    .btn-order { white-space: nowrap !important; }
}

@media (min-width: 1051px) and (max-width: 1300px) {
    .logo-area { margin-right: 25px !important; gap: 10px !important; }
    .nav-links { gap: 15px !important; }
    .nav-links > li > a { font-size: 0.8rem !important; }
    .header-actions { gap: 15px !important; }
}

/* ================= WERSJA MOBILNA (Poniżej 1050px) ================= */
@media (max-width: 1050px) {
    /* Blokady elementów PC */
    .desktop-lang-item, .header-actions .btn-order { display: none !important; }

    .logo-area { display: flex !important; align-items: center !important; gap: 15px !important; }
    .main-logo-link img { height: 40px !important; }
    .logo-separator { height: 35px !important; }
    .vetrex-logo-img { height: 28px !important; }

    .main-nav { position: sticky !important; top: 0 !important; z-index: 10005 !important; background: #fff !important; }
    .nav-container { position: relative !important; z-index: 10006 !important; background: #fff !important; }
    .burger { display: block !important; font-size: 1.8rem !important; color: var(--primary-blue) !important; cursor: pointer !important; }

    .nav-links { position: fixed !important; top: 0 !important; right: 0 !important; width: 100% !important; height: 100vh !important; background: #ffffff !important; flex-direction: column !important; align-items: stretch !important; padding: 80px 0 40px 0 !important; margin: 0 !important; transform: translateX(100%) !important; transition: 0.3s ease-in-out !important; z-index: 10000 !important; overflow-y: auto !important; box-shadow: none !important; }
    .nav-links.nav-active { transform: translateX(0) !important; }

    .nav-links > li:not(.mobile-lang-item) { border-bottom: 1px solid #f0f0f0 !important; display: block !important; width: 100% !important; }
    .nav-links > li > a { display: block !important; padding: 15px 25px !important; font-size: 1.1rem !important; text-align: left !important; color: var(--primary-blue) !important; font-weight: 600 !important; }

    .nav-item-wrapper { display: flex !important; justify-content: space-between !important; align-items: center !important; }
    .nav-item-wrapper > a { padding: 15px 25px !important; flex-grow: 1 !important; text-align: left !important; font-size: 1.1rem !important; }
    .dropdown-btn { padding: 15px 25px !important; font-size: 1.2rem !important; cursor: pointer !important; color: var(--brand-orange) !important; }
    
    .dropdown-content { display: none !important; background: #f9f9f9 !important; border: none !important; }
    .dropdown-content.active { display: block !important; }
    .dropdown-content li a { padding: 12px 25px 12px 40px !important; font-size: 1rem !important; text-align: left !important; border-bottom: 1px solid #eee !important; color: var(--dark-text) !important; }

    /* Wyśrodkowanie języków na telefonie */
    .mobile-lang-item { display: flex !important; justify-content: center !important; padding: 25px 0 !important; width: 100% !important; border: none !important; }
    .simple-lang-switcher { font-size: 1.2rem !important; }
}

@media (max-width: 768px) {
    .top-bar-left { flex-direction: column !important; align-items: center !important; gap: 8px !important; }
    .top-bar-right { display: none !important; } 
    .vetrex-top-text { border-left: none !important; padding-left: 0 !important; font-size: 0.8rem !important; }
    .logo-area { gap: 10px !important; }
    .main-logo-link img { height: 32px !important; }
    .logo-separator { height: 25px !important; }
    .vetrex-logo-img { height: 22px !important; }
}

/* KAFELKI */
.card-icon-img { max-width: 180px !important; height: auto !important; margin: 0 auto 20px auto !important; display: block !important; }