.productNavDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
    position: sticky;
    top: -165px;
    z-index: 999;
}

.productNavItems {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 10px;
    background: #336a00;
    border: none;
    border-radius: 20px;
    width: 100%;
}

.productNavItems li {
    margin: 10px;
    font-size: large;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

/* Dropdown base styles */
.dropDown {
    position: relative;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dropDown img{
    width: 100%;
    height:100%;
    margin: 15px;
}

/* Hidden by default */
.dropDownMenu {
    display: none;
    position: absolute;
    top: 100%;
    /* Show below parent */
    left: 0;
    background: #89c8b9;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.dropDownMenu li {
    padding: 10px 20px;
    color: white;
    white-space: nowrap;
    cursor: pointer;
}

.dropDownMenu li:hover {
    background: #67ffdc;
}

/* Show menu on hover */
.dropDown:hover .dropDownMenu {
    display: grid;
    grid-template-columns: repeat(4, auto);
}



.headDiv, .premiumProductsContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    overflow: hidden;
}
.premiumProductsContainer{
    height: max-content;
}
.headDiv h1, .premiumProductsContainer h1 {
    font-size: 45px;
    font-weight: bold;
    color: #106820;
}

.allPrdtImg {
    width: 18%;
}

.allPrdtImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productsDiv, .premiumProductsDiv {
    /* background: #6efff3; */
    border-radius: 14px;
    width: 80%;
    padding: 20px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 10px;
}

.productDiv {
    background: #e2f9b4;
    border-radius: 10px;
    height: 300px;
    padding: 10px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.productDiv img {
    /* width: 100%; */
    height: 90%;
}

.productDiv h3 {
    text-align: center;
    padding: 5px;
}

/* Product Info */
.wrapper {
    z-index: 1001;
    position: fixed;
    /* margin: auto; */
    top: 20%;
    left: 24%;
    width: 800px;
    height: 440px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height .2s ease;
    overflow: hidden;
    transform: scale(0);
    transition: transform .3s ease, height .2s ease;
}

.wrapper.active-popup {
    transform: scale(1);
}

.wrapper.active {
    height: 520px;
}

.wrapper .icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: #162938;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
    z-index: 1;
}

.close-image {
    width: 30px;
}

.infoDiv {
    width: 90%;
    height: 80%;
    /* margin: 20px auto; */
}

.informDiv {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    margin: auto auto;
}

.infoDivLeft {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 20px;

}

.infoDivLeft img {
    width: 100%;
}

.infoDivRight {
    display: flex;
    flex-direction: column;
    flex: 2;
    justify-content: center;
    margin: 20px;
    line-height: 28px;

}