.main_content {
  width: 100%;
}

.product_detail_container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}

.pinpbtns_container {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}

/* Share button */
.pd_share__btn_div {
  position: absolute;
  top: 100px;
  right: 10px;
}

.pd_share__btn {
  font-size: 16px;
  color: gray;
  padding: 5px 10px;
  transition: font-size 0.2s ease;
}

.pd_share__btn:hover {
  color: var(--primary-color);
  font-size: 20px;
}

/*  Add to Wishlist Btn */
.pd_wishlist_btn_div {
  position: absolute;
  /* left: 10px; */
  top: 10px;
  right: 10px;
}

.add_to_wishlist {
  background-color: #fff;
  color: var(--dark-blue);
  height: 40px;
  width: 40px;
  font-size: 20px;
  border-radius: 50%;
}

.add_to_wishlist.active {
  background-color: var(--primary-color);
  color: #fff;
}

.add_to_wishlist:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Product Images */
.pd_imgs_container {
  width: fit-content;
  position: relative;
}

/* .pd_main_img_div {} */

.pd__main_img {
  width: 500px;
  height: 500px;
  cursor: pointer;
  border-radius: 12px;
  object-position: top;
}

.pd_detail_container {
  width: auto;
  padding-left: 20px;
}

.extra_imgs_container {
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.pd__extra_img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 12px;
  transition: border 0.2s ease;
  object-position: top;
}

.pd__extra_img.active {
  border: 3px solid var(--primary-color);
  padding: 4px;
}

.pd_name {
  font-size: 2.1rem;
  font-weight: bold;
  color: #474748;
}

.pd_type {
  font-size: 16px;
  color: var(--header-subtext-color);
}

.pd_rating {
  color: #ffc32b;
  padding: 5px 0px;
}

.pd_price_txt {
  font-size: 18px;
  color: var(--header-subtext-color);
}

.pd_price {
  font-size: 24px;
  font-weight: 500;
  color: var(--gray-made-color);
}

.RsSign {
  font-size: 16px;
}

.bfd_price {
  text-decoration: line-through;
  margin-left: 10px;
  color: var(--header-subtext-color);
  font-size: 18px;
}

.discount_calc {
  margin-left: 14px;
  background-color: var(--btn-bg-green);
  font-weight: 500;
  font-size: 16px;
  color: white;
  padding: 2px 8px;
  /* border-radius: 2px; */
}

.avl_offers_div {
  /* margin-top: 15px; */
  margin: 15px 0;
}

.avl_offers_div > h3 {
  font-size: 16px;
  color: var(--main-black);
  font-weight: 500;
}

.avl_offers_div > p {
  font-size: 14px;
  margin-top: 18px;
}

.avl_offers_div > p i {
  color: #27a62e;
}

/* Choose Product Variant/Color */
.pd_qty_var_div {
  /* margin-top: 15px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

/* Product Quantity & Variant Note */
.pd_qty_var_floating_note {
  position: absolute;
  top: -1px;
  font-size: 14px;
  color: var(--header-subtext-color);
}

.pd_qty_var_div h3 {
  font-size: 16px;
  color: var(--main-black);
  font-weight: 500;
}

/* Product Quantity + Variant Div */
.pd_quantity,
.pd_variant {
  margin-top: 22px;
}

.pd_qty_selector {
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  outline: none;
  width: 50px;
  padding: 4px;
  margin-top: 15px;
  background-color: #fff;
}

/* product variants */

.variants {
  margin-top: 8px;
  justify-content: start;
}

.variants label {
  margin: 0 2px;
  width: max-content;
  min-width: 35px;
  cursor: pointer;
}

.variants input[type="radio"] {
  display: none;
}

.variant_value_div {
  width: max-content;
  min-width: 35px;
  height: 35px;
  border-radius: 8px;
  padding: 2px;
  border: 2px solid var(--light-gray);
  position: relative;
  transition: border 250ms;
}

.variant_value {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  padding: 0 6px;
  color: var(--dark-blue);
}

.variants input[type="radio"]:checked + .variant_value_div {
  border: 2px solid #1171ec;
}

/* .variants input[type="radio"]:checked + .variant_value_div::before {
    content: '\2713';
    color: rgb(255, 255, 255);
    font-size: 1.2rem; */
/* font-weight: bold; */
/* display: inline-block;

    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased; */

/* content: "";
    height: 10px;
    width: 10px;
    background-color: #ebebeb;
    display: inline-block; */
/* position: absolute;
    padding: 0px 1px 1px 7px;
    text-shadow: 2px 2px 4px #000000;
} */

.pd_action_btns_div {
  margin-top: 25px;
}

.pd_action_btns_div > .btn {
  height: 38px;
  width: 180px;
  font-size: 14px;
  /* border-radius: 8px; */
  transition: background-color 0.2s ease;
}

.pd_action_btns_div > .btn i {
  margin-right: 5px;
}

.add_to_cart_btn {
  /* border: 1px solid var(--primary-color); */
  color: var(--primary-color);

  color: var(--dark-blue);
  background-color: #f3f3f3;
}

.add_to_cart_btn:hover {
  /* background-color: var(--dark-blue); */
  background-color: var(--btn-bg-green2);
  color: var(--white);
  border: none;
}

/* Add to cart btn icon */
#add_to_cart_btn i {
  display: inline !important;
}

.buy_now_btn {
  /* background-color: var(--main-black); */
  background-color: var(--bottom-nav);
  color: var(--white);
  margin-left: 10px;
  padding-top: 1px;
}

.buy_now_btn:hover {
  background-color: var(--btn-bg-green2);
}

.pd_note_div {
  margin-top: 20px;
}

.pd_note_div > .pd_small_note {
  font-size: 14px;
  color: var(--header-subtext-color);
}

.hr_line_full {
  width: 100%;
  height: 10px;
  margin: 10px 0;
  background-color: #f3f3f3;
}

.dark_line {
  background-color: #ebebeb;
  height: 1px;
  margin: 20px 0;
  width: 100%;
}

.pdt_heading {
  margin-bottom: 20px;
}

.pdt_heading > h2 {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-black);
  text-transform: uppercase;
  background-color: var(--gray-bg);
  padding: 10px;
  max-width: fit-content;
  border-radius: 4px;
}

.pd__description_div {
  width: 100%;
  /* max-width: 500px; */
  max-width: max-content;
  margin: 25px 0;
}

.pd__description {
  /* For "Pre" Tag Wrod Wrap*/
  white-space: normal;
  /* Since CSS 2.1 */
  /* Mozilla, since 1999 */
  white-space: -moz-normal;
  /* Opera 4-6 */
  white-space: -o-normal;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  color: var(--third-color);
  line-height: 1.8rem;
}

.pd__description ul {
  margin-left: 30px;
}

/* User Reviews */
.pd__reviews_div {
  width: 100%;
  max-width: 500px;
  margin: 25px 0;
}

.review__heading {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.reviewer_name {
  font-weight: 500;
  margin-right: 5px;
  color: #333;
}

.user_rating__stars {
  color: #ffc32b;
  margin-right: 5px;
}

.vf_buyer {
  color: gray;
}

.user_review__msg {
  margin-top: 5px;
  color: var(--gray-made-color);
}

/* Light Box */
.pd__lightBox_div {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 110;
  display: none;
  overflow: auto;
}

.pd_lightBox_img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.lb_close {
  position: fixed;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 30px;
}

.separator {
  height: 4px;
  width: 100%;
  margin: 10px 0px;
  background-color: #f4f6f8;
}

@media screen and (max-width: 1020px) {
  .pd__main_img {
    width: 400px;
    height: 400px;
  }

  .pd__extra_img {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 850px) {
  .pd__main_img {
    width: 300px;
    height: 300px;
  }

  .pd__extra_img {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 750px) {
  .product_detail_container {
    margin-bottom: 60px;
  }

  .pinpbtns_container {
    flex-direction: column;
  }

  .pd_share__btn_div {
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 10;
    width: fit-content;
    border-bottom-right-radius: 14px;
  }

  .pd_imgs_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .pd_detail_container {
    padding-top: 10px;
    padding-left: 0;
  }

  .pd__main_img {
    width: 400px;
    height: 400px;
  }

  .pd__extra_img {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 650px) {
  .product_detail_container {
    margin-top: 0;
  }

  .pinpbtns_container {
    flex-direction: column;
  }

  .pd__main_img {
    width: 100%;
    height: auto;
  }

  .pd__extra_img {
    width: 70px;
    height: 70px;
  }

  .pd__extra_img.active {
    padding: 2px;
  }

  .pd_qty_var_floating_note {
    font-size: 12px;
  }

  .pd_action_btns_div {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 48px;
    background-color: #fff;
    /* padding: 10px; */
    z-index: 98;
    display: flex;
    justify-content: space-around;
    box-shadow: 0px 0px 8px 0px rgb(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 0px 8px 0px rgb(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 8px 0px rgb(0, 0, 0, 0.08);
  }

  .pd_action_btns_div > .btn {
    height: 100%;
    width: 100%;
    border-radius: 0;
  }

  .buy_now_btn {
    margin-left: 0;
  }

  .add_to_cart_btn {
    background-color: #fff;
  }

  .pd_note_div > .pd_small_note {
    font-size: 12px;
  }

  .pd__description {
    font-size: 14px;
  }

  .user_review__msg {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .add_to_wishlist {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }

  .pd_main_img_div {
    margin: 0;
  }

  .extra_imgs_container {
    width: 100%;
  }

  .pd__extra_img {
    margin-right: 8px;
  }

  .pd_share__btn_div {
    top: 0;
  }

  .pd_share__btn {
    font-size: 15px;
  }

  .pd_name,
  .pd_price {
    font-size: 1.5rem;
  }

  .RsSign {
    font-size: 12px;
  }

  .pd_type,
  .pd_price_txt,
  .bfd_price {
    font-size: 14px;
  }

  .pdt_heading > h2 {
    font-size: 16px;
  }

  .pd_action_btns_div > .btn {
    font-size: 12px;
  }
}
