/* Fonty */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --list-color: #464646;
}

/* Stylizacja nagłówka produktu */
.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Stylizacja ikony produktu */
.product-header-icon {
    margin-right: 25px;
    max-height: 10rem;
    height: auto;
    box-shadow: none !important;
    border-radius: 0 !important;
    filter: sepia(1) saturate(1000) hue-rotate(100deg) brightness(1);
}

/* Stylizacja tytułu produktu */

h2.aprd_product_header-main {
    font-size: 3.2em !important;
    color: #171717;
    margin-bottom: 0;
}

h3.product-header-title {
    font-size: 2.8em !important;
    color: #333;
}

h4.product-new-description-list-header {
    font-size: 2em !important;
    color: var(--list-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.product-new-description-list li {
    margin-top: 15px;
    font-size: 1.5em !important;
    line-height: 1.5em !important;
    color: var(--list-color);
    font-family: "Libre Franklin", sans-serif;
}


/* Stylizacja zaawansowanego opisu produktu */
.product-new-description-content p,
.product-new-description-content-main p {
    margin-top: 15px;
    font-size: 1.6em !important;
    line-height: 1.6em !important;
    color: #222222;
    font-family: "Libre Franklin", sans-serif;
}

.product-new-description-section-ports {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
}

.product-new-description-section {
    margin: 55px 5px;
}


.product-header-icon {
    width: 120px;
    /* ustalasz stałą szerokość ikony */
    margin-right: 25px;
}

.product-new-description-content {
    margin-left: 145px;
    /* 120 + 25 */
}

.aprd_product_series_banner {
    margin: 35px 0;
}

.product-layout {
    display: flex;
    align-items: flex-start;
    /* bardzo ważne */
}

.product-main {
    width: 75%;
    margin: 10px 20px;
}

/* Stylizacja nagłówków dla wersji mobilnej */
@media (max-width: 768px) {
    .product-header {
        flex-direction: column;

    }

    h2.product-header-title {
        font-size: 2.2em !important;
        text-align: center;
    }

    .product-new-description-section {
        margin: 35px 2px;
    }

    .product-new-description-content {
        margin-left: 0 !important;
    }

    .product-new-description-image {
        height: auto;
        max-width: 100%;
    }

    .product-main {
        width: 100%;
        margin: 5px;
    }

    h3.product-header-title {
        text-align: center;
    }
}

/* Floating island section */
#floatingProductIsland {
    position: sticky;
    top: 40px;
    align-self: flex-start;
    width: 25%;
    height: fit-content;
    z-index: 10;
    margin-left: 20px;
}