*{
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Nunito", sans-serif;
}

a {
    text-decoration-line: none;
}

ul {
    margin: 0;
}

button {
    height: 48px;
    border: 0;
    background-color: #0F464A;
    border-radius: 6px;
    width: 100px;
    margin: 0 0 8px 8px;
    padding: 0;

    font-weight: bold;
    color: white;
}
button:hover{
    background-color: #2F666A;
    cursor: pointer;
}
.pasek {
    background-color: #C4D5E8;
    display: flex;
    height: 100px;
    justify-content: space-between;
}

.searchbar {
    background-color: #fefefe;
    border-radius: 12px;
    display: flex;
    align-self: center;
    width: 512px;
    margin: auto 0 auto 16px
}

.pole {
    outline: none;
    border: none;
    height: 48px;
    width: 464px;
    margin-left: 16px;
    font-size: 16px;
}

.searchbar img {
    width: 32px;
    margin-top: 8px;
    margin-right: 8px;
}

.logo {
    height: 72px;
    align-self: center;
    margin-left: 8px;
}

.icon {
    width: 48px;
}

.a {
    margin: 16px 16px 0 16px;

}

.a > p {
    text-align: center;
    margin: 0;
}

nav {
    height: 64px;
    display: flex;
    justify-content: space-around;
}

nav > a {
    align-self: center;
    width: 48px;
}

.pozycja {
    display: flex;

    font-weight: bold;
    font-size: 14px;
}

.pozycja > p {
    margin-left: 8px;
    color: black;
}

.menu_icons {
    display: flex;
}
.baner_container{
    display: flex;
    width: 70%;
    min-width: 1200px;
    max-width: 1650px;
    height: 360px;
    background-image: url("images/baner.webp");
    border-radius: 16px;
    margin: auto;
    justify-content: center;
}
.slogan {

    font-size: 40px;
    background-color: rgba(45, 45, 45, 0.70);
    border-radius: 8px;
    color: white;
    align-self: center;
    padding: 16px;
    align-content: center;
}

#slogan {
    margin: 0;
}

.oferty {

    background-color: #D9D9D9;
    border-radius: 16px;
    padding: 10px;
}

.oferty h3 {
    text-align: center;
    font-size: 2em;
    margin: 10px 0 0 0;

    color: #0F464A;
}

.oferty article {
    background-color: #E8E8E8;
    border-radius: 16px;
    width: auto;
    margin: 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.10);
}

.oferty img {
    display: block;
    height: 150px;
    margin: 5px auto 0 auto;
    border-radius: 16px;
}

.oferty h4 {
    text-align: center;
    color: #0F464A;
    font-size: 1.5em;
    margin: 10px 0;

}

.oferty p {
    text-align: center;
    color: #0F464A;
    margin: 10px 0 0 0;

}

.hot {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    max-width: 450px;
    margin-bottom: 16px;
}

.dzien article{
    width: 338px;
    height: fit-content;
}
.dzien {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    max-width: 70%;
    margin-left: 16px;
    justify-content: space-evenly;
    height: fit-content;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

footer {
    justify-content: space-around;
    padding: 10px;
    background-color: #C4D5E5;
    color: black;;
}

footer ul {
    list-style-type: none;
}

footer h4 {
    color: #0F464A;
    font-size: 1.5em;
    margin: 10px 0;
}

footer img {
    width: 32px;
}

footer .flex {
    justify-content: space-evenly;
}

footer a {
    color: black;
}

.content {
    display: flex;
    flex-direction: row;
    width: 70%;
    min-width: 1200px;
    max-width: 1650px;
    margin: auto;
    padding-top: 16px;
}

.menu_icons_mobile {
    display: none;
}

.logo_mobile {
    display: none;
}

#hamburger {
    display: none;
}

.menu_button {
    width: 64px;
    margin-top: 16px;
    margin-left: 16px;
}

.menu {
    width: 0;
    transition: width 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.30), 0 6px 6px rgba(0, 0, 0, 0.50);
    border-radius: 0 0 16px 0;
}

.menu > img {
    display: none;
}

#bar {
    cursor: pointer;
}

.menu li {
    width: 0;
    height: 0;
    transition: height, width 0.3s ease;
    overflow: hidden;
}

.menu li:hover {
    background-color: #B9B9B9;
}

.menu a > img {
    width: 64px;
    margin-right: 10px;
}

.menu a {
    text-decoration: none;
    color: #112130;
    width: 100%;
    display: flex;
    align-items: center;
}

.menu.active {
    background-color: #E9E9E9;
    width: 300px;
    height: fit-content;
    padding: 10px 0 5px;
    border-top: none;
    position: absolute;
    font-family: "Nunito-bold", sans-serif;
}

.menu.active > img {
    display: block;
    margin: 5px 0 0 5px;
    cursor: pointer;
    width: 32px;
}

.menu.active li {
    list-style: none;
    width: 290px;
    height: fit-content;
    margin: 10px 0 10px -40px;
    display: flex;
    align-items: center;
    padding: 5px 0 5px 10px;
    border-left-width: 0;
    transition: background-color 0.3s ease;
}

.menu.active ul {
    width: 300px;
    height: fit-content;
}

.menu_button {
    display: none;
    margin: 18px 0 0 10px;
}
.cena{
    font-size: 1.5em;
    color: red;
}
.oferty article:hover{
        transform: scale(1.05);
}

footer p{
  display: inline;
}
@media (max-width: 768px) {
    .baner_container {
        display: none;
    }

    .mobile_pasek {
        display: flex;
        background-color: #C4D5E5;
        height: 64px;
        justify-content: space-between;
    }
    footer {
        flex-direction: column;
        align-content: center;
    }
    .logo {
        display: none;
    }

    .logo_mobile {
        display: flex;
        margin: 8px;
        height: 64px;
        justify-content: center;
    }

    .content {
        display: flex;
        flex-direction: row;
        width: 70%;
        min-width: 1200px;
        max-width: 1600px;
        margin: auto;
        padding-top: 16px;
        flex-wrap: wrap;
    }

    .menu_icons {
        display: none;
    }

    .searchbar {
        background-color: #fefefe;
        border-radius: 12px;
        display: flex;
        align-items: center;
        width: max-content;
        margin: auto;
    }

    .pole {
        height: 48px;
        width: 90%;
        margin-left: 16px;
        font-size: 20px;
    }

    .searchbar img {
        width: 48px;
        padding-right: 8px;
    }

    nav {
        display: none;
    }

    .pozycja {
        width: 72px;
        padding-top: 8px;
    }

    .menu_icons_mobile {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin: auto;
    }

    .menu_icons_mobile p {
        display: none;
    }

    .menu_button {
        display: block;
    }

    .content {
        min-width: 0;
        width: 100%;
    }

    .oferty {
        width: 100%;
        margin: 8px auto 0 auto;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 6px rgba(0, 0, 0, 0.26);
        max-width: none;
    }

    .dzien {
        display: flex;
        align-items: center;
        border-radius: 8px;
        justify-content: space-around;
        overflow-y: hidden;
        overflow-x: auto;
        height: 420px;
    }

    .dzien article {
        background-color: #E8E8E8;
        border-radius: 12px;
        width: fit-content;
        height: fit-content;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 6px rgba(0, 0, 0, 0.26);
        display: flex;
        padding-right: 16px;
        margin: 8px auto;
    }
.row{
    display: block;
}
}
    .dzien article {
        margin-right: 8px;
    }

    .dzien article img {
        height: 350px;
        align-self: flex-end;
        padding: 8px 0 8px 8px;
    }

    .hot article {
        background-color: #E8E8E8;
        border-radius: 12px;
        width: 100%;
        height: fit-content;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 6px 6px rgba(0, 0, 0, 0.26);
        display: flex;
        padding-right: 16px;
        margin: 8px auto;

    }


    .hot img {
        height: 200px;
        align-self: flex-end;
    }

    .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }
    .lupa{
        padding: 0;
        margin-top: 0;
    }
.strike{
    text-decoration: line-through;
    color: #0F464A;
}
.row{
    display: flex;
}


