.p-dropdown-parent {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 1);
    padding: 40px 10px;
    color: white;


}

.animated-header .p-dropdown-parent {
    color: rgba(51, 51, 51, 1);
}

.p-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translatex(-50%);
    width: 150%;
    background-color: white;
    padding: 2px;
    gap: 2px;
    flex-direction: column;

}

.p-dropdown-parent:hover .p-dropdown-menu {

    display: flex !important;
}

.p-dropdown-menu li {
    background-color: #00BBFF;
    text-align: center;
}

.p-dropdown-menu a {
    text-align: left;
    line-height: 20px;
    padding: 10px;
    color: white;
}

#subpageheader nav .p-dropdown-parent {
    color: rgba(51, 51, 51, 1)
}

h3.main-title.left-title {
    font-size: 20px !important;
}

details h3 {
    font-size: 20px;
}

@media (max-width: 1210px) {
    .p-dropdown-menu {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .p-dropdown-parent {
        color: rgba(51, 51, 51, 1);
        padding: 20px;
    }

    .p-dropdown-menu {
        display: flex;
        position: static;
        transform: unset;
        gap: 10px;
        margin: 10px 0 0;
    }

    .p-dropdown-menu li {
        background-color: white;
        text-align: right;
    }

    .p-dropdown-menu a {
        color: rgba(51, 51, 51, 1);
        padding: 10px 0 0;
        text-align: right;
        background-color: white !important;
        transition: .5s;
    }

    .p-dropdown-menu a:hover {
        color: #00BBFF
    }
}

.accordion .accordion__item,
.accordion .accordion__label,
.accordion .accordion__content,
.accordion .accordion__content>* {
    margin: 0;
    padding: 0;
    border: none;
}

.accordion .accordion__label {
    all: unset;
    box-sizing: border-box;
}

.accordion .accordion__content p {
    font-size: 16px !important;
    line-height: 1.6;
}

details:first-of-type {
    overflow: hidden;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.accordion {
    overflow: hidden;
    border-radius: 10px;
}

.accordion .accordion__item {
    border-bottom: 1px solid #F0F0F1;
    border-radius: 0;
}

.accordion .accordion__item:last-child {
    border-bottom: none;
}

.accordion .accordion__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(90deg, #1e547f 4%, rgba(67, 138, 195, 1) 50%, #1e547f 97%);
    color: #F9F6EE;
    cursor: pointer;
    transition: background 0.35s ease;
}

.accordion .accordion__label::-webkit-details-marker {
    display: none;
}

.accordion .accordion__label {
    list-style: none;
}

.accordion .accordion__label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(90deg);
    transition: transform 0.35s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion .accordion__content {
    background: #f9f9f9;
    padding: 0 1rem;
}

.accordion .accordion__content p {
    margin: 0;
    padding: 1rem 0;
}

.accordion .accordion__label:hover {
    background: #00bbff;
    ;
}

.accordion__item[open]>.accordion__label {
    background: #00bbff;
    ;
}

.accordion__item[open]>.accordion__label::after {
    transform: rotate(270deg);
}

.accordion__item .accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-out;
}

.accordion__item[open] .accordion__content {
    grid-template-rows: 1fr;
}

.accordion__item .accordion__content>* {
    overflow: hidden;
}

.zastosowania {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}


.zastosowania h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
}

.zastosowania h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00b5ff;
    margin: 15px auto 0;
    border-radius: 2px;
}


.zastosowania-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 60px;
}

.zastosowanie {
    background: #f9fafb;
    border-left: 4px solid #00b5ff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zastosowanie:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.zastosowanie h3 {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
}




@media (max-width: 768px) {
    .zastosowania-grid {
        grid-template-columns: 1fr;
    }

    .zastosowanie.szeroka {
        grid-column: span 1;
    }
}

a {
    color: #0bf;
}

a:hover {
    color: #A52A2A;
}

.blog-recent {
    margin: 70px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.blog-heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.blog-heading span {
    display: block;
    font-weight: 300;
    color: #555;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.blog-card figure {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin: 0;
}

.offers .blog-card img {
    margin: 0px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 500px) {
    .offers .blog-card img {
        max-width: unset !important;
    }
}

.blog-info {
    margin-top: 12px;
}

.offers .blog-info p {
    text-align: left;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.blog-title-modern {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 10px;
    color: #111;
}

.blog-title-modern:hover {
    color: #0bf;
}

.blog-read {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-read:hover {
    color: #00bbff;
}

/* Mobile */
@media (max-width: 900px) {
    .blog-grid-modern {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

.blog-article-wrapper {
    max-width: 860px;
    margin: 70px auto;
    padding: 0 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

/* DUŻE ZDJĘCIE */
.blog-article-cover {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offers .blog-article-cover img {
    margin: 0px;
}

.blog-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* META (data, autor) */
.blog-article-meta {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6F7A86;
    margin-bottom: 10px;
}

/* TYTUŁ WPISU */
.blog-article-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1e547f;
    line-height: 1.25;
}

/* TREŚĆ */
.blog-article-content {
    font-size: 18px;
    line-height: 1.85;
    color: #333;
}

.blog-article-content p {
    margin: 0 0 24px;
}

/* LEKKIE, NOWOCZESNE H2 */
.blog-article-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1e547f;
    margin: 55px 0 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #00BBFF20;
}

/* LEKKIE H3 */
.blog-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 15px;
}

/* LINKI – Ice Factory style */
.blog-article-content a {
    color: #00bbff;
    text-decoration: none;
    font-weight: 600;
}

.blog-article-content a:hover {
    color: #1e547f;
}


.blog-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

div.blog-article-table {
    overflow-x: auto;
    padding: 5px;
}


div.blog-article-table::-webkit-scrollbar {
    width: 10px;

}

div.blog-article-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

div.blog-article-table::-webkit-scrollbar-thumb {
    background-color: rgba(0, 187, 255, 0.77);
    border-radius: 5px;
}

div.blog-article-table::-webkit-scrollbar-thumb:hover {
    background-color: #DC5427;
}


div.blog-article-table {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 187, 255, 0.77) #f1f1f1;
}

.blog-article-content td {
    padding: 16px 20px;
    color: #333;
    font-size: 16px;
}

.blog-article-content tr:first-child td {
    background: #1e547f;
    color: #fff;
    font-weight: 700;
    border-bottom: none;
}

.blog-article-content tr:last-child td {
    border-bottom: none;
}


.p-toc {
    background: #f4f8fb;
    border-left: 4px solid #00bbff;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 35px 0 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.p-toc summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1e547f;
}

.p-toc a {
    color: #00bbff;
}

.p-toc a:hover {
    color: #1e547f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-article-cover {
        height: 220px;
    }

    .blog-article-title {
        font-size: 26px;
    }

    .offers .blog-article-content p {
        font-size: 17px;
        text-align: left;
    }

}