.product-section {
    padding-top: 140px;
    max-width: 1600px;
    margin: 0px auto;
    min-height: 100vh;
    width: 80vw;
    color: var(--white);
}


.product-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 0px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.colors-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wyposazenie .item,
.color {
    width: calc((100% / 6) - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}



.color img {
    width: 100%;
    object-fit: contain;
    flex: 1;
}

.color-name {
    text-align: center;
}

.main-desc {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.product {
    display: flex;
    gap: 20px;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.product.vertical {
    flex-direction: row;
}

.product ul {
    padding-left: 15px;
}

.product .images {
    display: flex;
    flex: 1;
    gap: 20px
}

.product .images img {
    width: 100%;
    object-fit: contain;
    max-height: 250px;
}

.product .text {
    display: flex;
    ;
    gap: 15px;
    ;
    flex-direction: column;
    flex: 3
}

.product .text p.bold {
    font-weight: 600;
    margin-bottom: 0;
}

.przykladowe {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0
}

.wyposazenie h3,
.przykladowe h3 {
    width: 100%;
}


.przykladowe .item {
    flex: 1;
    min-width: 150px;
    max-width: 150px;
}

.wyposazenie .item img,
.przykladowe .item img {
    width: 100%;
    object-fit: contain;
}

.wyposazenie {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 30px 0
}

.kolorystyka h4 {
    text-align: center;
    margin: 20px 0 10px
}

@media screen and (max-width:995px) {

    .wyposazenie .item,
    .color {
        width: calc((100% / 5) - 10px);
    }
}

@media screen and (max-width:860px) {

    .wyposazenie .item,
    .color {
        width: calc((100% / 3) - 10px);
    }

    .product.vertical {
        flex-direction: column;
    }
}

@media screen and (max-width:600px) {

    .wyposazenie .item,
    .color {
        width: calc((100% / 2) - 10px);
    }
}

@media screen and (max-width:440px) {

    .wyposazenie .item,
    .color {
        width: 100%;
    }
}

.wyposazenie.small {
    justify-content: space-between;
}

.wyposazenie.small .item {
    max-width: 32%;
    width: 40%;
    min-width: 200px;
}

@media screen and (max-width:776px) {

    .wyposazenie.small {
        justify-content: center;
    }

    .wyposazenie.small .item {
        max-width: 300px;
        width: 100%;
        min-width: 200px;
    }
}


.wyposazenie.center {
    justify-content: center;
}