* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  block-size: none;
  text-decoration: none;
  list-style: none;
  font-family: "Rubik", sans-serif;
  font-family: "Jost", sans-serif;
}
body {
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}
p {
  color: var(--parg-color);
}
a {
  text-decoration: none;
}
:root {
  --main-color: #1c1c50;
  --dark-color: #222222;
  --parg-color: #666666;
  --dark-red: #d01418;
  --border-color: #6666662a;
  --name-item: #0066c0;
  --white: white;
}

/*! ----------------------------Build Nav + Header----------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #3498db;
  margin-bottom: 300px;
}
header .container-nav {
  width: 100%;
}
@media (min-width: 1600px) {
  .container-nav {
    width: 100%;
  }
}
header .container-nav .top-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c50;
}
header .container-nav .top-nav p {
  font-size: 13px;
  color: white;
  margin: 2px 10px;
}
header .container-nav .top-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 2px 5px;
}
header .container-nav .top-nav ul li a {
  color: white;
  font-size: 14px;
}
header .container-nav .top-nav i {
  color: white;
  font-size: 13px;
}
.media-icons {
  display: flex;
  gap: 10px;
}
/*?---------------------------Responsive Top Nav---------------------------*/
@media (max-width: 795px) {
  header .container-nav .top-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 511px) {
  header .container-nav .top-nav ul {
    display: none; /*flex to none */
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
/*?---------------------------End of Responsive---------------------------*/

/*?---------------------------Middle Nav ---------------------------*/
header .container-nav .middle-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  margin: 0; /* added to fix mobile view  */
  background-color: #ffffff;
}
header .container-nav .middle-nav .logo img {
  width: 140px;
  background-color: #1c1c50;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 600;
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.5);
  border-right: 2px solid #1c1c50;
}
header .container-nav .middle-nav .break-line {
  padding-right: 10px;
  border-right: 2px solid rgba(255, 0, 0, 0.411);
}
header .container-nav .middle-nav .our-email {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 5px;
  margin: 10px;
}
@media (max-width: 795px) {
  header .container-nav .middle-nav .our-email {
    display: none; /*flex to none  */
  }
}
header .container-nav .middle-nav .our-email .contact-info {
  display: flex;
  flex-direction: column;
}
header .container-nav .middle-nav .our-email .contact-info p {
  font-size: 13px;
  font-weight: 500;
}
header .container-nav .middle-nav .our-email i {
  font-size: 40px;
  color: rgb(99, 99, 99);
}
header .container-nav .middle-nav .search {
  width: 300px;
  height: 30px;
  /* border: 2px solid rgb(8, 195, 252); */
  position: relative;
  border-radius: 10px;
}
header .container-nav .middle-nav .search input {
  padding: 0px 120px 0px 15px;
  border-radius: 10px;
  outline: none;
  border: 1px solid #1c1c50;
  width: 300px;
  height: 30px;
}
header .container-nav .middle-nav .search input::placeholder {
  font-size: 12px;
  font-weight: 700;
}
header .container-nav .middle-nav .search button {
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
  border: none;
  width: 100px;
  background-color: #1c1c50;
  height: 100%;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
header .container-nav .middle-nav .search button #search-icon :hover {
  color: rgba(218, 31, 31, 0.863);
  cursor: pointer;
  transform: scale(1.3);
  transition: 0.3s ease-in-out;
}
header .container-nav .middle-nav .icons {
  display: flex;
  gap: 10px;
  margin: 10px;
  justify-content: center;
  align-items: center;
}
header .container-nav .middle-nav #user-icon {
  padding: 10px;
  border: 1px solid;
  border-radius: 50px;
  background-color: #52525267;
  color: white;
}
header .container-nav .middle-nav #user-icon:hover {
  background-color: white;
  color: black;
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}
header .container-nav .middle-nav #fav-icon {
  padding: 10px;
  border: 1px solid;
  border-radius: 50px;
  color: white;
  background-color: #52525267;
}
header .container-nav .middle-nav #fav-icon:hover {
  background-color: rgb(209, 62, 62);
  color: white;
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}
header .container-nav .middle-nav .cart_header {
  border: 1px solid;
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
  background-color: #52525267;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
header .container-nav .middle-nav .cart_header .count_item {
  position: absolute;
  background-color: rgb(255, 255, 255);
  font-size: 10px;
  font-weight: 700;
  color: #1c1c50;
  width: 12px;
  height: 12px;
  line-height: 11px;
  border-radius: 50%;
  text-align: center;
  top: 10px;
  right: 5px;
  border: 1px solid white;
}
header .container-nav .middle-nav .cart_header .cost {
  font-size: 12px;
  font-weight: 500;
}
header .container-nav .middle-nav .cart_header:hover {
  background-color: green;
  color: white;
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}
/*? ---------------------------Responsive middle Nav---------------------------*/
@media (max-width: 725px) {
  header .container-nav .middle-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-bottom: 5px solid var(--main-color);
  }
  header .container-nav .middle-nav a p {
    border: none;
  }
}
/*?---------------------------gz added part to fix mobile---------------------------*/
@media (max-width: 870px) {
  .logo {
    margin-bottom:7px;
    padding-top: 10px;
  }
}
/*Mobile view*/
@media (max-width:337px){
  header .container-nav .middle-nav .search button{
    position: absolute;
    top: 0;
    right: 0;
    outline: none;
    border: none;
    width: 50px;
    background-color: #1c1c50;
    height: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  header .container-nav .middle-nav .search {
    width: 200px;
    height: 30px;
    /* border: 2px solid rgb(8, 195, 252); */
    position: relative;
    border-radius: 10px;
  }
  header .container-nav .middle-nav .search input {
    padding: 0px 20px 0px 20px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #1c1c50;
    width: 200px;
    height: 30px;
  }
}
/*?---------------------------End of Responsive---------------------------*/

/*?---------------------------End Nav Final part---------------------------*/
header .container-nav .end-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c50;
}
header .container-nav .end-nav ul {
  display: flex;
  gap: 70px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
header .container-nav .end-nav ul li a {
  color: white;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}
header .container-nav .end-nav ul li {
  position: relative;
  padding: 20px 0;
}
header .container-nav .end-nav ul li::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s ease-in-out;
}
header .container-nav .end-nav ul li.active::after,
header .container-nav .end-nav ul li:hover::after {
  width: 100%;
  transition: 0.3s ease-in-out;
}

/*?---------------------------Login, sign up 's div---------------------------*/
header .container-nav .end-nav .loging_signup {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 10px;
}

/*?---------------------------Login icon---------------------------*/
header .container-nav .end-nav #login_icon {
  color: white;
  margin: 2px;
  padding: 5px;
}
header .container-nav .end-nav #login_icon:hover {
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}
header .container-nav .end-nav #login_icon i,
header .container-nav.end-nav #sign_up_icon i {
  margin: 5px;
}

/*?---------------------------Sign Up icon---------------------------*/
header .container-nav .end-nav #sign_up_icon {
  color: white;
  margin: 2px;
  padding: 5px;
}
header .container-nav .end-nav #sign_up_icon:hover {
  transform: scale(1.2);
  transition: 0.3s ease-in-out;
}
header .end-nav ul .btn_close_menu,
header .middle-nav .icons #box-menu-icon,
header .end-nav ul .logo_nav,
header .end-nav #login_icon_nav_bar,
#sign_up_icon_nav_bar
{
  display: none;
}
/*?---------------------------Responsive End Nav---------------------------*/
@media (max-width: 889px) /*for tablets*/ {
  header .end-nav {
    padding: 0px 0;
    /* background: white !important; */
  }
  header .end-nav ul {
    display: flex;
    padding-top: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: -420px;
    bottom: 0px;
    width: 400px;
    border-right: 2px solid rgb(98, 108, 255);
    background-color: rgb(98, 108, 255);
    background-color: #1c1c50;

    gap: 20px;
    transition: 0.3s ease-in-out;
    text-align: center;
    overflow-y: scroll;
  }
  header .end-nav ul::-webkit-scrollbar {
    width: 5px;
  }
  header .end-nav ul::-webkit-scrollbar-thumb {
    background-color: rgba(98, 108, 255, 0.473);
    border-radius: 10px;
  }
  header .end-nav ul::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(233, 233, 233, 0.918);
  }
  header .end-nav ul .logo_nav {
    width: 200px;
    margin: 0px auto;
    display: block;
  }

  /* header .container .end-nav  ul li a{
      padding: 10px;
      color: white;
  } */

  header .end-nav ul .btn_close_menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
    color: rgb(255, 255, 255);
    display: block;
    cursor: pointer;
  }
  header .end-nav ul.active {
    left: 0;
  }
  header .end-nav ul .bg-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    background-color: #0000005b;
    width: calc(100vw - 400px);
    transition: 0.3s ease-in-out;
  }
  header .end-nav ul.active .bg-overlay {
    right: 0%;
  }

  header .middle-nav .icons #box-menu-icon {
    color: rgb(255, 255, 255);
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    background-color: rgb(14, 54, 99);
    color: white;
    cursor: pointer;
    margin: 0 5px;
    display: block;
  }
  header .container-nav .middle-nav .icons #box-menu:hover {
    background-color: rgb(98, 108, 255);
    color: white;
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
  }
  header .end-nav #login_icon_nav_bar,
  header .end-nav #sign_up_icon_nav_bar {
    display: block;
    color: white;
    margin: 5px;
    padding: 5px;
  }
  header .end-nav #login_icon,
  header .end-nav #sign_up_icon {
    display: none;
  }
  header .container-nav .middle-nav .icons {
    display: flex;
    gap: 10px;
    margin: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 400px) {
  header .end-nav ul {
    width: 100%;
  }
}
/*?---------------------------End of Responsive---------------------------*/

/*!---------------------------End of building Nav---------------------------*/
/* !------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* !------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* !------------------------------------------------------------------------------------------------------------------------------------------------------------------ */

/*!---------------------------Cart--------------------------- */
.cart {
  position: fixed;
  top: 0;
  right: -330px;
  bottom: 0;
  background-color: #fff;
  z-index: 1100;
  padding: 30px;
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
  width: 270px;
  overflow-y: scroll;
}
.cart.active {
  right: 0;
}
.cart .top-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart .top-cart .close-cart i {
  font-size: 35px;
  cursor: pointer;
  transition: 0.3s ease;
}
.cart .top-cart .close-cart i:hover {
  color: var(--dark-red);
  scale: 1.1;
}

.cart .top-cart h3 {
  font-size: 18px;
}
.cart .top-cart span {
  font-size: 14px;
  color: var(--parg-color);
  font-weight: normal;
}
.cart .items-in-cart {
  padding: 20px 0;
  border-block: 1px solid var(--border-color);
  margin-block: 20px;
  height: 2000px;
}
.cart .item-cart {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.cart .item-cart:last-child {
  margin-bottom: 0;
}
.cart .item-cart img {
  width: 100px;
}
.cart .item-cart h4 {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark-color);
}
.cart .item-cart .delete-item {
  outline: none;
  border: none;
}
.cart .item-cart .delete-item i {
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}
.cart .item-cart .delete-item i:hover {
  color: var(--dark-red);
  transform: scale(1.2);
}
.cart .bottom-cart .total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cart .bottom-cart .total .price-cart-total {
  color: var(--main-color);
}
.cart .button-cart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart .button-cart .btn-cart {
  border: 2px solid var(--main-color);
  border-radius: 5px;
  color: var(--white);
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  background-color: var(--main-color);
  transition: 0.3s ease;
  cursor: pointer;
}
.cart .button-cart .btn-cart:hover {
  background-color: transparent;
  color: var(--dark-color);
}
.cart .button-cart .trans-bg {
  background-color: transparent;
  color: var(--dark-color);
}
.cart .button-cart .trans-bg:hover {
  background: var(--main-color);
  color: var(--white);
}

.cart_active.active {
  background-color: var(--main-color);
  cursor: auto;
  pointer-events: none;
  position: relative;
  overflow: hidden;
  color: white;
}
.cart_active.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000004f;
}
/* !---------------------------End cart--------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */

/*! ---------------------------section1 starts--------------------------- */
.section1 {
  min-height: fit-content;
  background-color: #a9a9a926;
  font-family: sans-serif;
  color: #1c1c50;
  margin-top: 183px;
}
.section1-home {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.section1-content {
  align-content: center;
  margin: 0 5px 0 5px;
  width: 600px;
}
.section1-content h3 {
  font-size: 50px;
  text-shadow: 1px 1px 1px black;
  color: #1c1c50;
}
.section1-content h3 span {
  font-size: 40px;
}
.section1-content p {
  margin: 12px 0;
}
.shop-view {
  margin: 20px 0;
  text-decoration: none;
  width: 200px;
  height: 38px;
  border: 2px solid #1c1c50;
  font-weight: bold;
  transition: 0.3s linear;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1c1c50;
}
.shop-view:hover {
  background-color: #1c1c50;
  color: white;
}
.shop-view:active {
  scale: 0.85;
}
.section1-images {
  width: 500px;
}
.section1-images img {
  width: 100%;
  height: 100%;
}
.section1-images img:hover {
  scale: none;
}
/* !---------------------------section one ends--------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */

/* !---------------------------product-cards--------------------------- */
.product-blog {
  font-family: sans-serif;
}
.product-blog h1 {
  color: #1c1c50;
  text-shadow: 1px 1px 1px black;
  margin-top: 40px;
}
.product-blog .card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  overflow: hidden;
}
.card img {
  transition: 0.3s;
}
.card img:hover {
  scale: 1.08;
}
.card .product-body h3{
  display: inline-block;
  cursor: pointer;
}
.card .product-body h3:hover{
  text-decoration: underline;
}
.card .card-body p {
  color: #666666;
}
.card .card-body .star {
  color: #1c1c50;
}
del {
  text-decoration: line-through;
}
.card-body h5,
.card-body h6 {
  position: relative;
}
.card-body h5 i,
.card-body h6 i {
  font-size: 20px;
  position: absolute;
  right: 0px;
  color: #1c1c50;
  cursor: pointer;
  transition: 0.3s transform;
}
.card-body h5 .heart:active {
  transform: scale(1.1);
}
.card-body h5 .active-heart {
  color: #fe6e42;
}
.react-circles {
  position: absolute;
  top: 150px;
  right: -50px;
  transition: 0.3s ease-in-out;
}
.card:hover .react-circles {
  right: 10px;
}
.react-circles .react-circles-content {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid black;
  transition: 0.3s;
}
.react-circles-content:hover {
  background-color: #1c1c50;
  cursor: pointer;
  color: white;
}
.container .shop-view {
  margin: auto;
  margin-top: 30px;
  margin-bottom: 40px;
}
/* !---------------------------product-cards ends--------------------------- */

/* !---------------------------banner--------------------------- */
.banner3 {
  margin: 50px 0;
  height: 50vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(image/banner3-min.jpg);
  background-size: cover;
  align-content: center;
}
.banner3-content {
  text-align: center;
  margin: 0 2px;
  color: white;
}
.banner3-content p {
  text-shadow: 1px 1px 1px black;
  color: white;
}
.banner3-content h1 {
  text-shadow: 1px 1px 1px black;
  color: white;
}
.banner3-content a {
  margin: auto;
  width: 150px;
  height: 34px;
  color: white;
  border: 2px solid white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s linear;
}
.banner3-content a:hover {
  background-color: #1c1c50;
  border: none;
}
.banner3-content a:active {
  scale: 0.85;
}
/* !---------------------------banner ends--------------------------- */

/* !---------------------------Testimonials--------------------------- */
.testimonial .card .person:hover {
  scale: none;
}
/* !---------------------------scrolling up--------------------------- */
.up {
  position: fixed;
  bottom: 20px;
  right: -50px;
  background-color: lightblue;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1;
}
.show {
  right: 15px;
}
.up:active {
  background-color: #1c1c50;
}
.up:hover {
  scale: none;
}
/* !---------------------------scrolling up ends ---------------------------*/

/* !---------------------------Home page ends--------------------------- */

/* !---------------------------Footer--------------------------- */
#footer {
  margin-top: 40px;
  color: #d0d0d0;
  background-color: #1c1c50;
  font-family: sans-serif;
}
#footer p {
  color: #d0d0d0;
}
#footer .footer-top {
  padding: 40px 0;
  line-height: 20px;
}
.footer-top h3,
h4 {
  font-weight: bold;
  color: white;
}
.footer-links ul {
  list-style: none;
}
.footer-links ul a {
  color: #d0d0d0;
  line-height: 2;
  transition: 0.3s;
  text-decoration: underline;
}
.footer-links ul a:active {
  opacity: 0.7;
}
.footer-services i {
  font-size: 20px;
  padding-right: 10px;
  line-height: 2;
}
.footer-services .services-details p {
  display: inline-block;
  font-weight: bold;
  position: relative;
  bottom: 2px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.footer-links .social-links i {
  color: #d0d0d0;
  font-size: 20px;
}
.footer-links .social-links i:hover {
  opacity: 0.7;
}
#footer hr {
  margin-top: 0;
  height: 2px;
}
/*!---------------------------Footer Ends--------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */

/*! ---------------------------Products_Page--------------------------- */
/* ?---------------------------banner--------------------------- */
.products_banner {
  width: 100%;
  min-height: 300px;
  background-image: url(image/banner2.jpg);
  background-size: cover;
  object-fit: cover;
  padding: 20px 0;
  margin: 20px 0;
  margin-top: 190px;
  background-position: right top;
}
.products_banner .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90%;
  margin: auto;
}
.products_banner .container h2 {
  color: #fff;
  font-size: 35px;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.products_banner .container p {
  color: #bfbfbf;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  width: 50%;
}
.products_banner .container .products_shop_now {
  padding: 15px 30px;
  border: 1px solid #bfbfbf;
  background: transparent;
  color: white;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}

.products_banner .container .products_shop_now:hover {
  background-color: var(--main-color);
  color: #fffffff2;
}
/* ?---------------------------product--------------------------- */
img {
  transition: 0.3s ease-in-out;
}
img:hover {
  scale: 1.1;
}
.product {
  position: relative;
  background: #fff;
  padding: 20px 30px;
  text-align: center;
  overflow: hidden;
  box-shadow: 5px 5px 10px #94949428;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  width: 25%;
}
.product .img_product {
  position: relative;
}
.product .sale_persent {
  position: absolute;
  top: 20px;
  right: 50px;
  z-index: 2;
  background: var(--dark-red);
  color: #fff;
  padding: 4px 12px;
  font-size: 14px;
}
.product .img_product img {
  width: 100%;
  transition: 0.3s ease-in-out;
}
.product .name_product {
  font-size: 16px;
  width: 100%;
}
.product .name_product a {
  color: var(--name-item);
}
.product .name_product a:hover {
  text-decoration: underline;
}
.stars {
  margin: 15px 0;
}
.stars i {
  color: var(--main-color);
}
.price {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.price p {
  color: var(--main-color);
  font-weight: bold;
}
.price .old_price {
  color: var(--parg-color);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: normal;
}
.product .icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: -80px;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  z-index: 100;
}
.product .icons i.active {
  background-color: var(--main-color);
  cursor: auto;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
.product .icons i.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000004f;
}
.product .icons i {
  color: var(--dark-color);
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  background: transparent;
}
.product .icons i:hover {
  background: var(--main-color);
  color: #fffffff2;
}
.product:hover .icons {
  right: 20px;
}
/* ?---------------------------Filters--------------------------- */
.all_products .container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.all_products .container .filters {
  background-color: rgb(255, 255, 255);
  width: 280px;
  text-transform: capitalize;
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.all_products .container .filters input:checked {
  accent-color: var(--main-color);
}
.all_products .container .filters h4 {
  margin-bottom: 10px;
  margin-top: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}
.all_products .container .filters span {
  font-size: 14px;
  cursor: pointer;
}
.all_products .container .filters .filter_item .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.all_products .container .filters .filter_item .item .color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.3s ease;
}
/* ?---------------------------End-Filters--------------------------- */
/* ?---------------------------Product-Div--------------------------- */
.all_products .container .products_div {
  width: calc(100% - 300px);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.all_products .container .products_div .product {
  width: 200px;
  margin: auto;
  margin-bottom: 30px;
  height: 360px;
}
.detalis_products {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.detalis_products .details_about_product {
  text-align: start;
}
.detalis_products .details_about_product h3 a {
  color: var(--dark-color);
  font-size: 24px;
}
.detalis_products .details_about_product p {
  font-size: 14px;
  color: var(--parg-color);
}
/* ?---------------------------End-Produc-Div--------------------------- */
/* ?---------------------------Pagination--------------------------- */
.pagination {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: auto;
}
.pagination .btn_page {
  font-size: 22px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.pagination .btn_page:hover {
  color: var(--main-color);
}
.pagination .num_page {
  border: 1px solid transparent;
  width: 100%;
  padding: 10px 15px;
  font-size: 10px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.pagination .num_page.active,
.pagination .num_page:hover {
  border: 1px solid var(--main-color);
}

.all_products .btn_filter {
  display: none;
}
/*? Responsive */
@media (max-width: 906px) {
  .all_products .container .products_div {
    width: 100%;
  }
  .all_products .container .filters {
    position: absolute;
    top: 60px;
    left: 40px;
    width: 40%;
    z-index: -100;
    opacity: 0;
    transition: 0.3s opacity ease-in-out;
  }
  .all_products .container .products_div .product {
    width: 31%;
    height: fit-content;
  }
  .all_products .container {
    position: relative;
    padding-top: 60px;
  }
  .all_products .container .filters.active {
    z-index: 100;
    opacity: 1;
  }
  .all_products .btn_filter {
    display: block;
    position: absolute;
    margin: 10px 0;
    top: 0px;
    left: 40px;
    padding: 12px 10px;
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    font-size: 18px;
    text-transform: capitalize;
  }
}
@media (max-width: 806px) {
  .all_products .container .products_div {
    width: 80%;
  }
  .all_products .container .products_div .product {
    width: 60%;
  }
  .products_banner .container p {
    width: 75%;
  }
  .products_banner .container .products_shop_now {
    padding: 10px 20px;
  }
  .all_products .container .filters {
    position: absolute;
    top: 60px;
    left: 40px;
    width: 85%;
    z-index: -100;
    opacity: 0;
    transition: 0.3s opacity ease-in-out;
  }
  .all_products .container .filters.active {
    z-index: 100;
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .all_products .container .products_div .product {
    width: 300px;
  }
  .all_products .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .all_products .container .products_div {
    width: 100%;
  }
}
/*!--------------------------- End of Products_page---------------------------*/
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/*! ---------------------------Sign in &Sign up Page--------------------------- */
.login {
  width: 90%;
  margin: 40px auto;
  margin-top: 225px;
  padding: 30px;
  background: #1c1c5017;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.login .container {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login .container .welcome_friend {
  width: 35%;
  height: 500px;
  background-color: var(--main-color);
  display: flex;
  justify-self: center;
  align-items: center;
  border-radius: 10px;
  padding: 40px;
}
.login .container .welcome_friend_content {
  width: 100%;
  color: white;
}
.login .container .welcome_friend h1 {
  color: white;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}
.login .container .welcome_friend h4 {
  color: #ffffffb7;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
}
.login .container .welcome_friend button {
  color: white;
  width: 90%;
  padding: 10px 50px;
  background: transparent;
  border: 1px solid white;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.login .container .welcome_friend button:hover {
  scale: 1.03;
}
.login .container .login_content {
  width: 45%;
  display: flex;
  justify-self: center;
  align-items: center;
  color: white;
  border-radius: 10px;
  background-color: rgba(98, 98, 98, 0.139);
  backdrop-filter: blur(10px);
  height: 400px;
  padding: 40px;
}
.login .container .login_content .login_form {
  width: 100%;
}
.login .container .login_content h1 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--main-color);
}
.login .container .login_content input {
  width: 80%;
  background-color: transparent;
  position: relative;
  margin-bottom: 20px;
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
}
.login .container .login_content input::placeholder {
  padding: 10px 5px;
}
.login .container .login_content p {
  color: var(--main-color);
  margin-bottom: 15px;
  text-align: center;
}
.login .container .login_content button {
  width: 100px;
  background: var(--main-color);
  color: white;
  text-align: center;
  margin: 10px auto;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition: 0.3s ease-in-out;
}
.login .container .login_content button:hover {
  background-color: #2d2d56;
  scale: 1.03;
}
/* ?---------------------------Sign in & sign up responsive--------------------------- */
@media (max-width: 950px) {
  .login .container {
    flex-direction: column;
  }
  .login .container .welcome_friend {
    width: 100%;
    height: 400px;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .login .container .login_content {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 525) {
  .login .container .welcome_friend h1 {
    font-size: 22px;
  }
  .login .container .welcome_friend h4 {
    font-size: 16px;
  }
}
@media (max-width: 410px) {
  .login .container .welcome_friend h1 {
    font-size: 20px;
  }
  .login .container .login_content {
    width: 130%;
  }
  .login .container .welcome_friend {
    width: 130%;
  }

  .login .container .welcome_friend h4 {
    font-size: 14px;
  }
}
/*!---------------------------End Sign in &Sign up Page--------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/*!---------------------------About Us--------------------------- */
.about_us {
  height: 115vh;
  width: 90%;
  margin: 40px auto;
  margin-top: 225px;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
}
.about_us .container {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about_us .container .about_title {
  width: 30%;
  color: var(--main-color);
  font-size: 36px;
  font-weight: 700;
}
.about_us .container .about_image {
  width: 60%;
  margin-bottom: 20px;
  background-image: url(image/about.png);
  height: 480px;
  background-position: right top;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 20px -20px 1px var(--main-color);
}
.about_us .container .about_title h1 {
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 5px;
  text-decoration: underline;
  margin-right: 10px;
  font-size: 46px;
  font-weight: 700;
}
.about_us .content {
  width: 100%;
  color: var(--parg-color);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: justify;
  border-radius: 10px;
}
/* About us responsive */
@media (max-width: 800px) {
  .about_us {
    height: 860px;
  }
  .about_us .container {
    flex-direction: column-reverse;
  }
  .about_us .container .about_image {
    width: 100%;
    height: 300px;
  }
  .about_us .container .about_title {
    display: flex;
    width: 100%;
    justify-content: start;
  }
  .about_us .container .about_title h1 {
    text-decoration: none;
  }
}
@media (max-width: 530px) {
  .about_us .container .about_title h1 {
    text-decoration: none;
    font-size: 32px;
  }
  .about_us .content {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
/*!---------------------------End About Us--------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */

/*! ---------------------------Contact_Us---------------------------  */
.contact_us {
  height: 600px;
  width: 90%;
  margin: 40px auto;
  margin-top: 225px;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.contact_us .contact_title {
  text-align: center;
  padding: 20px;
}

.contact_us .contact_title h1 {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact_us .contact_title p {
  color: var(--parg-color);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact_us .container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact_us .container .contact_info {
  width: 45%;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact_us .container .contact_info .contact_div {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact_us .container .contact_info .contact_icon {
  width: fit-content;
  color: var(--main-color);
  font-size: 30px;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 50%;
  background-color: transparent;
}
.contact_us .container .contact_info .contact_details h3 {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact_us .container .contact_info .contact_details h4 {
  width: 50%;
  color: var(--parg-color);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.5;
}
.contact_us .container .send_message {
  width: 45%;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.contact_us .container .send_message h2 {
  color: var(--main-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact_us .container .send_message input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--parg-color);
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid var(--border-color);
}

.contact_us .container .send_message button {
  width: 100px;
  background: var(--main-color);
  color: white;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition: 0.3s ease-in-out;
}

/* ?---------------------------Contact Us responsive--------------------------- */
@media (max-width: 1000px) {
  .contact_us {
    min-height: fit-content;
    margin-top: 210px;
  }
  .contact_us .container .contact_info {
    width: 100%;
  }
  .contact_us .container {
    flex-direction: column-reverse;
  }
  .contact_us .container .send_message {
    width: 100%;
  }
  .contact_us .container .contact_info .contact_details h4 {
    width: 100%;
  }
  .contact_div {
    position: relative;
    left: -18px;
  }
}
/*!---------------------------End Contact_Us---------------------------  */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */

/*!---------------------------product page--------------------------- */
.product_imagee img {
  transition: 0.3s;
}
.product_imagee img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.product_stars i {
  color: var(--main-color);
}
.color_circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.color_circle1 {
  background-color: orange;
}
.color_circle2 {
  background-color: red;
}
.color_circle3 {
  background-color: blue;
}
.product_sizes button,
.add_cart {
  transition: 0.3s;
  border: solid var(--main-color);
}
.product_details button:hover {
  background-color: var(--main-color);
  color: var(--white);
}
.special {
  background-color: var(--main-color);
  color: var(--white);
}
.special2 {
  background-color: var(--main-color);
  color: var(--white);
}

.color_circle:hover,
.color_circle:active {
  border: solid grey 1px;
  cursor: pointer;
}

.buy_now {
  background-color: var(--main-color);
  z-index: 100000000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.647);
}

.text_input {
  border: 0;
  border-bottom: 2px solid grey;
  background-color: transparent;
  color: var(--white);
}
.text_input:focus {
  outline-width: 0;
  border-bottom: 2px solid grey;
}

#Checkout:hover {
  transform: scale(1.02) !important;
}
/* !---------------------------End product page--------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !--------------------------------------------------------------------------------------------------------------------------------------- */
/* !---------------------------cart page--------------------------- */
.cart_product {
  background-color: var(--main-color);
  color: white !important ;
  font-size: larger;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
  margin-top: 0px;
}
.cart_product p {
  color: rgba(255, 255, 255, 0.854);
}
.cart_product span {
  color: rgba(255, 255, 255, 0.725);
}
.cart_product img {
  background-color: rgba(255, 255, 255, 0.725);
}
.more_products:hover,
.checkout:hover {
  background-color: var(--main-color);
}
.more_products a {
  color: black;
}
.more_products:hover a,
.checkout:hover {
  color: var(--white);
}
.close_button {
  cursor: pointer;
}
.checkout {
  transition: 0.3s;
  border: solid var(--main-color);
  color: rgb(255, 255, 255);
  background-color: var(--main-color);
}
.checkout:hover {
  transform: scale(1.03);
}
/* !---------------------------End-cart-page--------------------------- */
