* {
    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;
    }
}





















.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5%;
    margin-right: 50%;
}

.main-image img {
    width: 500px;
    height:80vh;
    border: 5px solid #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.thumbnails {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.thumbnails img {
    width: 118px;
    height: auto;
    cursor: pointer;
    border: 2px solid #ccc;
    transition: transform 0.3s;
}

.thumbnails img:hover {
    transform: scale(1.1);
    border-color: #000;
}







.gal{
    margin-left: 50%;
    margin-top: -44%;
}

.gal h2{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
}


.price{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 22px;
    margin-top: 1%;
    color: #0d485d;
}


.ship{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    color: #0d485d;
    margin-top: 2%;
    font-size: 18px;
}










/* buy */


button {
    position: relative;
    
    height: 45px;
    width: 400px;
    margin: 10px 7px;
    padding: 5px 5px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: #0d485d;
    border: 2px #383736 solid;
    border-radius: 4px;
    text-transform: uppercase;
    outline: 0;
    overflow:hidden;
    background: none;
    z-index: 1;
    cursor: pointer;
    transition:         0.08s ease-in;
    -o-transition:      0.08s ease-in;
    -ms-transition:     0.08s ease-in;
    -moz-transition:    0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
margin-top: 5%;
margin-right: 21%;
  }
  
  .fill:hover {
    color: whitesmoke;
  }
  
  .fill:before {
    content: "";
    position: absolute;
    background: #0d485d;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    /* -webkit-transition: top 0.09s ease-in; */
  }
  
  .fill:hover:before {
    top: 0;
  }
  
  .fade:before{
    content:"→";
    position:absolute;
    color:#383736;
    left: 88%;
    opacity: 0;
    /* webkit-transition: all 0.2s ease-in; */
  }
  
  .fade:hover:before{
    left:91%;
    opacity:1;
  }
  




  .screen img{
    height: 13vh;
    margin-top: 3%;
    width: 53%;
  }










  .content {
    width: 53%;
    padding: 0;
    margin: 0 auto;
    margin-top: 2%;
    margin-right: 50%;
  }
  
  .centerplease {
    margin: 0 auto;
    max-width: 390px;
    font-size: 30px;
    margin-top: 4%;
  }
  
  /*Question*/
  .question {
    position: relative;
    background: #f9f9f9;
    margin: 0;
    padding: 10px 10px 10px 50px;
    display: block;
    width:100%;
    cursor: pointer;
  }
  /*Answer*/
  .answers {
    padding: 0px 15px;
    margin: 5px 0;
    width:100%!important;
    height: 0;
    overflow: hidden;
    z-index: -1;
    position: relative;
    opacity: 0;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  }
  
  .questions:checked ~ .answers{
    height: auto;
    opacity: 1;
    padding: 15px;
    
  }
  
  /*FAQ Toggle*/
  .plus {
    position: absolute;
    margin-left: 10px;
    z-index: 5;
    font-size: 2em;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
  
  }
  
  .questions:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  
  }
  
  .questions {
    display: none;
    
  }
  







  /* origin */

  .origin{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    font-size: 20px;
    margin-left: 1%;
    margin-top: 1.5%;
  }



  /* owned */
.owned{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    font-size: 20px;
    margin-left: 1%;
    margin-top: 1.5%;
  }


  
  /* add */
.add{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    font-size: 19px;
    margin-left: 1%;
    margin-top: 1.5%;
    width: 70%;
  }












  /* AFTER PRODUCT */

  /* main head */

.pro h1 {
    margin: 7% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
    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; */
margin-top: -20%;

}

.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;
    }
}














ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  /* background: #151414; */
  position: relative;
  margin-top: 6%;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  margin-right: 6%;
  /* width: 80%; */
}
.single-cta i {
  color: orange;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: orange;
}
.footer-widget ul li {
  display: inline-block;
  /* float: left; */
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: orange;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: orange;
    padding: 13px 20px;
    border: 1px solid orange;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #2f2d2d;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: orange;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: orange;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}