body {
  margin: 0;
  font-family: Poppins;
}

svg {
  width: 30px;
}

a {
  text-decoration: none;
  color: #2f2f2f;
}

button {
  cursor: pointer;
}

.container {
  max-width: 90vw;
  margin: auto;
  text-align: center;
  padding-top: 10px;
  transition: 0.5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-cart {
  position: relative;
}

.icon-cart i {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.icon-cart span {
  background-color: #868686;
  position: absolute;
  top: 50%;
  right: -20px;
  width: 30px;
  height: 30px;
  font-size: small !important;
  color: #fff !important;
  border-radius: 50%;
  font-weight: 500 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: xx-large;
}

/* cartTab */
.cartTab {
  background-color: #202020;
  color: #eee;
  width: 400px;
  max-width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: 70px 1fr 70px;
  z-index: 99;
}

.cartTab h1 {
  padding: 20px;
  margin: 0;
  font-weight: 300;
}

.cartTab .btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.cartTab .btn button {
  background-color: #eee;
  border: none;
  font-family: Poppins;
  font-weight: 500;
}

.cartTab .btn button.close {
  background-color: #d7d7d7;
}

.cartTab .listCart::-webkit-scrollbar {
  width: 0;
}

.cartTab {
  right: -400px;
  transition: 0.5s;
}

body.activeTabCart .cartTab {
  right: 0;
}

/* list item product */
.listProduct .item img {
  /* z-index: -1;
  aspect-ratio: 1/1;
  object-fit: cover; */
}

.listProduct .item {
  /* padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 10px; */
}
.listProduct .name_product {
  font-weight: 400;
  text-wrap: wrap;
  text-align: left;
  width: 100%;
  margin-top: 7px;
  text-transform: capitalize;
}
.flex_product {
  display: flex;
  flex-direction: column;
}

.listProduct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-height: 40vh;
}
.flex_between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* .item div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
} */

.item div p {
  font-weight: 200;
  grid-area: 1/1/1/1;
  text-wrap: nowrap;
}
.item div .price {
  grid-area: 2/1/2/1;
  letter-spacing: 1px;
  font-size: 24px;
  text-align: start;
  font-weight: 600;
}

.item div button {
  /* font-weight: 600;
  text-align: center;
  border: none;
  background-color: #e1ba45;
  grid-area: 1 / 2 / 1 / 2;
  color: #353432;
  transition: all;
  padding: 10px;
  width: 100px;
  color: white;
  border-radius: 50px; */
}

.item div button:hover {
  /* color: #5d5d5d; */
  background: #202020;
}

.listCart .item {
  display: grid;
  grid-template-columns: 70px 150px 50px 1fr;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 100%;
    border-bottom: 1px solid #575757;
    padding: 10px;
}

.listCart .item .quantity {
  display: flex;
}

.listCart .item .quantity span {
  width: 25px;
  height: 25px;
  background-color: #eee;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.listCart .item .quantity span:nth-child(2) {
  background-color: transparent;
  color: #fff;
}
.listCart .item .image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.listCart .item:nth-child(even) {
  background-color: #eee1;
}

.detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
  margin: 20px;
}

.detail .image img {
  height: 450px;
  z-index: -1;
  aspect-ratio: 1/1;
  object-fit: contain;
  width: auto !important;
}

.detail .image {
  position: relative;
  z-index: -1;
  display: flex;
  justify-content: center;
}
.detail {
  font-family: "Barlow Semi Condensed", sans-serif !important;
}
.detail .name {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-size: xx-large;
  padding: 10px 0 0 0;
  margin: 0 0 10px 0;
}

.detail .sku {

  font-size: medium;
  color: #353432;
  margin: -15px 0 10px 0;
}

.detail .price {
  font-weight: bold;
  font-size: x-large;
  font-family: "Barlow Semi Condensed", sans-serif !important;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #888888;
}
.detail_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.detail .buttons button {
  background-color: #fff;
  border: 1px solid #8e8e93;
  margin-bottom: 10px;
  padding: 20px 40px;
  text-align: center;
  border-radius: 0px;
  text-transform: uppercase;
  width: 100%;
}

.detail svg {
  width: 15px;
}

.detail .buttons button:nth-child(2) {
  background-color: #2f2f2f;
  color: #eee;
  text-align: center;
  border: none;
  gap: 20px;
}

.detail .buttons button:hover {
  filter: brightness(95%);
}

.detail .buttons svg {
  transform: translateY(5px);
}

.detail .description {
  font-weight: 400;
    font-size: 16px;
    margin: 16px 0 20px;
    line-height: 26px;
    color: #868686;
    width: 90%;
    padding: 20px 0;
   
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    text-align: justify;
}

.similar_products_main {
  margin: 50px 40px;
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;

}

.similarProduct {
  margin: 20px;
  display: flex;
  gap: 10px;
  overflow-x: scroll;
}

.imageCarousel {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.imageCarousel img {
  cursor: pointer;
  height: 100px;
  max-width: 100px;
  aspect-ratio: 1/1;
  object-fit: contain;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #f0f0f0;
}

.similarProduct .item img {
  z-index: -1;
  aspect-ratio: 1/1;
  object-fit: cover;
  max-height: 300px;
  max-width: 300px;
}

.contactForm {
  padding: 20px;
  width: 35%;
}

.contactForm form {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.contactForm label {
  margin-bottom: -15px;
}

.contactForm p {
  font-family: poppins;
  text-align: center;
  margin-bottom: 20px;
  font-size: x-large;
}

.contactForm input[type="text"],
input[type="email"],
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}

.contactForm input[type="text"]:hover,
input[type="email"]:hover {
  box-shadow: 0px 0px 20px -17px;
}

.contactForm input[type="submit"] {
  outline: none;
  border: none;
  padding: 15px;
  font-size: large;
  border-radius: 5px;
  color: #fff;
  background-color: #202020;
}

.contactForm input[type="submit"]:hover {
  transition: all;
  cursor: pointer;
  transform: scale(103%);
  box-shadow: 0px 0px 20px -17px;
}

.contactForm textarea {
  height: 100px;
}

.contactForm div {
  display: flex;
  align-items: center;
}

.similarProduct .item {
  min-width: 300px;
  margin-right: 10px;
}

.messageContainer {
  position: fixed;
  bottom: 0;
  right: 0;
}

.messageButton {
  background-color: #254d4d;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 30px;
  margin: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}
.messageButton i {
  color: white;
  font-size: x-large;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.messageBox {
  position: relative;
  border-radius: 10px;
  width: 300px;
  height: 300px;
  background-color: white;
  margin: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.messageBox textarea {
  resize: none;
  margin-inline-start: 10px;
  width: 70%;
}

.messageWindow {
  height: 215px;
  max-height: 215px;
  margin: 15px 15px 25px 15px;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.messageWindow .sender {
  display: flex;
  justify-content: end;
}

.messageWindow .sender span {
  background-color: #53d769;
  color: white;
}

.messageWindow .recieved {
  display: flex;
  justify-content: start;
}

.messageWindow .recieved span {
  background-color: #8e8e93;
  color: white;
}

.messageWindow span {
  padding: 10px;
  text-wrap: wrap;
  margin-top: 4px;
  max-width: 75%;
  border-radius: 10px;
}

.product_detail_info {
  margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    font-size: 14px;
    margin-bottom: 30px;
}
.product_detail_info h2 {
  font-weight: 600;
}

.product_detail_info p {
  color: #868686;
}

.info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.errorPage {
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.errorPage div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.errorPage div {
  font-size: 150px;
}

@media screen and (max-width: 992px) {
  .contactForm {
    width: 95%;
  }
  .contactForm img {
    width: 40vw;
  }
  .icon-cart {
    transform: translateX(-10px);
  }
  .listProduct {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .image_section_custom {
    flex-direction: column !important;
  }
  .image_section_custom .image {
    width: 100% !important;
  }
  .listProduct {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .detail .image img {
    width: unset;
    height: 40vh;
  }
  .detail .name {
    font-size: x-large;
    margin: 0;
  }
  .detail .buttons button {
    font-size: small;
  }
}



.sku_box_section span {
  color: #868686;
}

.custom_flow_section {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;

}
.custom_flow_div {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}
.custom_flow_div span {
  color: #868686;
  text-transform: uppercase;
}

.privacy-custom p {
  margin-bottom: 10px;
  font-size: 14px;
}
.privacy-custom {
  margin: auto;
  padding: 3rem 10rem;
}

.privacy-custom h1 {
  margin-bottom: 20px;
}