

.header-container, .podheader-container {
    overflow: hidden;
}

/* Resetowanie domyślnych stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stylowanie body */
body {
    background: linear-gradient(180deg, #0a0e27 0%, #121630 50%, #0a0e27 100%);
    font-family: 'Recursive', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Główna treść przesunięta o sidebar */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* Kontener dla nagłówka */
.header-container {
    position: relative; /* Pozwala na pozycjonowanie elementów wewnątrz */
    max-width: 100%; /* Pełna szerokość */
    margin: 0 auto; /* Wyśrodkowanie */
    text-align: center; /* Wyśrodkowanie obrazu */
}

/* Kontener nagłówka */
.header-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mniejszy header dla podstron (nie strona główna z animacją) */
body:not(:has(.hero-animation)) .header-container {
    height: 40vh;
    min-height: 400px;
}

body:not(:has(.hero-animation)) .header-hero {
    top: 200px;
    transform: translate(-50%, 0);
}

/* Obrazek w nagłówku */
.header-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.75;
    filter: brightness(1.2);
}

/* Zmiana na ciemne tło dla ekranów ≤ 900px */
@media (max-width: 900px) {
    .header-container {
        background-color: #0a0e27; /* Ciemne tło */
        height: auto;
        min-height: 600px;
    }

    .header-image {
        display: none; /* Ukrycie obrazka */
    }
}





/* Zawartość - nawigacja z logo */
.header-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    background: transparent;
    margin: 60px 0 40px 0;
    border-top: 2px solid rgba(255, 140, 0, 0.3);
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

/* Kontener dla logo */
.logo-container {
    position: relative;
}

/* Logo w formacie SVG */
.logo,
.logo-hover {
    height: 90px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Dodatkowe logo po najechaniu */
.logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Początkowo niewidoczne */
}

.logo-container:hover .logo {
    opacity: 0; /* Logo znika po najechaniu */
}

.logo-container:hover .logo-hover {
    opacity: 1; /* Logo1 pojawia się po najechaniu */
}

/* Panel boczny */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0d1128 0%, #0a0e1f 100%);
    box-shadow: 3px 0 25px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 140, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 35px 20px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    background: rgba(255, 140, 0, 0.03);
}

.sidebar-logo-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 140, 0, 0.25));
}

.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header h2 {
    font-family: 'Recursive', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sidebar-close {
    display: none;
}

.sidebar-menu {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Recursive', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #FF8C00 0%, #FFA500 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-menu li a:hover {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.3);
    color: #FFA500;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
}

.sidebar-menu li a:hover::before {
    transform: scaleY(1);
}

.sidebar-menu li a.active {
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.4);
    color: #FFA500;
    font-weight: 600;
}

.sidebar-menu li a.active::before {
    transform: scaleY(1);
}

/* Scrollbar dla sidebaru */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.4);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.6);
}

/* Overlay i hamburger - ukryte */
.sidebar-overlay {
    display: none;
}

.hamburger {
    display: none;
}

/* Stare style menu - ukryte */
.right-section {
    display: none;
}

.menu {
    display: none;
}

/* Przycisk z telefonem */
.phone-button {
    display: inline-block;
    width: 250px;
    height: 66px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Recursive', sans-serif;
    text-align: center;
    line-height: 66px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.phone-button .plus {
    color: rgba(255, 255, 255, 0.8);
}

.phone-button .number {
    color: white;
}

.phone-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFB733 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}


/* Hero section w głównym bannerze */
.header-hero {
    position: absolute;
    top: 45%;
    left: calc(50% + 140px); /* +140px aby wycentrować względem całej strony (połowa szerokości sidebara) */
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    width: 100%;
    padding: 0 20px;
    margin-top: 40px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-text h1 {
    font-family: 'Recursive', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #FFB733 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-animation img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 5px 20px rgba(255, 140, 0, 0.3));
}

/* Styles for header-content used on o-nas.html */
.header-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

.header-content h1 {
    font-family: 'Recursive', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.header-content .subtitle-highlight {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 165, 0, 0.25));
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 12px;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
    margin-top: 20px;
    line-height: 1.7;
}

/* Osprzęt page specific header styles */
.osprzet-header {
    height: 50vh !important;
    min-height: 500px !important;
}

.osprzet-header .header-image {
    opacity: 0.9;
    filter: brightness(1.4);
    object-fit: contain;
    object-position: center;
}

.trailer-header .header-image {
    opacity: 0.9;
    filter: brightness(1.2);
    object-fit: cover;
    object-position: center 60%;
}

/* Sekcja gwarancji ceny - poniżej headera */
.price-guarantee-section {
    background: linear-gradient(180deg, #0f1329 0%, #1a1f3a 100%);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.price-guarantee-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px 60px;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.price-guarantee-banner:hover {
    box-shadow: 
        0 8px 40px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border-color: #f0c14b;
}

.price-guarantee-banner::before {
    content: '★';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #d4af37;
    opacity: 0.8;
}

.price-guarantee-banner::after {
    content: '★';
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #d4af37;
    opacity: 0.8;
}

.price-guarantee-banner p {
    font-family: 'Recursive', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.price-guarantee-banner p strong {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    display: inline-block;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.5);
}

.osprzet-right {
    flex: 1;
    text-align: right;
}

.osprzet-right h1 {
    font-family: 'Recursive', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin: 0;
    line-height: 1.15;
    color: #1a2e45;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.osprzet-subtitle {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    left: 0;
}

.osprzet-subtitle p {
    font-family: 'Readex Pro', sans-serif;
    background: linear-gradient(135deg, rgba(180, 120, 60, 0.85), rgba(200, 130, 65, 0.9));
    border: 3px solid rgba(180, 120, 60, 0.95);
    border-radius: 15px;
    padding: 18px 60px;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


/* Media queries dla hero section */
@media (max-width: 900px) {
    .header-hero {
        flex-direction: column;
        top: 200px;
        transform: translateX(-50%);
        padding: 0 20px;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-animation {
        max-width: 100%;
    }

    .hero-animation img {
        max-width: 400px;
    }
    
    .header-content h1 {
        font-size: 36px;
    }
    
    .header-content p {
        font-size: 18px;
    }
    
    .header-content .subtitle-highlight {
        padding: 16px 20px;
        font-size: 17px;
        margin-top: 15px;
    }
}



/* Media queries dla wersji mobilnej */
@media (max-width: 900px) {
    /* Zmiana układu header */
    .header-nav {
        flex-direction: column; /* Ułożenie pionowe */
        align-items: center; /* Wyśrodkowanie */
        top: 20px; /* Odstęp od góry */
         padding-left: 10px;
         padding-right: 1px;
    }

    /* Menu */
    .menu {
        gap: 8px;
        text-align: center;
        margin-top: -15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu li a {
        color: white;
        text-decoration: none;
        font-size: 13px;
        font-family: 'Recursive', sans-serif;
        padding: 10px 14px;
        white-space: nowrap;
        min-width: 100px;
        transition: color 0.3s ease, font-weight 0.3s ease;
    }

    /* Sekcja logo */
    .logo-container {
        margin-bottom: 0px; /* Odstęp między logo a menu */
    }

    /* Numer telefonu */
    .right-section {
        gap: 20px; /* Mniejszy odstęp */
        flex-direction: column; /* Ułożenie elementów pionowo */
        align-items: center; /* Wyśrodkowanie */
        margin-top: 20px; /* Odstęp nad menu */
    }
}






/* Kontener dla podheader.png */
.podheader-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

/* Obrazek podheader.png */
.podheader-image {
    display: block; /* Usunięcie domyślnego marginesu pod obrazem */
    margin: 0 auto; /* Wyśrodkowanie obrazu */
    height: auto; /* Zachowanie proporcji */
    max-width: none; /* Usunięcie ograniczenia szerokości */
}

/* Zawartość na podheader.png */
.podheader-content {
    position: absolute;
    top: 80px; /* Odstęp od góry */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between; /* Tekst po lewej, wideo/animacja po prawej */
    align-items: center;
    max-width: 100%; /* Ograniczenie szerokości */
    margin: 0 auto; /* Wyśrodkowanie */
    padding: 0 60px; /* Odstępy po bokach */
}

/* Tekst po lewej stronie */
.podheader-text {
    max-width: 50%; /* Ograniczenie szerokości tekstu */
}

.podheader-text h1 {
    font-family: 'Recursive', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFB733 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.podheader-text p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 16px;
    font-weight: 400; /* Regular */
    margin: 30px 0 0 0;
    line-height: 1.5;
}

/* Przycisk konfiguratora */
.config-button {
    display: inline-block;
    width: 300px;
    height: 66px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-family: 'Recursive', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 66px;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.config-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFB733 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* Wideo/animacja po prawej stronie */
.podheader-media {
    max-width: 50%; /* Ograniczenie szerokości */
}

.podheader-media video,
.podheader-media img {
    width: 100%; /* Pełna szerokość kontenera */
    height: auto; /* Zachowanie proporcji */
    border-radius: 10px; /* Zaokrąglone rogi */
}



/* Media queries dla wersji mobilnej */
@media (max-width: 900px) {
    /* Zmiana układu kontenera */
    .podheader-content {
        flex-direction: column; /* Układ pionowy */
        align-items: center; /* Wyśrodkowanie elementów */
        justify-content: center; /* Wyśrodkowanie zawartości */
        top: 40px; /* Mniejszy odstęp od góry */
    }

    /* Wyśrodkowanie tekstu */
    .podheader-text {
        text-align: center; /* Wyśrodkowanie tekstu */
        max-width: 90%; /* Większa szerokość dla tekstu */
    }

    /* Zmniejszenie rozmiaru tekstu */
    .podheader-text h1 {
        font-size: 28px; /* Mniejszy rozmiar nagłówka */
    }

    .podheader-text p {
        font-size: 14px; /* Mniejszy rozmiar tekstu */
    }

    /* Wyśrodkowanie przycisku */
    .config-button {
        width: 250px; /* Mniejszy przycisk */
        height: 60px; /* Mniejsza wysokość przycisku */
        font-size: 18px; /* Mniejszy tekst na przycisku */
        text-align: center; /* Wyśrodkowanie tekstu w przycisku */
        margin-top: 20px; /* Odstęp od tekstu */
    }

    /* Zmniejszenie szerokości animacji */
    .podheader-media {
        max-width: 100%; /* Większa szerokość w porównaniu do tekstu */
        display: flex;
        margin-left: -20px;
        justify-content: center; /* Wyśrodkowanie animacji */
    }
}




/* Stylowanie main */
main {
    padding: 40px 50px;
    background: transparent;
    color: #ffffff;
}

/* Sekcja galerii */
.gallery {
    max-width: 100%;
    width: 100%;  /* Zajmuje 100% dostępnej szerokości */
    margin: 0 auto;  /* Wyśrodkowanie galerii */
}

/* Siatka galerii */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    gap: 18px; /* Odstęp między zdjęciami */
    max-width: 100%;  /* Ograniczenie szerokości galerii */
    margin: 0 auto;  /* Wyśrodkowanie siatki */
}

/* Elementy galerii */
.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1f3a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}



/* Media queries dla wersji mobilnej */
@media (max-width: 900px) {
    /* Zmiana układu galerii na pionowy (jedna kolumna) */
    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr; /* Jedna kolumna */
        gap: 20px; /* Odstęp między zdjęciami */
        max-width: 100%;  /* Zajmuje 100% dostępnej szerokości */
        margin: 0 auto;  /* Wyśrodkowanie galerii */
    }

    /* Wyświetlanie tylko 3 zdjęć na stronie głównej (index.html) */
    .home-page .gallery-item:nth-child(n+4) {
        display: none;  /* Ukrywanie zdjęć po trzecim na stronie głównej */
    }
}





/* Powiększenie obrazka po najechaniu */
.gallery-item:hover img {
    transform: scale(1.1); /* Lekkie powiększenie po najechaniu */
}

/* Przycisk "Pokaż wszystkie zdjęcia" */
.show-all-button {
    display: inline-block;
    width: 280px;
    height: 66px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Recursive', sans-serif;
    text-align: center;
    line-height: 66px;
    border: 2px solid #FF8C00;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.show-all-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Karuzela zdjęć */
.carousel-section {
    padding: 60px 0;
    max-width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e27 0%, #0f1329 100%);
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 calc(25% - 15px);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    display: block;
}

.carousel-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 165, 0, 0.9));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Modal karuzeli */
.carousel-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.carousel-modal.active {
    display: flex;
}

.carousel-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.carousel-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #FF8C00;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.carousel-modal-close:hover {
    color: #FFA500;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-modal-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

/* Sekcja galerii z nagłówkiem */
.gallery-section {
    padding: 60px 0px; /* Odstęp od góry i boków */
    max-width: 100%; /* Ograniczenie szerokości */
    margin: 0 auto; /* Wyśrodkowanie */
}

/* Sekcja galerii z nagłówkiem */
.gallery-section2 {
    padding: 10px 0px 60px 0px; /* Zmniejszony odstęp od góry */
    max-width: 100%; /* Ograniczenie szerokości */
    margin: 0 auto; /* Wyśrodkowanie */
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

#nasze-lodzie .gallery-header {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.header-text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gallery-header h2 {
    font-family: 'Recursive', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subsection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.gallery-subsection:first-of-type {
    margin-top: 0;
}

.subsection-title {
    font-family: 'Recursive', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Sekcja O nas */
.about-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.about-toggle-button {
    width: 100%;
    padding: 24px 40px;
    font-family: 'Recursive', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 165, 0, 0.25));
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
}

.about-toggle-button:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.25), rgba(255, 165, 0, 0.35));
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 140, 0, 0.35);
}

.about-toggle-button:active {
    transform: translateY(0);
}

.about-full-content {
    margin-top: 30px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text-block {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 165, 0, 0.12));
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-text-block p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.about-text-block.highlight {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 165, 0, 0.2));
    border: 2px solid rgba(255, 140, 0, 0.4);
}

.about-founder {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 165, 0, 0.12));
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-founder h3 {
    font-family: 'Recursive', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-founder > p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.25);
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.achievement-item h4 {
    font-family: 'Recursive', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FF8C00;
    margin-bottom: 12px;
}

.achievement-item p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .about-toggle-button {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .about-text-block,
    .about-founder {
        padding: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .about-founder h3 {
        font-size: 24px;
    }
}


/* Sekcja Nasze łodzie */
.section-subtitle {
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    text-align: center;
}

.boats-section-wrapper {
    /* nie używane */
}

.boats-decoration {
    flex-shrink: 0;
    width: 120px;
    height: auto;
    opacity: 0.7;
    filter: drop-shadow(0 4px 15px rgba(255, 140, 0, 0.3));
    transition: all 0.3s ease;
}

.boats-decoration:hover {
    opacity: 0.9;
    filter: drop-shadow(0 6px 20px rgba(255, 140, 0, 0.5));
    transform: scale(1.05);
}

.boats-decoration-left {
    animation: float 3s ease-in-out infinite;
}

.boats-decoration-right {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 0;
    padding: 20px 0;
}

.boat-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1329 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.boat-card:hover {
    transform: translateY(-10px);
    border-color: #FF8C00;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.boat-image-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.boat-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 140, 0, 0.3));
    transition: transform 0.4s ease;
}

.boat-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    cursor: grab;
}

.boat-canvas:active {
    cursor: grabbing;
}

.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 140, 0, 0.2);
    border-top-color: #FF8C00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-indicator p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.loading-indicator.hidden {
    display: none;
}

.viewer-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Readex Pro', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(10, 14, 39, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: none;
    white-space: nowrap;
}

.boat-card:hover .boat-image {
    transform: scale(1.05);
}

.boat-info {
    padding: 30px;
}

.boat-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 25px 0;
}

.price-tag {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Recursive', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.includes-button {
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Recursive', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.includes-button:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #FFA500;
    color: #FFA500;
}

.includes-content {
    background: rgba(255, 140, 0, 0.05);
    border-left: 3px solid #FF8C00;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding: 0 20px;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding: 20px;
    }
}

.includes-content h4 {
    font-family: 'Recursive', sans-serif;
    font-size: 18px;
    color: #FF8C00;
    margin: 0 0 15px 0;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    font-family: 'Readex Pro', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    padding-left: 10px;
}

.boat-info h3 {
    font-family: 'Recursive', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boat-info p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.specs-and-certificate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
    align-items: start;
}

.boat-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certificate-container {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 10px;
}

.certificate-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}


.boat-specs li {
    font-family: 'Readex Pro', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.spec-icon {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border: 2px solid #FF8C00;
    border-radius: 8px;
    background: rgba(255, 140, 0, 0.1);
    flex-shrink: 0;
}

.spec-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF8C00;
}

.spec-icon.ruler::before {
    content: '―';
    font-size: 20px;
    font-weight: bold;
}

.spec-icon.width::before {
    content: '↔';
    font-size: 18px;
}

.spec-icon.construction::before {
    content: '⚒';
    font-size: 18px;
}

.spec-icon.weight::before {
    content: '⚖';
    font-size: 18px;
}

.spec-icon.people::before {
    content: '⚉';
    font-size: 20px;
    font-weight: bold;
}

.spec-icon.category::before {
    content: '★';
    font-size: 20px;
}

.spec-icon.engine::before {
    content: '⚙';
    font-size: 18px;
}

.spec-icon.power::before {
    content: '⚡';
    font-size: 18px;
}

.spec-icon.strong::before {
    content: '◆';
    font-size: 18px;
    font-weight: bold;
}

.boat-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Recursive', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.boat-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFB733 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.dimensions-button {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    border-radius: 8px;
    font-family: 'Recursive', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.dimensions-button:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #FFA500;
    color: #FFA500;
    transform: translateY(-2px);
}

/* Responsive dla kart łodzi */
@media (max-width: 1400px) {
    .boats-decoration {
        width: 100px;
    }

    #nasze-lodzie .gallery-header {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .boats-decoration {
        display: none;
    }

    #nasze-lodzie .gallery-header {
        flex-direction: column;
    }

    .boats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .boat-image-container {
        height: 250px;
    }

    .boat-info h3 {
        font-size: 28px;
    }

    .boat-info {
        padding: 25px;
    }
    
    .price-tag {
        font-size: 18px;
        padding: 14px 18px;
    }
    
    .includes-button {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .specs-and-certificate {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certificate-image {
        max-width: 300px;
    }
    
    .viewer-hint {
        font-size: 10px;
        padding: 4px 8px;
    }

    .dimensions-image {
        max-width: 95%;
        max-height: 80vh;
    }

    .close-dimensions {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

/* Kategorie Osprzętu */
.section-header {
    text-align: center;
    margin: 40px 0 20px 0;
}

.section-header h2 {
    font-family: 'Recursive', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1329 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

a.category-card {
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    border-color: #FF8C00;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    font-family: 'Recursive', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.category-card p {
    font-family: 'Readex Pro', sans-serif;
    font-size: 14px;
    color: #d8d8d8;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 15px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    /* Price guarantee banner for small screens */
    .price-guarantee-section {
        padding: 25px 10px;
    }
    
    .price-guarantee-banner {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .price-guarantee-banner::before,
    .price-guarantee-banner::after {
        display: none;
    }
    
    .price-guarantee-banner p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .price-guarantee-banner p strong {
        font-size: 18px;
        display: block;
        margin-bottom: 8px;
    }
}

/* Modal do powiększenia zdjęć */
.modal {
    display: none; /* Ukryty domyślnie */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Czarne tło z przezroczystością */
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease; /* Dodana animacja */
}

/* Modal dla wymiarów łodzi */
.dimensions-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dimensions-modal.active {
    display: flex;
}

.dimensions-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(255, 140, 0, 0.3);
}

.close-dimensions {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #FF8C00;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.close-dimensions:hover {
    color: #FFA500;
    transform: scale(1.1);
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Zachowanie proporcji zdjęcia */
    transition: transform 0.3s ease-in-out;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}







html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;  /* Płynne przewijanie */
}


/* Sekcja kontaktu */
.contact-section {
    background: transparent;
    padding: 40px 0;
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kreska pod galerią */
.contact-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    margin: 20px 0 40px 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}

/* Napis "Kontakt" */
.contact-text {
    font-family: 'Recursive', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 30px 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kontener dla ikony i przycisków */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

/* Styl dla ikony SVG */
.contact-icon {
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-icon:hover {
    transform: scale(1.1); /* Lekkie powiększenie po najechaniu */
}

/* Styl dla przycisków */
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: 'Readex Pro', sans-serif;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Animacje */
}

/* Styl dla przycisku telefonu */
.phone-button2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 56px;
    padding: 0 20px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Recursive', sans-serif;
    text-align: center;
    border: 2px solid #FF8C00;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-button2 .plus {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 5px;
}

.phone-button2 .number {
    color: white;
}

.phone-button2:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Styl dla przycisku mailowego */
.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 56px;
    padding: 0 20px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Recursive', sans-serif;
    text-align: center;
    border: 2px solid #FF8C00;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-button:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Styl dla przycisku "Konfigurator łodzi" */
.config-button2 {
    background-color: transparent;
    border: 2px solid #FF8C00;
    color: #FF8C00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 240px;
    height: 56px;
    padding: 0 25px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Recursive', sans-serif;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.config-button2:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.contact-button, .phone-button2, .email-button, .config-button2 {
    margin: 0;
    padding: 0;
}

.contact-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Przerwa między przyciskami */
}

.config-button2 {
    margin-left: auto; /* Wyrównanie przycisku do prawej */
}



/* Media queries dla wersji mobilnej */
@media (max-width: 900px) {
    /* Kontener dla ikony i przycisków */
    .contact-container {
        display: flex;
        flex-direction: column; /* Zmieniamy na kolumnowy układ */
        align-items: center; /* Wyśrodkowanie elementów */
        gap: 20px; /* Odstęp między elementami */
        margin-top: 50px; /* Odstęp od napisu "Kontakt" */
    }

    /* Styl dla ikony SVG */
    .contact-icon {
        width: 50px; /* Zmniejszenie ikony */
        height: 50px; /* Zmniejszenie ikony */
        cursor: pointer;
        transition: transform 0.3s ease; /* Animacja powiększenia */
    }

    .contact-icon:hover {
        transform: scale(1.1); /* Lekkie powiększenie po najechaniu */
    }

    /* Styl dla przycisków */
    .contact-button,
    .phone-button2,
    .email-button,
    .config-button2 {
        width: 100%; /* Przycisk zajmuje całą szerokość */
        max-width: 350px; /* Ograniczenie szerokości */
        font-size: 18px; /* Wielkość czcionki */
    }

    .contact-buttons-container {
        display: flex;
        flex-direction: column; /* Układ kolumnowy */
        align-items: center; /* Wyśrodkowanie przycisków */
        gap: 20px; /* Przerwa między przyciskami */
    }

    /* Kontakt w nowej linii */
    .contact-text {
        font-size: 30px; /* Zmniejszenie czcionki */
        margin-top: 30px; /* Odstęp od przycisków */
        text-align: center; /* Wyśrodkowanie tekstu */
    }

    /* Styl dla konfiguratora */
    .config-button2 {
        width: 100%; /* Zajmuje całą szerokość */
        max-width: 350px; /* Ograniczenie szerokości */
        margin: 0 auto; /* Wyśrodkowanie */
    }
}














/* Stopka" */
.footer {
    background-color: #0f1329;
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-top: 2px solid #FF8C00;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 150px;
    flex-shrink: 0;
}

.footer-text {
    font-family: 'Recursive', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 15px;
    flex-shrink: 0;
}

.footer-info {
    font-family: 'Recursive', sans-serif;
    font-size: 13px;
    color: gray;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    text-align: right;
}

.gray-text {
    color: #a0a0a0;
}

.black-text {
    color: #ffffff;
}

.footer-info .footer-link {
    color: #FF8C00; /* Pomarańczowy kolor */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-info .footer-link:hover {
    color: #FFA500; /* Jasniejsi pomarańczowy po najechaniu */
    transform: scale(1.05);
}



/* Media queries dla wersji mobilnej */
@media (max-width: 900px) {
    /* Stopka */
    .footer {
        height: auto; /* Automatyczna wysokość */
        padding: 20px 0; /* Dodanie paddingu */
        display: flex;
        flex-direction: column; /* Układ kolumnowy */
        align-items: center; /* Wyśrodkowanie zawartości */
    }

    /* Zawartość stopki */
    .footer-content {
        display: flex;
        justify-content: center; /* Wyśrodkowanie */
        align-items: center; /* Wyśrodkowanie */
        width: 100%; /* Zajmowanie całej szerokości */
        margin: 0;
        flex-wrap: wrap; /* Pozwolenie na zawijanie */
    }

    /* Logo i Copyright w jednej linii */
    .footer-logo {
        width: 150px; /* Zmniejszenie rozmiaru logo */
        margin-right: 16px; /* Odstęp między logo a copyright */
    }

    .footer-text {
        font-family: 'Recursive', sans-serif;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
    }

    /* Info o wykonaniu strony wyśrodkowane */
    .footer-info {
        display: flex;
        justify-content: center; /* Wyśrodkowanie */
        align-items: center; /* Wyrównanie w pionie */
        width: 100%;
        margin-top: 20px; /* Odstęp od logo i copyright */
    }

    .footer-info .footer-link {
        color: #FF8C00;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-info .footer-link:hover {
        color: #FFA500;
        transform: scale(1.05);
    }
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
}






::selection {
    background-color: #FF8C00; /* Pomarańczowy kolor tła przy zaznaczeniu */
    color: white; /* Kolor tekstu przy zaznaczeniu */
}

#animacja {
    width: 100%;
    height: auto;
    align-items: flex-end; /* Wyrównanie tekstu do prawej w kontenerze */
    margin-left: auto; /* Wyrównanie .footer-info do prawej strony */
}




/* Ustawienia dla kontenera filmów */
.galeria-filmow {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 filmy w rzędzie */
    gap: 18px; /* Odstęp między filmami */
    justify-content: center;
}

/* Ustawienia dla iframe */
.galeria-filmow .gallerymovie-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1f3a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.galeria-filmow .gallerymovie-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.galeria-filmow iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Ustawienia dla dodatkowych filmów */
#filmy-dodatkowe {
    margin-top: 18px; /* Taki sam odstęp jak między filmami */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    display: none;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 900px) {
    .galeria-filmow {
        grid-template-columns: 1fr; /* Jeden film w rzędzie na mniejszych ekranach */
    }
}



/* Widoczność filmów po kliknięciu */
#filmy-dodatkowe.visible {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* Przycisk "Pokaż więcej/mniej" */
#pokaz-wiecej {
    margin-top: 20px; /* Mniejszy odstęp od filmów */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Stylizacja nagłówka "Nasze filmy" */
#nasze-filmy {
    font-size: 26px; /* Dopasowany rozmiar do "Galeria ESOX" */
    font-weight: bold;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px; /* Możesz dostosować wartość */
}

#nasze-filmy h2 {
    margin-bottom: 50px; /* Wymuszony margines */
}

#certyfikaty-grid .gallery-item img {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#certyfikaty-grid .gallery-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

/* === PRZYCZEPY - KONFIGURATOR === */
.przyczepy-intro a:hover {
    background-color: #4a9eff;
    color: #fff;
    transform: translateY(-2px);
}

.trailer-configurator {
    margin-top: 60px;
}

.trailer-model-header {
    text-align: center;
    margin-bottom: 50px;
}

.trailer-model-header h3 {
    color: #fff;
    font-size: 36px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.model-subtitle {
    color: #4a9eff;
    font-size: 18px;
    margin: 0;
}

.configurator-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Kolumna opcji */
.configurator-options {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 30px;
}

.options-title {
    color: #fff;
    font-size: 24px;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a9eff;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: rgba(74, 158, 255, 0.05);
    border-color: #4a9eff;
}

.option-item.base-price {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(37, 99, 235, 0.15));
    border: 2px solid #4a9eff;
    cursor: default;
}

.option-item.special-option {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid #10b981;
}

.option-item.special-option:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border-color: #10b981;
}

.option-item.special-option .option-price {
    color: #10b981;
}

.option-checkbox-label {
    display: block;
    cursor: pointer;
    position: relative;
}

.option-checkbox {
    display: none;
}

.option-content {
    width: 100%;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.option-checkbox:checked + .option-content {
    padding-left: 40px;
}

.option-checkbox:checked + .option-content::before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a9eff;
    font-size: 24px;
    font-weight: bold;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.option-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.option-price {
    color: #4a9eff;
    font-size: 18px;
    font-weight: 700;
}

.option-description {
    color: #999;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.option-checkbox:checked + .option-content .option-name {
    color: #4a9eff;
}

/* Kolumna podsumowania */
.configurator-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #4a9eff;
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.summary-title {
    color: #fff;
    font-size: 24px;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a9eff;
    text-align: center;
}

.summary-content {
    margin-bottom: 25px;
}

.summary-base {
    display: flex;
    justify-content: space-between;
    color: #d8d8d8;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #444;
}

.summary-options {
    margin: 15px 0;
}

.summary-option-item {
    display: flex;
    justify-content: space-between;
    color: #d8d8d8;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #555;
}

.summary-option-item:last-child {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #4a9eff;
    padding: 20px 0;
    border-top: 2px solid #4a9eff;
    margin-top: 15px;
}

.summary-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin: 15px 0 0 0;
    line-height: 1.5;
}

.trailer-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #4a9eff, #2563eb);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.trailer-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.4);
}

@media (max-width: 1024px) {
    .configurator-container {
        grid-template-columns: 1fr;
    }
    
    .configurator-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .trailer-model-header h3 {
        font-size: 28px;
    }
    
    .model-subtitle {
        font-size: 16px;
    }
    
    .configurator-options,
    .configurator-summary {
        padding: 20px;
    }
    
    .option-name,
    .option-price {
        font-size: 16px;
    }
    
    .summary-total {
        font-size: 20px;
    }
    
    /* Responsive price guarantee banner */
    .price-guarantee-section {
        padding: 30px 15px;
    }
    
    .price-guarantee-banner {
        padding: 25px 35px;
        border-radius: 12px;
    }
    
    .price-guarantee-banner::before,
    .price-guarantee-banner::after {
        font-size: 24px;
        left: 12px;
    }
    
    .price-guarantee-banner::after {
        right: 12px;
        left: auto;
    }
    
    .price-guarantee-banner p {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .price-guarantee-banner p strong {
        font-size: 24px;
    }
}

/* === MODALE PRZYCZEPY === */
.trailer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.trailer-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #4a9eff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 50px rgba(74, 158, 255, 0.3);
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.trailer-modal-content h3 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 20px 0;
}

.trailer-modal-content p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.confirm-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.confirm-item {
    display: flex;
    justify-content: space-between;
    color: #d8d8d8;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed #555;
}

.confirm-item:last-of-type {
    border-bottom: none;
}

.confirm-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: #4a9eff;
    padding: 15px 0 0 0;
    border-top: 2px solid #4a9eff;
    margin-top: 15px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: linear-gradient(135deg, #4a9eff, #2563eb);
    color: #fff;
}

.confirm-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.4);
}

.cancel-btn {
    background: #555;
    color: #fff;
}

.cancel-btn:hover {
    background: #666;
    transform: translateY(-2px);
}

/* Modal gratulacji */
.success-modal {
    border-color: #10b981;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-note {
    color: #999;
    font-size: 14px !important;
    margin-top: 15px !important;
}

@media (max-width: 768px) {
    .trailer-modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .trailer-modal-content h3 {
        font-size: 24px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* === CENNIK === */
.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Zakładki wyboru modelu */
.model-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.model-tab {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    color: #d8d8d8;
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-tab:hover {
    border-color: #4a9eff;
    color: #fff;
}

.model-tab.active {
    background: linear-gradient(135deg, #4a9eff, #2563eb);
    border-color: #4a9eff;
    color: #fff;
    box-shadow: 0 5px 20px rgba(74, 158, 255, 0.4);
}

/* Sekcje cennika */
.pricing-model {
    display: none;
}

.pricing-model.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    color: #fff;
    font-size: 36px;
    margin: 0 0 10px 0;
}

.model-specs {
    color: #4a9eff;
    font-size: 18px;
    margin: 0;
}

/* Karta ceny podstawowej */
.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #4a9eff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4a9eff, #2563eb);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured .price-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-card h3 {
    color: #fff;
    font-size: 28px;
    margin: 20px 0;
}

.price-large {
    color: #4a9eff;
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card.featured .price-large {
    color: #10b981;
}

.price-note {
    font-size: 18px;
    color: #999;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 2;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Button rozwijający wyposażenie */
.equipment-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.equipment-toggle-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFB732);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.equipment-toggle-btn .toggle-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.equipment-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.equipment-details {
    margin-top: 12px;
    padding: 15px;
    background: rgba(255, 140, 0, 0.05);
    border-left: 3px solid #FF8C00;
    border-radius: 6px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Button rozwijający sekcje cennika */
.section-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: #ffffff;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.section-toggle-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFB732);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.section-toggle-btn .toggle-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.section-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4a9eff, #2563eb);
    color: #fff;
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.4);
}

/* Sekcje z opcjami */
.pricing-section {
    margin-bottom: 50px;
}

.section-title {
    color: #fff;
    font-size: 24px;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a9eff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: rgba(74, 158, 255, 0.05);
    border-color: #4a9eff;
}

.item-name {
    color: #d8d8d8;
    font-size: 16px;
    font-weight: 500;
}

.item-price {
    color: #4a9eff;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

/* Stopka cennika */
.pricing-footer {
    margin-top: 60px;
    padding: 30px;
    background: rgba(74, 158, 255, 0.05);
    border: 1px solid #4a9eff;
    border-radius: 12px;
    text-align: center;
}

.pricing-footer p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.8;
    margin: 10px 0;
}

.pricing-footer strong {
    color: #4a9eff;
}

@media (max-width: 768px) {
    .model-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .model-tab {
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .pricing-header h2 {
        font-size: 28px;
    }
    
    .model-specs {
        font-size: 16px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-large {
        font-size: 36px;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .item-price {
        align-self: flex-end;
    }
}

/* === KARUZELA LOG MAREK ECHOSOND === */
.brands-carousel-section {
    background: transparent;
    padding: 50px 0 20px 0;
    overflow: hidden;
    position: relative;
}

.brands-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-carousel-track {
    display: flex;
    animation: scrollLogos 40s linear infinite;
    gap: 100px;
    align-items: center;
    padding: 0;
}

.brands-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.brand-logo-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background: #fafafa;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(40%) brightness(0.85);
    transition: all 0.4s ease;
}

.brand-logo-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
    .brands-carousel-section {
        padding: 0;
    }
    
    .brand-logo-item {
        width: 150px;
        height: 80px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .brands-carousel-track {
        gap: 60px;
        animation: scrollLogos 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .brands-carousel-section {
        padding: 0;
    }
    
    .brand-logo-item {
        width: 120px;
        height: 60px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .brands-carousel-track {
        gap: 40px;
        animation: scrollLogos 25s linear infinite;
    }
}

/* === KAFELKI Z LOGAMI MAREK ECHOSOND === */
.brand-category-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.brand-category-card:hover {
    border-color: #FF8C00;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.brand-logo-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.brand-category-card:hover .brand-logo-container {
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.2);
    transform: scale(1.02);
}

.brand-logo-container img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.95);
    transition: all 0.4s ease;
}

.brand-category-card:hover .brand-logo-container img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

.brand-category-card h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.brand-category-card:hover h3 {
    color: #FF8C00;
}

.brand-category-card p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.brand-category-card:hover p {
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .brand-category-card {
        padding: 30px;
    }
    
    .brand-logo-container {
        padding: 25px;
    }
    
    .brand-logo-container img {
        height: 100px;
    }
    
    .brand-category-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .brand-category-card {
        padding: 25px;
    }
    
    .brand-logo-container {
        padding: 20px;
    }
    
    .brand-logo-container img {
        height: 80px;
    }
    
    .brand-category-card h3 {
        font-size: 22px;
    }
    
    .brand-category-card p {
        font-size: 14px;
    }
}

a.category-card .category-icon img {
    transition: all 0.4s ease;
}

a.category-card:hover .category-icon img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

a.category-card:hover h3 {
    color: #FF8C00;
}

a.category-card:hover p {
    color: #333;
}

/* === PRZYCISK POWROTU === */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF8C00;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: transparent;
}

.back-button:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateX(-5px);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

/* === PRZYCISK DO FILMIKU === */
.video-button {
    color: #FF8C00;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #FF8C00;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.video-button:hover {
    background: #FF8C00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.video-button svg {
    transition: transform 0.3s ease;
}

.video-button:hover svg {
    transform: scale(1.2);
}
