.product-details-page {
  padding: 0px 0 40px 0;
}

.product-details-page .custom-breadcrumb {
  margin-bottom: 20px;
}

.product-details-page .row-content .gallery-layout {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper {
  display: flex;

  gap: 20px;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar {
  width: 95px;
  height: 530px;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar .thumb-swiper {
  height: 100%;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar .thumb-swiper .thumb-item {
  border: 1px solid #b87332;
  /* padding: 3px; */
  cursor: pointer;
  height: 95px;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar .thumb-swiper .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage {
  flex: 1;
  background: #fffaf5;
  position: relative;
}

/* .product-details-page
  .row-content
  .gallery-layout
  .right-content-wrapper
  .main-stage
  .featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 460px;
  margin: auto;
  height: 460px;
  position: relative;
  overflow: hidden;
} */

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .wishlist-trigger {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .wishlist-trigger svg {
  transition: transform 0.2s ease, color 0.2s ease;
  width: 20px;
  height: 20px;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .wishlist-trigger.active svg {
  transform: scale(1.1);
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip {
  display: flex;
  justify-content: space-between;
  padding: 18px 7px;
  background: #fde7d3a3;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .divide-line {
  background: #343434;
  width: 1px;
  margin: 0 15px;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
  display: flex;
  justify-self: center;
  font-size: 14px;
  line-height: 1.2;
  color: #222222;
  width: 100%;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item span b {
  font-family: Roboto;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item .img-wrapper {
  width: 32px;
  height: 25px;
  margin: 0 10px;
  aspect-ratio: 1/1;
}

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item .img-wrapper img {
  width: 100%;
  height: 100%;
}

/* Details Section */
.product-details-page .row-content .details-layout .gray-bg-wrapper {
  background: #f5f5f5;
  padding: 30px 20px 10px 20px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .badge-row .stock-label {
  border: 1px solid #28a745;
  color: #28a745;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 11px;
  margin-right: 8px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .badge-row .best-label {
  border: 1px solid #ddd;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 11px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left {
  width: 70%;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .product-name {
  font-size: 24px;
  font-weight: 600;
  color: #343434;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .share-box {
  border: 1px solid #8842006e;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .share-box svg {
  font-size: 25px;
  color: #343434;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .hanging-info {
  color: #343434;
  font-size: 15px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .hanging-info .inner_text {
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  width: 90%;
}

.product-details-page .row-content .details-layout .dot {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #343434;
  aspect-ratio: 1/1;
  margin-bottom: 0px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .pricing-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .pricing-info .main-price {
  font-size: 19px;
  font-weight: 800;
  color: #884200;
  font-family: "Roboto Slab";
}

.product-details-page .row-content .details-layout .gray-bg-wrapper .pricing-info .discount-pill {
  background: #fce0c4;
  color: #884200;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 11px;
  font-family: "Roboto Slab";
}

.product-details-page .row-content .details-layout .without-gray {
  padding: 0px 20px 0px 20px;
}

.product-details-page .row-content .details-layout .without-gray .config-group {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.product-details-page .row-content .details-layout .without-gray .config-group .inner_icon{
  cursor: pointer;
}

.product-details-page .row-content .details-layout .without-gray .config-group .heading {
  display: block;
  margin-bottom: 0px;
  font-size: 15px;
  color: #343434;
  white-space: nowrap;
  font-weight: 600;
}

.product-details-page .row-content .details-layout .without-gray .config-group .value_text {
  font-size: 15px;
  font-weight: 400;
  font-family: Roboto;
  margin-bottom: 0px;
}

.product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .size-options {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 10px;
  flex-wrap: wrap;
}

.product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .custom-btn-wrapper {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}

.product-details-page .row-content .details-layout .without-gray .material-group {
  flex-direction: column;
  gap: 0px !important;
}

.product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card {
  text-align: center;
  font-size: 14px;
  font-family: "Raleway";
  color: #222222;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card .material-img.active {
  border: 1px solid #fce0c4 !important;
  background: #fce0c4;
}

.product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card .material-img {
  border: 1px solid #c7c6c6;
  margin-bottom: 5px;
  height: 70px;
  overflow: hidden;
}

.product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card .material-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details-page .row-content .details-layout .without-gray .config-group .radio-bottom-group {
  display: flex !important;

  column-gap: 20px;
  row-gap: 5px;
  flex-wrap: wrap;
}

.product-details-page .row-content .details-layout .without-gray .config-group .custom-radio-stack label {
  font-size: 15px;
  text-align: center;
  color: #343434;
  white-space: wrap;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-details-page .row-content .details-layout .without-gray .yellow-divider {
  margin-top: 15px;
  height: 1px;
  background: #88420060;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions {
  padding-top: 30px;
  background: #fffaf5;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row {
  margin-bottom: 10px;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .qty-btn-wrapper {
  width: fit-content;
  display: flex;
  align-items: center;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-wrapper {
  border: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 15px;
  color: #343434;
  height: 100%;
  cursor: pointer;
  background: #ffffff;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-wrapper .text {
  margin-bottom: 0;
  padding: 4px 15px 5px;
  width: 100%;
  font-family: "Raleway";
  text-align: center;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-icon {
  background: #b9b9b9;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-icon svg {
  font-size: 18px;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-wrapper:hover {
  border-color: #884200;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .qty-text {
  font-size: 13px;
  color: #343434;
  margin-bottom: 0px;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .add-cart-btn {
  width: 100%;
  padding: 5px 15px;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row span {
  color: #343434;
  font-size: 15px;
  font-family: "Raleway";
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .price {
  text-align: center;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .row .price strong {
  font-size: 18px;
  font-family: "Roboto Slab";
  color: #884200 !important;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details-page .row-content .details-layout .bottom-section {
  margin-top: 20px;
  padding: 0 10px;
}

.product-details-page .row-content .details-layout .bottom-section .wrappper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 6px;
}

.product-details-page .row-content .details-layout .bottom-section .wrappper .note-text {
  font-size: 12px;
  color: #6d6b6b;
  margin-bottom: 0px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-details-page .row-content .details-layout .bottom-section .timeline {
  display: flex;
  gap: 10px;
}

.product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card {
  flex: 1;
  background: #f5f5f5;
  padding: 5px 5px 5px 25px;
  border-radius: 4px;

  position: relative;
  border: 1px solid #e3e3e3;
  margin-left: 20px;
}

.product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .icon-circle {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ccc;
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .title {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  font-family: "Raleway";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .date {
  font-size: 12px;
  color: #884200;
  margin-bottom: 0;
  font-family: "Roboto";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}

.product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .date sup {
  font-size: 9px;
}

/*===================== new whatsapp contact=======================*/
.product-details-page .row-content .details-layout .without-gray .whatsapp-contact {
  background: #fcecdb;
  border: 1px solid #b873324d;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  align-items: center;
  font-family: "Roboto";
  margin: 15px 0;
}

.product-details-page .row-content .details-layout .without-gray .whatsapp-contact .solution {
  color: #343434;
  font-size: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now {
  display: flex;
  align-items: center;
}

.product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now .btn {
  text-decoration: underline;
  color: #343434;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
}

.product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now .image-wrapper {
  height: 30px;
  width: 30px;
}

.product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-details-page .zoomable {
  position: relative;
  overflow: hidden;
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
}

.product-details-page .zoomable__img {
  transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
  transition: transform 0.15s linear;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  aspect-ratio: 1/1;
}

.product-details-page .zoomable--zoomed .zoomable__img {
  cursor: zoom-in;
  transform: scale(var(--zoom, 2));
}

/*====================== image preview ==================*/

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .title {
  font-size: 15px;
  margin-bottom: 15px;
  color: #343434;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box {
  display: flex;
  align-items: center;
  padding-right: 5px;
  justify-content: space-between;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper {
  height: 40px;
  width: 40px;
  background: #000;
  position: relative;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .name {
  margin: 0;
  font-size: 14px !important;
  font-weight: 400;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper .eyes-icon {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #ffffff63;
  backdrop-filter: blur(2px);
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper .eyes-icon svg {
  color: #ffffff;
}

.product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .delete-btn img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/*================================ frame =================*/

.product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .featured-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  width: 370px;
  margin: auto;
  height: 370px;
  margin: 45px auto;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.set-frame-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  z-index: 1;
  overflow: hidden;
}

.set-frame-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.frame-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/*=================== responsive ========================*/
@media (min-width: 1200px) and (max-width: 1399px) {
  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-wrapper .text {
    padding: 4px 13px 5px;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact {
    padding: 10px 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now .btn {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .solution {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .title {
    margin-bottom: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .name {
    max-width: 105px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
    font-size: 13px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper {
    gap: 10px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar {
    width: 70px;
    height: 375px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar .thumb-swiper .thumb-item {
    height: 65px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .featured-image {
    width: 260px;
    height: 260px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .divide-line {
    margin: 0 10px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item .img-wrapper {
    width: 45px;
    height: 21px;
    margin: 0 5px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .wishlist-trigger {
    font-size: 25px;
  }

  .product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper {
    padding: 20px 15px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .product-name {
    font-size: 18px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .hanging-info {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .pricing-info .main-price {
    font-size: 18px;
  }

  .custom-size-btn-wrapper .custom-link {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group {
    gap: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray {
    padding: 0px 10px 0px 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .heading {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .size-btn {
    padding: 3px 6px !important;
    font-size: 11px !important;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .size-options {
    gap: 6px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .share-box svg {
    font-size: 21px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .share-box {
    height: 30px;
    width: 30px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row {
    align-items: center;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .custom-radio-stack label {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-wrapper {
    font-size: 12px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .add-cart-btn {
    padding: 5px 11px !important;
    font-size: 12px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-icon svg {
    font-size: 15px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-icon {
    width: 35px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .price strong {
    font-size: 16px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline {
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card {
    padding: 5px 3px 5px 17px;
    margin-left: 12px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .icon-circle {
    width: 30px;
    height: 30px;
    left: -15px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .qty-text {
    font-size: 12px;

    line-height: 1.2;
  }

  /* ===== TEXT SIZE BALANCE ===== */
  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .title {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .date {
    font-size: 11px;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact {
    padding: 8px 8px;
    margin: 10px 0;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .solution {
    font-size: 13px;
    line-height: 1.2;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now .btn {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .title {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper {
    height: 36px;
    width: 36px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .delete-btn {
    height: 20px;
    width: 19px;
    display: flex;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .name {
    max-width: 85px;
  }
}

@media (min-width: 0px) and (max-width: 991.98px) {
  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
    font-size: 12px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper {
    flex-direction: column;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar {
    width: 100%;
    height: auto;
    order: 2;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage {
    order: 1;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card .material-img {
    height: 112px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .share-box {
    height: 29px;
    width: 29px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .share-box svg {
    font-size: 20px;
  }

  .product-details-page .row-content .details-layout .without-gray .yellow-divider {
    margin-top: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group {
    margin-top: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .title {
    margin-bottom: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .name {
    max-width: 204px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .divide-line {
    margin: 0 10px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .featured-image {
    width: 300px;

    height: 300px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .product-name {
    font-size: 19px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .hanging-info {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .heading {
    font-size: 14px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
    font-size: 13px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip {
    padding: 10px 7px;
  }

  .product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card {
    margin-bottom: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .title {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper {
    height: 35px;
    width: 35px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .delete-btn {
    height: 20px;
    width: 19px;
    display: flex;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .name {
    max-width: 144px;
  }
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .product-details-page .row-content .details-layout .without-gray .config-group {
    flex-direction: column;
    gap: 0;
  }

    .product-details-page .row-content .details-layout .without-gray .config-group.custom{
    flex-direction: row;
    gap: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .size-options {
    gap: 5px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper {
    padding: 15px 10px 10px 10px;
  }

  .product-details-page .row-content .details-layout .without-gray {
    padding: 0 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .heading {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card .material-img {
    height: 95px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .custom-radio-stack label {
    font-size: 14px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline {
    flex-direction: column;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card {
    margin-left: 12px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .product-name {
    font-size: 16px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .title-row .left .hanging-info {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .pricing-info .main-price {
    font-size: 15px;
  }

  .product-details-page .row-content .details-layout .gray-bg-wrapper .pricing-info .discount-pill {
    padding: 1px 10px;
    font-size: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-wrapper .text {
    padding: 4px 5px 5px;
    font-size: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-icon {
    width: 36px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .upload-icon svg {
    font-size: 14px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .thumbnail-sidebar .thumb-swiper .thumb-item {
    height: 75px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .featured-image {
    width: 250px;

    height: 250px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .size-btn-wrapper .size-btn {
    padding: 4px 11px 2px !important;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .add-cart-btn {
    font-size: 11px;
    padding: 5px 0;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .qty-text {
    font-size: 11px;
    line-height: 1.2;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row span {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .row .price strong {
    font-size: 15px;
  }

  .product-details-page .row-content .details-layout .without-gray .config-group .radio-bottom-group {
    row-gap: 0px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .title {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .icon-circle {
    width: 31px;
    height: 31px;
  }

  .product-details-page .row-content .details-layout .bottom-section .timeline .timeline-card .icon-circle svg {
    font-size: 14px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .wishlist-trigger {
    top: 0px;
    right: 7px;
    font-size: 20px;
    width: 30px;
    height: 30px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .divide-line {
    margin: 0 4px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip {
    padding: 13px 7px;
  }

  .product-details-page .row-content .details-layout .without-gray .material-group .material-list .material-card {
    margin-bottom: 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions {
    padding-top: 20px;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now {
    /* flex-direction: column-reverse; */
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact {
    padding: 10px 8px;
    margin: 15px 0 10px;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .solution {
    font-size: 13px;
    line-height: 1.2;
  }

  .product-details-page .row-content .details-layout .without-gray .whatsapp-contact .contact-now .btn {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .delete-btn {
    height: 20px;
    width: 19px;
    display: flex;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .name {
    font-size: 12px !important;
    max-width: 55px;
    line-height: 1.1;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .title {
    font-size: 13px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper {
    height: 30px;
    width: 30px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper .eyes-icon {
    height: 20px;
    width: 20px;
  }

  .product-details-page .row-content .details-layout .without-gray .buy-actions .attched-file-box .preview-box .img-box .image-wrapper .eyes-icon svg {
    font-size: 13px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .featured-image {
    width: 200px;
    height: 200px;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
    font-size: 12px;
  }
}

@media (min-width: 0px) and (max-width: 1199px) {
  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item {
    flex-direction: column;
  }

  .product-details-page .row-content .gallery-layout .right-content-wrapper .main-stage .guarantee-strip .g-item .img-wrapper {
    width: 18px;
    height: auto;
    margin: 0px 2px 8px;
  }
}