
nav.top{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    padding-bottom: 10px;
    background-color: white;
}

.top .container .logo a {
    color: grey;
    font-family: Arial, Helvetica, sans-serif;
}
.navlinks {
    position: sticky;
    top: 0;
    left: 0;
}

section.main {
    height: fit-content;
    width: 100%;
    position: relative;
}

.main .navigation {
    width: 100%;
    background-color: grey;
    height: 150px;
    position: sticky;
    top: 50px;
    margin: 0 auto;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0, 0, 0, 0.395)), url(images/stalls.jpeg);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 999;
}
.products {
    margin-top: 50px;
    z-index: 1;
}

.main .navigation .wrapper{
    width:90%;
    height:100px;
    background-color:transparent;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin: 0px auto;
    border-radius: 3px;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    justify-items: center;
    align-items: center;
}
.main .navigation .wrapper a {
    text-decoration: none;
    color: white;
    background-color: white;
    color: black;
    padding: 5px 30px;
    border-radius: 3px;
}

.main .navigation .wrapper a.recents {
    background-color: transparent;
    color: white;
    transition: 0.3s ease;
}

.main .navigation .wrapper a.recents:hover {
    background-color: white;
    color: black;
}


.main .product-container {
    width: 80%;
    margin-top: 30px;
    margin:30px auto;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    justify-items: center;
    gap:20px;
}

.main .product-container .prdct {
    width: 200px;
    overflow: hidden;
    position: relative;
    background-color: grey;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    border-radius: 3px;
}

.main .product-container .prdct a.img {
    width: 100%;;
    overflow: hidden;
    height: 150px;
}

.main .product-container .prdct a.img img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
    transition: 0.3s ease;
}

.main .product-container .prdct a.img img:hover {
    scale: 1.24;
    overflow: hidden;
}
.main .product-container .prdct .name {
    margin-top: -20px;
    background-color: grey;
   margin-bottom: 10px;
    padding: 0px 20px;
    padding-top: 5px;
    border-radius: 2px;
    z-index: 60;
}
.main .product-container .prdct .name p{
    color: orange;
    font-weight: 600;
}

.main .product-container .prdct .price {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
}
.main .product-container .prdct .price s {
    font-size: 12px;
    font-style: oblique;
    font-family: 'Courier New', Courier, monospace;
    display: inline-block;
    margin-right: 10px;
}

.main .product-container .prdct .footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-top: 10px;
    box-sizing: border-box;
}

.main .product-container .prdct .footer span:first-of-type {
    color: orange;
}

.main .product-container .prdct .footer span:last-of-type a{
    text-decoration: none;
    color: orange;
    background-color: white;
    padding: 2px 15px;
    margin-top: 20px;
    border-radius: 2px;
}

.notify{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: grey;
}