/* -------------------------------------------font------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*------------------------------------------------------------------------------------------*/

body {
  margin: 0;
  padding: 0;
}
* {
  font-family: "Manrope", sans-serif;
}

/* product page css */

.product-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}
.product-left {
  width: 50%;
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-right {
  width: 50%;
  padding-left: 30px;
}
.main-container {
  padding: 75px 100px 50px;
}
.main-image-container img {
  width: 100%;
  aspect-ratio: 1;
  max-height: 480px;
  object-fit: cover;
}
.thumbnail-container img {
  width: 100%;
  aspect-ratio: 1 !important;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
}
.thumbnail-container.active img {
  border-color: #9747ff;
}
.rating-top {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  color: #737373;
  font-size: 16px;
  font-weight: 500;
}
.product-name {
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  color: #000;
}
.product-description {
  font-weight: 600;
  font-size: 13px;
  margin: 6px 0 16px;
  color: #000;
}
.rating-text-top {
  font-size: 16px;
  font-weight: 400;
  color: #2b2b2b;
  margin: 0;
}
.rating-chip {
  display: flex;
  flex-direction: row;
  gap: 5px;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
}
.rating-chip img {
  height: 19px;
  width: 19px;
}
.product-header {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}
.price-container div {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.product-offer-price {
  margin: 0;
  font-size: 24px;
  color: #2b2b2b;
  font-weight: 600;
}
.product-original-price {
  margin: 0;
  text-decoration: line-through;
  font-size: 16px;
  color: #bcbcbc;
}
.product-discount {
  margin: 0;
  font-size: 16px;
  color: #9747ff;
}
.grey-text {
  margin: 0;
  font-size: 14px;
  color: #9c9c9c;
}
.quantity-picker-container {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}
.quantity-picker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  background-color: #fafafa;
  border: 1px solid #d3d3d3;
  width: fit-content;
}
.quantity-label {
  margin-bottom: 8px;
  color: #2b2b2b;
  font-size: 14px;
}
.minus,
.plus {
  height: 30px;
  width: 30px;
  border: none;
  background-color: transparent;
}
.quantity-picker input {
  background-color: transparent;
  border: none;
  color: #2b2b2b;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  width: 30px;
}
.quantity-picker input[type="number"]::-webkit-outer-spin-button,
.quantity-picker input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-picker input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.variants {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.single-variant {
  border-radius: 5px;
  background-color: #fafafa;
  border: 1px solid #d3d3d3;
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.15s, color 0.15s;
  cursor: pointer;
}
.single-variant:hover {
  background-color: #e7e7e7;
}
.single-variant.active {
  background-color: #dfc6ff;
  color: #000000;
  border-color: #9747ff;
}
.purchase-buttons {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px 16px;
  max-width: 350px;
}
.atc-btn,
.fav-btn {
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #9747ff;
  padding: 18px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.atc-btn {
  color: #fff;
  background-color: #9747ff;
}
.fav-btn {
  background-color: #fff;
  color: #000000;
}
.product-main-details {
  width: 80%;
}
.view-details-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-bottom: 1px solid #000;
  padding: 4px;
  font-size: 13px;
  line-height: 161%;
  background-color: transparent;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.close-btn {
  position: absolute;
  top: 35px;
  right: 25px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
}

.product-description-main {
  font-size: 13px;
  line-height: 161%;
  margin: 20px 0;
}
.accordion-review-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 10px;
}
.stars-accordion {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars-accordion img {
  height: 10px;
}
.accordion-review-header .product-description-main {
  margin: 0;
}
.accordion-button-review {
  padding: 4px 0 !important;
}
.accordion-button-review::after {
  background-image: url(../assets/icons/review-chevron-down.svg) !important;
}
.accordion-button-review:not(.collapsed) {
  background-color: unset !important;
  box-shadow: unset !important;
}
.accordion-body-review {
  padding: 20px 0 !important;
}
.sort-dropdown label,
.sort-dropdown select {
  color: #0d0c22;
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
  border: none;
}
.sort-dropdown select option {
  color: #000;
}
.accordion-body-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.sort-dropdown {
  padding: 0;
  background-color: transparent;
  width: fit-content;
}
.addreview-btn {
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 9px 25px;
  background-color: #0d0c22;
}
.single-graph {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main-graph-100 {
  height: 6px;
  border-radius: 5px;
  background-color: #f2f6fb;
  width: 100%;
}
.progress-graph {
  height: 6px;
  border-radius: 5px;
  background-color: #ff9900;
  width: 0%;
}
.single-graph p {
  white-space: nowrap;
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  color: #000;
}
.clr-grey {
  color: #858585 !important;
}
.review-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
  margin: 20px 0 25px;
}
.review-details-left {
  width: 40%;
}
.review-details-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.review-details-left p {
  font-size: 14px;
  font-weight: 500;
  color: #0d0c22;
}
.review-details-left h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
  margin: 15px 0;
}
.star-container-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.star-container-main img {
  height: 24px;
}
.review-count {
  color: #858585 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  margin: 0 !important;
}
.single-review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.user {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.user-image {
  border-radius: 50%;
  overflow: hidden;
  background-color: #000000;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9747ff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.user-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.user-name {
  color: #0d0c22;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
.review-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.review-date {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  color: #858585;
  font-weight: 600;
}
.single-review-star {
  display: flex;
  gap: 8px;
}
.single-review-star img {
  height: 20px;
  width: 20px;
}
.review-text {
  margin: 0;
  color: #0d0c22;
  font-size: 13px;
  letter-spacing: 150%;
}
.related-heading {
  letter-spacing: 0.25px;
  line-height: 24px;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 45px;
}
.related-products {
  margin-top: 100px;
}
.products-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
/* .single-product {
  width: calc((100% / 4) - (45px / 4));
  max-width: unset !important;
} */
.product-img-container {
  position: relative;
  margin-bottom: 15px;
}
.product-img-container img {
  width: 100%;
  object-fit: cover;
}
.wishlist-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 30px;
  width: 30px;
  border: none;
  background-color: rgb(255 255 255 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
}
.product-name-card,
.offer-price-card,
.original-price-card {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #000000;
  margin-bottom: 8px;
}
.product-price-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 15px;
}
.product-name-card {
  font-weight: 600;
}
.offer-price-card {
  font-weight: 700;
  margin: 0;
}
.original-price-card {
  color: #807d7e;
  font-weight: 500;
  margin: 0;
}
.product-detail-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
}
.atc-btn-card {
  height: 30px;
  width: 30px;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgb(188 188 188 / 60%);
}
.atc-btn-card a {
  display: block;
  height: inherit;
  width: inherit;
}

/* account page css */

.account-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}
.leftsection {
  background-color: white;
  height: fit-content;
  max-width: 320px;
  width: 100%;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
}
.buttondiv {
  display: flex;
  flex-direction: column;
}
.buttondiv a {
  text-decoration: none;
}
.catselectbutton {
  display: flex;
  flex-direction: row;
  padding: 15px 50px;
  gap: 10px;
  border-width: 1px 0 0 0;
  border-color: #e1e1e1;
  border-style: solid;
  background-color: transparent;
  align-items: center;
  width: 100%;
}
.catselectbutton a {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.catname {
  color: #3b393a;
  font-size: 16px;
  font-weight: 500;
}
.rightsection {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px 40px;
}
.caticon {
  height: 22px;
  filter: invert(15%) sepia(0%) saturate(278%) hue-rotate(2deg) brightness(104%)
    contrast(79%);
}
.activebtn .caticondiv .caticon {
  filter: invert(35%) sepia(84%) saturate(3696%) hue-rotate(249deg)
    brightness(99%) contrast(104%);
}
.activebtn .catname {
  color: #9747ff;
}
.caticondiv {
  display: flex;
  align-items: center;
}
.userprofilediv {
  width: 750px;
  background-color: white;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
  padding: 20px 30px;
}
.userimage {
  height: 135px;
  width: 135px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d3d3d3;
}
.descriptionarea {
  border-width: 2px 0 2px 0;
  border-color: #e1e1e1;
  border-style: solid;
  padding: 20px 0;
}
.description {
  margin: 0;
  font-size: 14px;
  color: #3b393a;
  width: 75%;
}
.usertext {
  margin: 20px 0 0 0;
  font-size: 15px;
}
.heading {
  margin: 0;
  padding-bottom: 20px;
  font-size: 16px;
  border-bottom: 2px solid #e1e1e1;
}
.imagesection {
  padding: 20px 0;
}
.userfooter {
  padding: 20px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footerheading {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}
.changepassbtn {
  background-color: #9747ff;
  border: 1px transparent;
  color: white;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 10px;
}
.logoutbtn {
  background-color: white;
  border: 1px solid #9747ff;
  color: #9747ff;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 10px;
}
.userfooterright {
  gap: 15px;
  display: flex;
}
.tab {
  overflow: hidden;
  border-bottom: 1px solid #cecece;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;

  padding: 15px 110px;
  border-radius: 20px 20px 0 0;
}
.buttondiv button {
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 25px;
  color: #6b6969;
  margin: 0;
}
.buttondiv button.activebtn {
  color: #9747ff;
}
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  padding: 25px 110px;
  font-size: 15px;
  color: #6b6969;
  margin: 0;
  width: 85%;
}
.tabcontent p {
  margin: 0;
}
.catselectbutton:first-child {
  border: none;
}

/* forgot password css */

.forgot-container-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(#9747ff, #4e09a7);
  height: 100vh;
}
.forgot-container {
  border-radius: 10px;
  background-color: #fff;
  padding: 50px 45px;
  margin: 100px 20px;
  width: 90%;
  max-width: 500px;
}
.forgot-heading {
  margin: 45px 0 15px;
  font-size: 26px;
  font-weight: 700;
  color: #454545;
}
.input-and-btn {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin: 35px 0 20px;
}
.email-input {
  height: 40px;
  background-color: #fbfbfb;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 5px 15px;
}
.email-input::placeholder {
  color: #8f8f8f;
  opacity: 1;
}
.email-input::-ms-input-placeholder {
  color: #8f8f8f;
}
.reset-password-btn {
  height: 40px;
  border-radius: 5px;
  border: none;
  color: white;
  background: #2f2f2f;
}
.login-link {
  text-decoration: none;
  color: #0053e9;
  font-weight: 600;
  font-size: 14px;
}
.forgot-text {
  font-size: 14px;
  color: #777777;
  margin: 0;
}
.resetpass-btn {
  height: 40px;
  border-radius: 5px;
  border: none;
  font-weight: 400;
  color: #fff;
  background: #313131;
}

/* add review css */

.main-container-200 {
  padding: 75px 200px 50px;
}
.ordered-product {
  background-color: #fafbfc;
  border-radius: 10px;
  border: 1px solid #efefef;
  padding: 20px 25px;
  display: flex;
  gap: 30px;
  width: 50%;
}
.rating-review p {
  color: #b1b1b1;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.rating-review div {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #4a4a4a;
  font-size: 17px;
  gap: 3px;
}
.rating-review div img {
  height: 16px;
  width: 16px;
}
.rating-section {
  background-color: #fafbfc;
  border-radius: 10px;
  border: 1px solid #efefef;
  padding: 20px 25px;
  width: 50%;
}
.product-img-review img {
  height: 130px;
  width: 130px;
  object-fit: cover;
  border-radius: 5px;
}
.rating-heading {
  font-size: 34px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 25px;
}
.product-name-review {
  font-size: 24px;
  font-weight: 600;
  color: #3f3f3f;
  margin: 0;
  word-break: break-word;
}
.product-detail-review {
  padding-top: 10px;
}
.product-detail-review h3 {
  font-size: 14px;
  margin: 10px 0 20px;
}
.rating-review {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: baseline;
}
.review-left-right {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}
.single-rating-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
}
.single-rating-input label {
  font-size: 14px;
  font-weight: 500;
  color: #7b7b7b;
}
.single-rating-input input,
.single-rating-input textarea {
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 5px 15px;
}
.single-rating-input input {
  height: 40px;
}
.single-rating-input textarea {
  min-height: 100px;
  max-height: 250px;
}
.post-review-btn {
  height: 45px;
  background-color: #9747ff;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  width: 100%;
}

/* wishlist css */
