* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}




/* nav1 */
.nav1 {
    background: #0d485d;
    /* font-size: 16px; */
    text-align: center;
    color: white;
    text-decoration: none;
    height: 35px;
    padding-top: 8px;
}

.nav1 h4 {
    font-size: 18px;
}




.navbar {
    position: relative;
    display: flex;
    padding: 10px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    /* -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
    /* -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
}

.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-items>ul>li>a {
    color: black;
    text-decoration: none;
}

.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: #0d485d;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.nav-button {
    background-color: #0d485d;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#hamburger-menu,
#mobile-menu {
    display: none;
    color: #0d485d;
}

@media only screen and (max-width: 770px) {
    #mobile-menu {
        background-color: #0d485d;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        z-index: 1000;
    }

    .mobile-nav-items>ul {
        padding: 0px;
    }

    .mobile-nav-items>ul>li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }

    .mobile-nav-items>ul>li>a {
        color: white;
        text-decoration: none;
    }

    .mobile-nav-items>ul>li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-items>ul>li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items>ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: #0d485d;
        cursor: pointer;
        font-size: 24px;
    }
}










/* main head */

.pro h1 {
    margin: 4% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 50px;
    color: #0d485d;
    text-align: center;
}



/* Responsive styles */
@media (max-width: 768px) {
    .pro h1 {
        font-size: 28px;
        margin-top: 5%;
    }

}

@media (max-width: 480px) {
    .pro h1 {
        font-size: 24px;
        margin-top: 8%;
    }

}




















/* Popular Fragrance */


.product-grid {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    /* height: 60vh; */


}

.product-grid .product-image {
    overflow: hidden;
    position: relative;
}

.product-grid .product-image a.image {
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: 45vh;
}

.product-grid .product-image .pic-1 {
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-1 {
    transform: translateX(100%);
}

.product-grid .product-image .pic-2 {
    width: 100%;
    height: 100%;
    transform: translateX(-101%);
    position: absolute;
    /* top: 0; */
    left: 0;
    transition: all 0.3s ease 0s;
}

.product-grid .product-image:hover .pic-2 {
    transform: translateX(0);
}

.product-grid .product-sale-label {
    color: #fff;
    background: var(--bs-hover);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-grid .product-like-icon {
    color: #696969;
    font-size: 22px;
    line-height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.product-grid .product-like-icon:after {
    content: '';
    height: 15px;
    width: 15px;
    padding: 0;
    transform: translateX(-50%) rotate(45deg);
    right: auto;
    left: 50%;
    top: 15px;
    z-index: -1;
}

.product-grid .product-like-icon:hover:before,
.product-grid .product-like-icon:hover:after {
    visibility: visible;
    top: 30px;
}

.product-grid .product-links {
    width: 170px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links {
    bottom: 40px;
    opacity: 1;
}

.product-grid .product-links li {
    display: inline-block;
    margin: 0 2px;
}

.product-grid .product-links li a {
    color: #fff;
    background: #192a56;
    font-size: 16px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease 0s;
}

.product-grid:hover .product-links li a:hover {
    background: #333;
}

.product-grid .product-content {
    text-align: left;
    padding: 15px 0 0;
}

.product-grid .title {
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.product-grid .title a {
    color: #333;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.product-grid .title a:hover {
    color: var(--bs-hover);
}

.product-grid .price {
    color: var(--bs-hover);
    font-size: 16px;
    font-weight: 500;
}

.product-grid .price span {
    color: #555;
    font-size: 12px;
    font-weight: bold;
    /* text-decoration: line-through; */
    margin: 0 5px 0 0;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin: 0 0 30px;
    }
}