
.logo{
    width:50px;
	height: 50px;
    background-image:url("../img/logoo.jpeg");
	margin-left: 21px;
	color:#d4bfa2;  }
.icon{
	width:30px;
	margin:auto;
	color: #ac851b;
}
.nav-link.active{
	background-color:transparent;
	border-radius: 3px 2px 2px 3px;
    transition:0.1 ease;
}
.nav-link:hover, active{
/*	background-color:hsla(64,21%,44%,1.00);*/
	border-radius: 3px 2px 2px 3px;
	border-style: groove;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color:#242222;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color:#242222;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color:#242222;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background:white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color:#242222;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
li a .dropdown-item{
  width: 100%;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 70px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color:#242222;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background:white;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background:#c0a457;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background:#c0a457;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
      font-size: 15px;
  }
}
@media (max-width:800px){
nav{
     position:fixed; 
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: white;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #242222;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  left: 0;
  box-shadow: none;
  display: none;
  background-color: white;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
  background-color: white;
  width: 100%;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  width: 100%;
  background-color:white;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-between;
  width: 100%;
  background-color: white;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;

} 
}

.search-box {
  position: relative;
  height: 40px;
  width: 70px;
}

.search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #242222;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: white;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #c0a457;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.result-box {
  max-height: 300px;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
}

.navbar.showInput .result-box {
  display: block;
}

.result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.result-box li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.result-box li:hover {
  background: #f0f0f0;
}

.result-box a {
  text-decoration: none;
  color: #333;
}
.result-box {
  max-height: 300px;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);}
  

.btnl {
  background-color:rgb(84, 135, 168);
  color: white;
  font-weight: lighter;
  font-family:Verdana, Geneva, Tahoma, sans-serif ;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  height:50px;
	transition: 0.7 ease-in;
}

/* Add a hover effect for buttons */
.btnl:hover {
  opacity: 0.8;
	color:rgb(84, 135, 168);
	background-color: white;
}

.input-text{
 background-color:transparent;
 border: none;
 width:10%;
 text-align: center;
 }
 .minus {
  background-color: #a2c1d4;
  border-radius: 100%;
  border: none;
  width: 6%;
  cursor: pointer;
}
.plus {
  background-color: #a2c1d4;
  border-radius: 100%;
  width: 6%;
   border: none;
  cursor: pointer;
}
.counter-container {
    display: flex;
    align-items:left;
    justify-content:left;
    font-size:20px;
}
.pr{
  background-color:azure;
}

/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }
  .magic{
    background-color: #b6915a;
  }
  .tx{
    font-size:20px;
  }

  /* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #99966e;
  color: white;
  width: 80%;
  font-size: 12px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  width:20%;
  height:80px;
  border: 1px solid gainsboro;
  outline: none;
  color: white;
  font-size:smaller;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #a18e36;
  width:20%;
  height: 80px;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color:#a18e36;
  width: 20%;
  height: 80px;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}


div.gallery {
  display: grid;
  margin: 20px auto;
  border: 1px solid rgb(189, 183, 183);
  border-radius: 5%;
  background-color: white;
  /* border: 1px solid #ddd;
  border-radius: 10px; */
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

div.gallery:hover {
  transform: scale(1.05);
  border-radius: 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}
.product-text {
  text-align: center;
  color:gray;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}


@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.mystyle {
  width: 100%;
  color: rgb(59, 58, 58);
  font-size: 16px;
}
.shop a{
  color: rgba(89, 150, 173);
  text-decoration: none;
}
.shop a:hover{
  color: rgb(60, 113, 133);
  text-decoration: none;
}
.sidebar a {
    font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    text-decoration: none;
    line-height:35px;
    font-size: 16px;
    color:black;
  
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidebar a:hover {
    color:#ac851b;
  }

  .sidebarp a {
    font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    text-decoration: none;
    line-height:35px;
    font-size: 16px;
    color:gray;
  
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidebarp a:hover {
    color:#ac851b;
  }

/*Footer*/
.fa-instagram{
  background-color: hsla(358,78%,20%,1.00);
  color: white;
  border-radius:50px 50px 50px 49px;
}
.fa-facebook{
  color:#2156b0;
  background-color:white;
  border-radius:52px 52px 52px 52px;
}
.fa-tiktok{
  color: white;
  background-color:black;
}
footer li a, p a {
text-decoration: none;
color:#2e2f30;
}
footer li a:hover{
text-decoration: none;
color:rgb(158, 138, 86);
}
footer p a:hover{
text-decoration: none;
color:rgb(158, 138, 86);
}