@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Nunito", sans-serif; */
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.container {
  margin: 0 150px;
}

.active-link {
  color: #fcb80b;
}

/*! slogan start */
.slogan {
  background-color: #fcb80b;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}

.slogan .container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

/*! quik offer start */
.quik-offer {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  padding: 6px 15px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1px;
  z-index: 1;
}

.quik-offer span {
  background: #ff7900;
  height: 100%;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}

.quik-offer:hover > span {
  width: 100%;
}
/*! quik offer end */

.slogan .contact-info li i,
.slogan .contact-info li a {
  color: aliceblue;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.slogan .contact-info li:hover i,
.slogan .contact-info li:hover a {
  color: black;
}

.slogan .contact-info ul {
  display: flex;
  align-items: center;
}

.slogan .contact-info ul li {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.slogan .contact-info ul li:not(:last-child) {
  border-right: 1px solid aliceblue;
}

.slogan .contact-info .contact-info-mobile {
  display: none;
}

/*! slogan end */

/*! navbar start */
header {
  display: flex;
  position: relative;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid grey; */
}

header .toggle-menu {
  font-size: 27px;
  display: none;
}

header h1 {
  color: #333333;
}

header nav ul {
  display: flex;
}

header nav ul li a {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  padding: 0 10px;
}

header nav .nav-item:hover {
  color: #fcb80b;
}
/*! navbar end */

/*! dropdown start */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content-wrapper {
  display: none;
  position: absolute;
  width: 190px;
  z-index: 10;
}

.dropdown-content {
  margin-top: 30px;
  border: 1px solid grey;
  border-radius: 10px;
  background-color: #fff;
}

.dropdown-content-wrapper a {
  color: black;
  padding: 12px 16px;
  display: block;
}

.dropdown-content-wrapper a:first-child {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.dropdown-content-wrapper a:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.dropdown-content-wrapper a:not(:last-child) {
  border-bottom: 1px solid grey;
}

.dropdown-content-wrapper a:hover {
  background-color: #fcb80b;
  color: aliceblue;
}

.dropdown:hover .dropdown-content-wrapper {
  display: block;
}
/*! dropdown end */

/*! footer start */
footer {
  margin-top: 60px;
  background-color: #222529;
}

footer .footer-wrapper {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

footer .address-header {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

footer .left,
footer .center,
footer .right {
  height: 365px;
}

footer .left {
  display: flex;
}

footer .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 0 60px;
}

footer .address-wrapper,
footer .phone-wrapper,
footer .email-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .address-wrapper span,
footer .phone-wrapper span,
footer .email-wrapper span {
  font-weight: 600;
  color: #fff;
}

footer .address-wrapper address,
footer .phone-wrapper a,
footer .email-wrapper a {
  color: #777;
  width: fit-content;
}

footer .center .footer-social-media {
  display: flex;
  gap: 8px;
  font-size: 28px;
}

footer .center .footer-social-media i {
  display: flex;
}

footer .center .footer-social-media .fa-instagram {
  color: rgb(255, 0, 72);
}

footer .center .footer-social-media .fa-facebook {
  color: #316ff6;
}

footer .right {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
}

footer .right .e-newsletter-header {
  color: #fff;
  font-weight: 600;
}

footer .right .e-newsletter-content {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

footer .right .e-newsletter-content span {
  color: #777;
}

footer .right input {
  padding: 15px 25px;
  border-radius: 30px;
  max-width: 250px;
  border: none;
  font-size: 14px;
  background-color: #292c30;
  color: #e7e7e7;
}

footer .right button {
  width: fit-content;
  border: none;
  font-weight: 700;
  border-radius: 25px;
  padding: 15px 28px;
  color: #fff;
  background-color: #fcb80b;
}

footer .footer-bottom {
  border-top: 1px solid #fcb80b;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  text-align: center;
}

footer .footer-bottom span {
  font-size: 14px;
  color: #fff;
}

footer .footer-bottom img {
  width: 85px;
  padding: 15px;
  border-radius: 20px;
  background-color: #e7e7e7;
}
/*! footer end */

/*! UP WRAPPER  */
.up-wrapper {
  position: fixed;
  color: #eadede;
  right: 18px;
  bottom: 80px;
  z-index: 99;
  font-size: 20px;
  background-color: #fcb80b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

/*! WHATSSAPP START  */
.whatsapp-wrapper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  font-size: 24px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
}

.whatsapp-wrapper a i {
  color: #eadede;
}

/* single product wrapper start */
.single-product {
  border-top: 2px solid #f4f4f4;
  overflow: hidden;
}
/* single product wrapper end */

/*! breadcrumb start */
.breadcrumb {
  margin-top: 50px;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb ul li a {
  font-size: 15px;
  color: #73757a;
}

.breadcrumb ul li:not(:last-child):after {
  content: "/";
  color: #73757a;
  margin: 0 5px;
}

.breadcrumb ul li a:hover {
  color: #000;
  text-decoration: underline;
}
/*! breadcrumb end */

/*! procuct details start */
.prodcust-details {
  margin-top: 35px;
  display: grid;
  gap: 15px;
  width: 100%;
  height: 520px;
  grid-template-columns: 1fr 1.2fr;
}

.product-gallery {
  width: 100%;
  overflow: hidden;
}

.product-gallery .top-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #73757a;
  border-radius: 12px;
  /* overflow: hidden; */
}

.product-gallery .top-image img {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.gallery {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
}

.gallery-wrapper {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none !important;
  -ms-overflow-style: none;
  gap: 5px;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.extra-product-image {
  transition: 0.2s ease all;
}

.extra-product-image.selected-product {
  width: 130px;
  height: 100px;
}

.product-image-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
}

.gallery-wrapper img {
  width: 120px;
  height: 90px;
  border-radius: 5px;
}

.main-product-image {
  opacity: 1;
  transition: 0.8s ease all;
}

.product-actions {
  padding: 30px;
  /* overflow-y: auto; */
}

.product-actions-wrapper {
  /* overflow: hidden; */
  width: 100%;
  height: 100%;
}

.selected-product {
  border: 5px solid #fcb80b;
  border-radius: 10px;
}

.product-actions-header h3 {
  font-size: 30px;
}

.product-actions-header button {
  background-color: #34393f;
  color: #fff;
  margin-top: 30px;
  width: 100%;
  font-size: 15px;
  border: none;
  padding: 15px 0;
  cursor: pointer;
}

.product-general-info {
  margin-top: 50px;
}

.product-general-info h6 {
  font-size: 18px;
  width: fit-content;
  position: relative;
  margin-bottom: 12px;
  border-bottom: 2px solid #e7e7e7;
}

.product-general-info p {
  font-size: 15px;
}
/*! procuct details end */

/*! technical information start */
.technical-information {
  margin-top: 40px;
}

.technical-information-headers {
  padding: 10px 0;
  border-bottom: 2px solid #e7e7e7;
}

.technical-information-headers ul {
  display: flex;
  gap: 35px;
}

.technical-information-headers ul li {
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.technical-information-body p {
  font-size: 15px;
  padding: 15px 0;
}
/*! technical information end */

/*! RESPONSIVE NABAR START */
header .mobile-navbar {
  display: none;
}

/*********** 1200 ***********/
@media (max-width: 1200px) {
}

/*********** 1080 ***********/
@media (max-width: 1080px) {
  .container {
    margin: 0 90px;
  }
  /* header nav{
    display: none;
  } */
}

/*********** 992 ***********/
@media (max-width: 992px) {
  .container {
    margin: 0 50px;
  }

  header .desktop-navbar {
    display: none;
  }

  header .mobile-navbar {
    display: block;
  }

  header .toggle-menu {
    display: inline-block;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 50px;
    grid-template-columns: 1fr 1fr;
  }

  /* breadcrumb */
  .breadcrumb ul li a {
    font-size: 12px;
  }
  /* procuct details start */
  .prodcust-details {
    height: auto;
    grid-template-columns: 1fr;
  }

  .product-actions {
    padding: 10px;
  }
}

/*********** 768 ***********/
@media (max-width: 768px) {
  .container {
    margin: 0 20px;
  }
  .slogan .contact-info .contact-info-mobile {
    display: flex;
  }

  .slogan .contact-info .contact-info-desktop {
    display: none;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 20px;
    gap: 50px;
    grid-template-columns: 1fr;
  }

  footer .center {
    margin-top: 0px;
    gap: 20px;
    padding: 0 10px;
  }

  footer .right {
    margin-top: 0px;
    padding: 0 10px;
  }
}

/*********** 576 ***********/
@media (max-width: 576px) {
  .container {
    margin: 0 16px;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 15px;
    display: grid;
    gap: 50px;
  }

  footer .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
  }

  footer .right {
    padding: 0 10px;
  }
}

/*********** 492 ***********/
@media (max-width: 492px) {
  .product-gallery {
    width: 100%;
    overflow: hidden;
  }

  .product-gallery .top-image img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: contain;
  }

  .gallery {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
  }

  .gallery-wrapper img {
    width: 100px;
    height: 70px;
    border-radius: 5px;
  }

  .product-actions-header h3 {
    font-size: 20px;
  }

  .product-actions-header button {
    background-color: #34393f;
    color: #fff;
    margin-top: 30px;
    width: 100%;
    font-size: 14px;
    border: none;
    padding: 12px 0;
    cursor: pointer;
  }
}
