@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  /* font-family: "Source Sans Pro", sans-serif; */
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgb(151, 150, 150);
  border-radius: 6px;
}

.no-scroll {
  overflow: hidden;
}

.no-scroll-menu {
  overflow: hidden;
}

/******************************* Navigation Bar Css *******************************/
.nav-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: rgb(44, 43, 43);
  color: white;
}

.nav-bar .menu {
  padding: 10px 16px;
  font-size: 22px;
  display: none;
}

.nav-bar .menu-items {
  left: 0;
  top: 0;
  position: absolute;
  width: 50%;
  height: 100vh;
  font-size: 20px;
  font-weight: 400;
  padding: 30px 0px;
  color: white;
  background-color: rgb(44, 43, 43);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
  z-index: 102;
  /* overflow-y: scroll; */
  transition: all 0.4s ease-in-out;
}

.nav-bar .menu-items .logo {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  background-color: rgb(24, 23, 23);
}

.nav-bar .menu-items .logo img {
  width: 60%;
  text-align: left;
  display: flex;
  padding: 8px 18px;
}

.nav-bar .menu-items > i {
  position: absolute;
  right: 5%;
  top: 3%;
  cursor: pointer;
  font-size: 22px;
  color: white;
}

.nav-bar .menu-items h3 {
  font-size: 1.4rem;
  width: 100%;
  padding: 20px;
  /* padding-top: 60px; */
  padding-top: 15%;
  background-color: rgb(219, 146, 10);
}

.nav-bar .menu-items ul {
  width: 100%;
}

.nav-bar .menu-items ul li {
  width: 100%;
  list-style: none;
  padding: 20px;
  /* border-bottom: 0.1px solid white;  */
  font-size: 1rem;
}

.nav-bar .menu-items li a {
  text-decoration: none;
  color: white;
}

.nav-bar .menu-open {
  left: -50%;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.nav-bar .logo {
  width: 20%;
  padding: 7px;
  text-align: center;
}

.nav-bar .logo img {
  width: 90%;
}

.nav-bar .search {
  width: 50%;
  padding: 10px 8px;
}

.nav-bar .search .search-bar {
  padding: 0px 5px;
  background-color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar .search input {
  width: 93%;
  padding: 10px;
  outline: none;
  border: none;
  border-radius: 4px;
}

.nav-bar .search i {
  color: grey;
  width: 5%;
  font-size: 22px;
}

.nav-bar .user {
  text-align: center;
  width: 15%;
  padding: 5px;
  cursor: pointer;
}

.nav-bar .user h2 {
  font-size: 18px;
  font-weight: 400;
}

.nav-bar .user p {
  font-size: 13.5px;
  font-weight: 300;
}
/*********************** DropDown User menu ***********************/
.dropdown-usermenu {
  width: 25%;
  position: absolute;
  right: 15%;
  top: 10.5%;
  z-index: 9;
  background-color: white;
  color: grey;
  border-radius: 4px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
  display: none;
}

.dropdown-Toggle {
  display: block;
}

.dropdown-usermenu .dropdown-item {
  border-bottom: 1px solid rgb(231, 223, 223);
  width: 100%;
  height: fit-content;
}

.dropdown-usermenu .dropdown-item {
  text-align: left;
  padding: 16px;
  font-size: 18px;
}

.dropdown-usermenu .dropdown-item:hover {
  background-color: rgb(241, 239, 239);
}

.dropdown-usermenu .dropdown-item .ls-btn {
  align-self: center;
  width: 95%;
  height: 50px;
  margin: 5px;
  background-color: red;
  border: none;
  outline: none;
  border-radius: 4px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.dropdown-usermenu .dropdown-item .ls-btn:hover {
  transition: 0.3s;
  background-color: rgb(172, 21, 21);
}

.profile-container {
  width: 90%;
  height: 90vh;
  position: absolute;
  top: -100%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding: 0.5rem 0;
  text-align: center;
  transform: translate(-50%, -50%);
  background-color: rgb(232, 243, 209);
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 102;
  overflow-y: scroll;
}

.profile-toggle {
  top: 50%;
  left: 50%;
  visibility: visible;
  transition: 0.4s ease;
}

.profile-container h1 {
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.profile-container > i {
  position: absolute;
  top: 3%;
  right: 3%;
  font-size: 1.6rem;
}

.profile-container > i:hover {
  color: red;
}

.profile-container .user {
  margin: 0.5rem;
  width: 85%;
  display: flex;
  justify-content: space-evenly;
  background: linear-gradient(
    to right,
    rgba(88, 104, 43, 0.45),
    rgba(210, 233, 151, 0.25)
  );
  border-radius: 20px;
}

.profile-container .user p {
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
}

.profile-container .user .user-vector {
  width: 32%;
  padding: 1rem;
  border-right: 3px solid rgb(232, 243, 209);
  /* border-top-left-radius: 10px; */
  /* border-radius: 20px; */
}

.profile-container .user .user-vector img {
  width: 100%;
}

.profile-container .user .info {
  margin: auto;
  width: 65%;
  gap: 0.1rem;
}

.profile-container .user .info .row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.profile-container .user .info .row .label {
  width: 30%;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
  padding: 1rem;
  color: rgba(0, 0, 0, 0.8);
}

.profile-container .user .info .row .input {
  width: 70%;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.65);
  font-weight: bold;
  text-align: left;
  padding: 0.5rem 1rem;
}

.profile-container .btns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 80%;
  margin: 1rem;
}

.profile-container .btns button {
  align-self: center;
  width: 30%;
  height: 50px;
  margin: 5px;
  background-color: red;
  border: none;
  outline: none;
  border-radius: 4px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.profile-container .btns button:hover {
  transition: 0.3s;
  background-color: rgb(172, 21, 21);
}

/************************* LogIn Signup form css*************************/
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  opacity: 0.7;
  z-index: 101;
}

.ls-container {
  left: 50%;
  top: -100%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 80%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 102;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.ls-container-Toggle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  transition: all 0.6s ease-in-out;
}

.oraBg {
  width: 100%;
  height: 80%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: unset;
  align-items: center;
  background-color: orangered;
}

.oraBg i {
  position: relative;
  color: white;
  font-size: 20px;
}

.oraBg i.l {
  top: -44%;
  left: 2.5%;
}

.oraBg i.r {
  top: -44%;
  right: 2.5%;
}

.oraBg .box {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.oraBg .box h2 {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.oraBg .box button {
  cursor: pointer;
  padding: 10px 20px;
  background-color: white;
  color: #333;
  font-size: 17px;
  font-weight: bold;
  border: none;
}

.oraBg .box button:hover {
  font-size: 15px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
}

.formBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: white;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 45px rgba(0, 0, 0, 0.25);
  transition: 0.5s ease-in-out;
  overflow: hidden;
}

.formBox.active {
  left: 50%;
}

.formBox .form {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 50px;
  transition: 0.5s;
  outline: none;
}

.formBox .signinForm {
  transition-delay: 0.25s;
}

.formBox.active .signinForm {
  left: -100%;
  transition-delay: 0s;
}

.formBox .signupForm {
  left: 100%;
  transition-delay: 0s;
}

.formBox.active .signupForm {
  left: 0%;
  transition-delay: 0.25s;
}

.formBox .form form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.formBox .form form h3 {
  font-size: 1.5rem;
  color: #333033;
  margin-bottom: 20px;
  font-weight: bold;
}

.formBox .form form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  outline: none;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #333;
}

.formBox .form form input[type="submit"] {
  text-align: center;
  background: orangered;
  border: none;
  color: white;
  /* max-width: 100px; */
  cursor: pointer;
  font-weight: bold;
}

.formBox .form form input[type="submit"]:hover {
  font-size: 17px;
  background: rgb(172, 21, 21);
  transition: 0.4s;
}

.formBox .form form .forgot {
  columns: #333;
}

/*****************************************************/

.nav-bar .cart {
  padding: 15px 5px;
  text-align: center;
  width: 15%;
  cursor: pointer;
}

.nav-bar .cart h2 {
  font-size: 18px;
  font-weight: 400;
}

.nav-bar .cart h2 span {
  padding: 0 3px;
}

/****************************** Cart Slider ******************************/
.cart-slide {
  text-align: left;
  width: 0px;
  height: 89.5vh;
  position: absolute;
  right: -500px;
  top: 10.3%;
  z-index: 102;
  background-color: white;
  border-radius: 1px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.4);
  visibility: hidden;
  transition: all 0.3s;
  overflow: auto;
}

.cart-slide-Toggle {
  right: 0px;
  width: 500px;
  transition: all 0.3s;
  visibility: visible;
}

.cart-slide .top {
  color: white;
  width: 100%;
  position: sticky;
  background-color: rgb(29, 28, 28);
}

.cart-slide .top h2 {
  font-size: 20px;
  font-weight: bold;
  padding: 18px 30px;
}

.cart-slide .top h2 i {
  float: right;
}

.cart-slide .cart-items {
  width: 100%;
  padding: 20px 0px;
  color: black;
  background-color: rgb(252, 249, 249);
  /* overflow-y: scroll; */
}

.cart-slide .cart-items .cart-itm {
  padding: 10px 16px;
  color: black;
  background-color: white;
  border-bottom: 1px solid rgb(226, 225, 225);
  display: flex;
  gap: 8px;
}

.cart-slide .cart-items .cart-itm .cart-itm-img {
  width: 22%;
}

.cart-slide .cart-items .cart-itm .cart-itm-img img {
  width: 100%;
}

.cart-slide .cart-items .cart-itm .cart-itm-details {
  width: 70%;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-discount {
  display: inline-block;
  border: 1px solid green;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  padding: 1px 6px;
  color: rgb(93, 151, 93);
  background-color: rgb(217, 245, 217);
  margin: 0;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-desc {
  font-size: 18px;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price {
  padding: 4px 0px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price .item-qn {
  width: 50%;
  text-align: left;
  display: flex;
  justify-content: space-around;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price .item-p {
  width: 20%;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price .item-tp {
  width: 20%;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price i {
  font-size: 18px;
  /* margin: 0 0.2rem; */
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price input {
  width: 20%;
  text-align: center;
  font-weight: bold;
  /* margin: 0 0.5rem; */
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price i:hover {
  color: red;
}

.cart-slide .cart-items .cart-itm .cart-itm-details .cart-itm-price span {
  float: right;
}

.cart-slide .bottom {
  /* position: absolute; */
  width: 100%;
  background-color: white;
  color: gray;
  box-shadow: 0 -4px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 12px;
}

.cart-slide .bottom p {
  padding: 4px 0px;
  text-align: center;
  color: grey;
  font-size: 13px;
}

.cart-slide .bottom .proceed-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0 16px;
  width: 95%;
  height: 50px;
  margin: 5px;
  border: none;
  outline: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: red;
}

.cart-slide .bottom .proceed-btn:hover {
  transition: 0.3s;
  background-color: rgb(172, 21, 21);
}

.cart-slide .bottom .proceed-btn > div {
  width: 20%;
  text-align: center;
}

/* .cart-slide .bottom .proceed-btn span i {
  padding: 0px 4px;
  font-size: 12px;
} */

.nav-bar .menu:hover,
.nav-bar .logo:hover,
.nav-bar .search:hover,
.nav-bar .user:hover,
.nav-bar .cart:hover {
  background-color: rgb(24, 23, 23);
}
/*************************************************************************/

/************************************ Category Slider ************************************/
.category-slider {
  margin: 2px auto;
}

.slider-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-item .image {
  width: 50%;
  /* height: 100%; */
}

.slider-item .image img {
  width: 100%;
}

.slider-item .slider-item-title h2 {
  font-size: 14px;
}

.slider-btns .prev {
  top: 16%;
  left: 1%;
  position: absolute;
  z-index: 99;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: rgb(243, 237, 237);
}

.slider-btns .next {
  top: 16%;
  right: 1%;
  position: absolute;
  z-index: 99;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: rgb(243, 237, 237);
}

.slider-btns .next:hover,
.slider-btns .prev:hover {
  background-color: rgb(126, 122, 122);
  color: white;
}

/******************************** Main Section ********************************/

.main {
  border-top: 1px solid rgb(235, 233, 233);
  padding: 10px 0px;
}

.main-container {
  background-color: #fff4ef;
  /* background-color: #def2f9; */
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.main-container .vector {
  width: 50%;
}

.main-container .vector img {
  width: 100%;
}

.main-container .greetingMsg {
  width: 40%;
}

.main-container .greetingMsg h1,
.main-container .greetingMsg h2 span {
  font-size: 2.3rem;
  color: rgb(252, 88, 29);
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 2px;
}

.main-container .greetingMsg h2 {
  font-size: 2.2rem;
  color: rgb(24, 23, 23);
  font-family: "Source Sans Pro", sans-serif;
}

.main-container .greetingMsg .services {
  margin: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-container .greetingMsg .services .service {
  text-align: center;
  width: 21%;
  /* height: 25vh; */
  /* border: 2px solid black; */
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
}

.main-container .greetingMsg .services .service h4 {
  font-size: 1.05rem;
  font-weight: bold;
  color: rgb(99, 99, 99);
  padding-bottom: 4px;
  margin: 2px 8px;
}

.main-container .greetingMsg .services .service img {
  width: 90%;
  margin: 2px;
}

/***************************** category section *****************************/
.category {
  position: relative;
  overflow-x: hidden;
}

.category h1 {
  text-align: center;
  font-size: 2rem;
  padding: 0.8rem;
  color: rgba(0, 0, 0, 0.8);
}

.category .category-container,
.category .category-container-slider {
  display: flex;
  width: 99%;
  margin: 10px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.category .category-container .category-item,
.category .category-container-slider .category-item {
  width: 30%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  margin: 10px 0px;
  border-radius: 10px;
  border: 1.5px solid rgb(170, 170, 150);
  background-color: rgb(236, 236, 226);
  cursor: pointer;
}

.category .category-container .category-item i,
.category .category-container-slider .category-item i {
  color: rgb(179, 179, 0);
}

.category .category-container .category-item .category-img,
.category .category-container-slider .category-item .category-img {
  width: 30%;
}

.category .category-container .category-item .category-img img,
.category .category-container-slider .category-item .category-img img {
  width: 100%;
  height: 100%;
}

.category .category-container .category-item .category-detail,
.category .category-container-slider .category-item .category-detail {
  width: 60%;
}

.category .category-container .category-item .category-detail .offer,
.category .category-container-slider .category-item .category-detail .offer {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(179, 179, 0);
}

.category .category-container .category-item .category-detail .category-name,
.category
  .category-container-slider
  .category-item
  .category-detail
  .category-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
}

.category .category-container-slider {
  margin: 0 auto;
}

.category .category-container-slider .category-item {
  width: 80%;
  margin: 0px auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.category .category-container-slider .category-item .category-img {
  width: 60%;
}

.category .category-container-slider .category-item .category-details {
  width: 100%;
  text-align: center;
}

.category .category-container-slider .category-item i {
  display: none;
}

.category .category-slider-btns {
  display: none;
}

.category .category-slider-btns .pv {
  position: absolute;
  top: 50%;
  left: 2%;
  z-index: 99;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: rgb(243, 237, 237);
  cursor: pointer;
}

.category .category-slider-btns .nt {
  position: absolute;
  top: 50%;
  right: 2%;
  z-index: 99;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: rgb(243, 237, 237);
  cursor: pointer;
}

.category-slider-btns .nt:hover,
.category-slider-btns .pv:hover {
  background-color: rgb(126, 122, 122);
  color: white;
}

.category .category-container-slider .category-item {
  display: none;
}

/********************************** Prodcuts section **********************************/
.products {
  /* border-top: 1px solid grey; */
  width: 100%;
  position: relative;
}

.products h1 {
  text-align: center;
  font-size: 2rem;
  padding: 0.6rem 0;
  padding-top: 1.2rem;
  color: rgba(0, 0, 0, 0.8);
}

.products .product-cate {
  margin: 10px;
  overflow: hidden;
}

.products .product-cate h2 {
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
  color: rgba(0, 0, 0, 0.7);
}

.products .product-cate h2 span {
  font-size: 1rem;
  float: right;
  color: red;
}

.products .product-cate .cate-products {
  margin: 0.8rem auto;
}

.products .product-cate .cate-products a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.products .product-cate .cate-products .prdct {
  /* width: 30%; */
  height: fit-content;
  margin: 2px 10px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.products .product-cate .cate-products .prdct:hover {
  border: 1px solid rgb(236, 234, 234);
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
}

.products .product-cate .cate-products .prdct .seeMore {
  padding: 45% 0;
}
.products .product-cate .cate-products .prdct .seeMore a {
  text-decoration: none;
  color: red;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.products .product-cate .cate-products .prdct .prdct-img {
  width: 50%;
  margin: 1rem 0;
}

.products .product-cate .cate-products .prdct .prdct-img img {
  width: 100%;
  transition: 0.3s ease;
  margin-top: 0.5rem;
}

.products .product-cate .cate-products .prdct .prdct-img img:hover {
  margin-top: 0;
  transition: 0.3s ease;
}

.products .product-cate .cate-products .prdct .prdct-details {
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.products .product-cate .cate-products .prdct .prdct-details .prdct-name {
  font-size: 19px;
  font-weight: 600;
  color: rgb(37, 37, 37);
}

.products .product-cate .cate-products .prdct .prdct-details .prdct-unit {
  font-size: 16px;
  font-weight: 700;
  color: rgb(105, 104, 104);
}

.products .product-cate .cate-products .prdct .prdct-details .prdct-price {
  font-size: 20px;
  font-weight: 800;
}

.products .product-cate .cate-products .prdct .atc {
  width: 90%;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
  border-radius: 2px;
  background-color: orangered;
  height: fit-content;
  margin: 5px 0;
  cursor: pointer;
}

.products .product-cate .cate-products .prdct .atc:hover {
  transition: 0.3s ease;
  background-color: rgb(185, 26, 26);
}

.products .product-cate .cate-products .prdct-desc {
  text-align: center;
  width: 90%;
  border-top: 1px solid grey;
  margin: 0.5rem 0;
  padding: 1rem 0;
}

.products .product-cate .cate-products .prdct-desc a {
  text-decoration: none;
  color: orangered;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

/*************************** Single Product Specs modal css ***************************/
.product-specs {
  width: 90%;
  height: 90vh;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 102;
  overflow-y: scroll;
}

.product-specs-toggle {
  top: 50%;
  left: 50%;
  visibility: visible;
  transition: 0.4s ease;
}

.product-specs > i {
  position: absolute;
  top: 3%;
  right: 3%;
  font-size: 1.6rem;
}

.product-specs i:hover {
  color: red;
}

.product-specs .product-single {
  width: 90%;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.product-specs .product-single .product-imgs {
  width: 50%;
  text-align: center;
}

.product-specs .product-single .product-imgs > img {
  width: 70%;
}

.product-specs .product-single .product-imgs .product-other-imgs {
  display: flex;
  justify-content: space-evenly;
}

.product-specs .product-single .product-imgs .product-other-imgs .small-imgs {
  width: 22%;
  padding: 0.5rem;
  margin-top: 1rem;
  background-color: whitesmoke;
}

.product-specs
  .product-single
  .product-imgs
  .product-other-imgs
  .small-imgs:hover {
  border: 1px solid rgb(202, 199, 199);
  transition: 0.4s ease;
}

.product-specs
  .product-single
  .product-imgs
  .product-other-imgs
  .small-imgs
  img {
  width: 100%;
}

.product-specs .product-single .product-desc {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
  margin: 0 0.2rem;
}

.product-specs .product-single .product-desc .product-category {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(139, 138, 138);
  margin-bottom: 0.5rem;
}

.product-specs .product-single .product-desc .product-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: black;
  margin: 0.5rem 0;
}

.product-specs .product-single .product-desc .product-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgb(48, 47, 47);
}

.product-specs .product-single .product-desc > div {
  margin: 1rem 0;
}

.product-specs .product-single .product-desc input {
  width: 10%;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-right: 1rem;
}

.product-specs .product-single .product-desc .product-instock {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: green;
}

.product-specs .product-single .product-desc > div .atc {
  width: 65%;
  border: none;
  outline: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 5px 0;
  border-radius: 2px;
  background-color: orangered;
  height: fit-content;
  /* margin: 5px 0; */
  cursor: pointer;
}

.product-specs .product-single .product-desc > div .atc:hover {
  transition: 0.3s ease;
  background-color: rgb(185, 26, 26);
}

.product-specs .product-single .product-desc .specs h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.product-specs .product-single .product-desc .specs p {
  margin: 0.5rem 0;
}

/************************************ Products Page css ************************************/
.stickyDiv {
  margin: 0 auto;
  display: flex;
  border-bottom: 1px solid rgb(236, 234, 234);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
}

.stickyDiv .prdct-head {
  color: grey;
  padding: 1rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgb(236, 234, 234);
  font-weight: 600;
}

.stickyDiv .prdct-head p {
  font-size: 1.2rem;
}

.stickyDiv .prdct-cates::-webkit-scrollbar {
  height: 6px;
}

.stickyDiv .prdct-cates::-webkit-scrollbar-thumb {
  background: rgb(236, 234, 234);
  border-radius: 4px;
}

.stickyDiv .prdct-cates {
  height: 65px;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
}

.stickyDiv .prdct-cates .prdct-cates-item {
  margin: 0.5rem;
  color: grey;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(236, 234, 234);
  border-radius: 12px;
  width: fit-content;
}

.stickyDiv .prdct-cates .prdct-cates-item p {
  font-size: 1.05rem;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

.stickyDiv .prdct-cates .prdct-cates-item:hover {
  background-color: rgb(236, 234, 234);
  border-radius: 0;
  transition: border-radius 0.4s;
}

.category-products {
  width: 90%;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(236, 234, 234);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
}

.category-products h1 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 1rem 0.5rem;
  color: rgba(0, 0, 0, 0.8);
}

.category-products .cate-products {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.category-products .cate-products .prdct {
  width: 30%;
  margin: auto 10px;
  height: fit-content;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.category-products .cate-products .prdct:hover {
  border: 1px solid rgb(236, 234, 234);
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
}

.category-products .cate-products .prdct .prdct-img {
  width: 50%;
  margin: 1rem 0;
}

.category-products .cate-products .prdct .prdct-img img {
  width: 100%;
  transition: 0.3s ease;
  margin-top: 0.5rem;
}

.category-products .cate-products .prdct .prdct-img img:hover {
  margin-top: 0;
  transition: 0.3s ease;
}

.category-products .cate-products .prdct .prdct-details {
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.category-products .cate-products .prdct .prdct-details .prdct-name {
  font-size: 19px;
  font-weight: 600;
  color: rgb(37, 37, 37);
}

.category-products .cate-products .prdct .prdct-details .prdct-unit {
  font-size: 16px;
  font-weight: 700;
  color: rgb(105, 104, 104);
}
.category-products .cate-products .prdct .prdct-details .prdct-price {
  font-size: 20px;
  font-weight: 800;
}

.category-products .cate-products .prdct .atc {
  width: 90%;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
  border-radius: 2px;
  background-color: orangered;
  height: fit-content;
  margin: 5px 0;
  cursor: pointer;
}

.category-products .cate-products .prdct .atc:hover {
  transition: 0.3s ease;
  background-color: rgb(185, 26, 26);
}

.category-products .cate-products .prdct-desc {
  text-align: center;
  width: 90%;
  border-top: 1px solid grey;
  margin: 0.5rem 0;
  padding: 1rem 0;
}

.category-products .cate-products .prdct-desc a {
  text-decoration: none;
  color: orangered;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

/***************************** download app section css *****************************/
.downloadApp {
  width: 100%;
  margin: 2rem auto;
  margin-bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(154, 248, 46, 0.15),
    rgba(114, 230, 69, 0.062),
    rgba(0, 255, 34, 0.116)
  );
  padding: 1.5rem 0;
}

.downloadApp .phone {
  width: 30%;
  text-align: right;
}

.downloadApp .phone img {
  width: 50%;
}

.downloadApp .app-links {
  width: 70%;
  text-align: center;
}

.downloadApp .app-links h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 1rem;
}

.downloadApp .app-links h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.5rem;
}

.downloadApp .app-links h1 span {
  color: orangered;
}

.downloadApp .app-links .stores {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  margin: 1rem auto;
}

.downloadApp .app-links .stores a {
  width: 42%;
}

.downloadApp .app-links .stores a:hover {
  width: 45%;
  transition: 0.4s ease-in-out;
}

.downloadApp .app-links .stores a img {
  width: 100%;
}

/**************************** footer section css ****************************/
footer {
  width: 100%;
  background-color: #f8f8f8;
  padding: 2rem 2.5rem;
}

footer .first {
  width: 100%;
  /* border: 1px solid grey; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem auto;
}

footer .first .comName {
  width: 30%;
  text-align: left;
  vertical-align: bottom;
}

footer .first .comName img {
  width: 65%;
}

footer .first .getintouch {
  text-align: right;
}

footer .first .getintouch .head {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer .first .getintouch span {
  font-size: 16px;
  font-weight: 600;
  color: grey;
}

footer .second {
  display: flex;
  width: 100%;
  /* border: 1px solid grey; */
  display: flex;
  justify-content: space-between;
  margin: 0.5rem auto;
}

footer .second .categories {
  width: 40%;
  /* border: 1px solid grey; */
}

footer .second .categories .head,
footer .second .about .head,
footer .second .foryou .head,
footer .second .app-links .head {
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

footer .second .categories .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

footer .second .categories .items > div {
  width: 48%;
  margin: 0.5rem 0;
}

footer .second .about .items > div,
footer .second .foryou .items > div {
  width: 100%;
  margin: 0.5rem 0;
}

footer .second .about,
footer .second .foryou,
footer .second .app-links {
  width: 18%;
}

footer .second .categories .items a,
footer .second .about .items a,
footer .second .foryou .items a,
footer .second .app-links .items a {
  width: 100%;
  color: grey;
  text-decoration: none;
}

footer .second .categories .items a:hover,
footer .second .about .items a:hover,
footer .second .foryou .items a:hover,
footer .second .app-links .items a:hover {
  color: black;
}

footer .second .app-links .items > div {
  width: 100%;
  margin: 0.5rem 0;
}

footer .second .app-links .items a img {
  width: 80%;
  text-align: center;
}

footer .third {
  width: 100%;
  margin: 1rem auto;
  border-top: 1px solid rgb(197, 196, 196);
  text-align: center;
}

footer .third p {
  margin: 0.5rem auto;
  font-size: 14px;
  font-weight: 300;
  color: black;
  letter-spacing: 1px;
}
