body{
    margin: 0;
    background-color: #fff;
}

:root {
    --main-bg-color: #171717;
  }

/* NAWIGACJA */

.logo{
    font-family: Andale Mono, monospace;
    font-size: 20px;
    margin-right: 20px;
    margin-left: 10px;
}

.navbar{
    background-color: #fff;
}

.navbottom{
    width: 100%;
    height: 10px;
    background-color: var(--main-bg-color);
    margin-top: 45px;
}

li{
    list-style-type: none;
}

.nav-item{
    margin-right: 10px;
}

.socials{
    margin-left: auto;
}

@media only screen and (max-width: 992px) {
    .nav-item{
        margin-bottom: 5px;
        margin-left: 10px;
    }

    .nav-brand{
        margin-top: 5px;
    }

    .socials{
        margin-top: 10px;
    }
}

/*STRONA GLOWNA*/

.main-section{
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}



.main-section-element{
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    transform: skew(-10deg);
    transition-duration: 0.5s;
    width: 90%;
    margin-bottom: 40px;
    background-color: var(--main-bg-color);
    border-radius: 5px;
}

.main-section-element:hover{
    width: 100%;
    
}

.main-section-element a{
    width: 100%;
    text-align: center;
    font-size: 35px;
    display: grid;
    align-items: center;
    font-weight: 500;
    height: 100%;
    font-family: Andale Mono, monospace;
    text-decoration: none;
    color: aliceblue;
}

.bestseller-label{
    font-size: 40px;
    font-weight: 600;
}

.bestsellers-line{
    width: 280px !important;
    height: 20px;
    margin-left: 40px;
    background-color: var(--main-bg-color);
}

/*PRODUKTY*/

.product-item{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    /* display: grid; */
    /* grid-template-rows: 30% 70%; */
    display: flex;
    flex-direction: column;
    height: auto;
    aspect-ratio: 2/4;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-top{
    width: 100%;
    height: 180px; /* lub inna optymalna wysokość */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.product-bottom {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: flex-start;
    padding-bottom: 0;
    min-height: 0;
}

.product-price{
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-bg-color);
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: aliceblue;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    min-height: 60px;
}

.product-description{
    padding: 10px;
}

.product-category-divider{
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 30px;
}

.product-name {
    font-size: 30px;
    border-bottom: 5px #171717 solid;
    color: rgb(22, 22, 22);
    font-weight: 500;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px 0;
    word-break: break-word;
    text-align: center;
}
