section.product-detail {
  height: 100vh;
}

section.product-detail .wrapper-image {
  width: max-content;
  height: 100vh;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

section.product-detail img {
  width: auto;
  height: 730px;
  object-fit: contain;
  transition-duration: 0.7s;
}

section.product-detail .img {
  position: relative;
  /* transition-duration: 0.5s; */
  height: 730px;
}
section.product-detail .img::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background-color: #a77c63;
  border-radius: 50%;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.4;
}

section.product-detail .button-circle[data-tab="tab1"] {
  position: absolute;
  left: 34%;
  top: 35.5%;
}

section.product-detail.product-2 .button-circle[data-tab="tab1"] {
  left: 48%;
  top: 47%;
}

section.product-detail.product-2 .button-circle[data-tab="tab2"] {
  left: 21%;
  top: 62%;
}

section.product-detail.product-2 .button-circle.open[data-tab="tab2"] {
  left: 30%;
  top: 80%;
}

section.product-detail .button-circle[data-tab="tab2"] {
  position: absolute;
  left: 51.5%;
  top: 57%;
}

section.product-detail .button-circle[data-tab="tab3"] {
  position: absolute;
  left: 20%;
  top: 72%;
}

section.product-detail .button-circle .text {
  color: #ffffff;
  /* text-shadow: 0 0 3px rgba(24, 24, 24, 0.8); */
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100px;
  height: 12px;
  transform: translateY(-50%) !important;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
/* section.product-detail .button-circle:hover .text::after {
  font-size: 8px !important;
} */
section.product-detail .button-circle .text::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 8px !important;
  line-height: 12px;
  font-family: var(--font-body);
}

section.product-detail .button-circle:hover .text,
section.product-detail .button-circle.open .text {
  opacity: 1;
  visibility: visible;
}

section.product-detail .button-circle.open .text {
  margin-left: 5px;
}

section.product-detail .button-circle.open .text::after {
  content: "CLOSE";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 10px !important;
}

section.product-detail .list-button {
  width: 40px;
  height: 0;
}

section.product-detail .content.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

/* section.product-detail.done.open {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
} */

section.product-detail .content.active .wrapper-image {
  max-width: 50%;
}

section.product-detail .wrapper-content {
  width: 0;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}

section.product-detail .wrapper-content .tab-close {
  padding: 10px;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  right: 54px;
  top: 54px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

section.product-detail .wrapper-content .tab-close::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

section.product-detail .wrapper-content .tab-close svg {
  width: 16px;
  height: 16px;
  cursor: pointer;
  min-width: 16px;
}

section.product-detail .content.active .wrapper-content {
  /* max-width: 50%; */
}

section.product-detail .content {
  width: 100%;
  display: flex;
}

section.product-detail .wrapper-content .tab {
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 0;
  width: 100%;
  height: 101dvh;
  background-color: #fff;
  padding: 64px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateX(100%);
  transition-duration: 1s;
  transition-delay: 0.2s;
}

section.product-detail .content.active .tab.active {
  transform: translateX(0) scale(1);
  transition-delay: 0.7s;
}

section.product-detail .content.active .tab.active {
  z-index: 2;
}

section.product-detail .wrapper-content .tab-img {
  width: 100%;
  aspect-ratio: 465 / 348;
  margin-top: 40px;
  position: relative;
}

section.product-detail .wrapper-content .tab-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.product-detail .wrapper-content .tab-img.has-hover:hover img {
  opacity: 0;
  visibility: hidden;
}

section.product-detail .wrapper-content .tab-img.has-hover:hover img.img-hover {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

section.product-detail .wrapper-content .tab-img.has-hover img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

section.product-detail .wrapper-content .tab-img.has-hover img:not(.img-hover) {
  z-index: 2;
}

section.product-detail .wrapper-content .tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

section.product-detail .wrapper-content .tab .desc {
  margin-top: 24px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #111111;
  font-family: var(--font-body);
}

section.product-detail .wrapper-content .tab .title {
  font-size: 36px;
  line-height: 43px;
  color: #000;
  font-family: var(--font-heading);
  margin-bottom: 0;
}

section.product-detail .content.active .img img {
  transition-delay: 1s;
}

section.product-detail .content.active.tab1 .img img {
  transform: scale(2.5) translate(50px, 100px);
  transition-duration: 0.7s;
}

section.product-detail.product-2 .content.active.tab1 .img img {
  transform: scale(2.5) translate(40px, 20px);
}

section.product-detail.product-2 .content.active.tab2 .img img {
  transform: scale(2.5) translate(140px, -20px);
}

section.product-detail .content.active.tab1 .button-circle[data-tab="tab1"] {
  left: 30%;
  top: 58%;
}

section.product-detail .content.active.tab2 .img img {
  transform: scale(2.5) translate(-20px, 0);
  transition-duration: 0.7s;
}

section.product-detail .content.active.tab3 .img img {
  transform: scale(2) translate(100px, -90px);
  transition-duration: 0.7s;
}

.button-circle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: border 0.3s ease-in;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.product-detail.animate-zoomin.done .button-circle {
  opacity: 1;
  visibility: visible;
}

.button-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.button-circle.open::before {
  width: 30px;
  height: 30px;
  border: none;
}

.button-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  transform-origin: center;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #fff;
  color: #fff;
  animation: scalebutton 4s infinite;
  z-index: 2;
}

.button-circle.open::after {
  background-color: transparent;
  background-image: url("../images/svg/product-detail-close.svg");
  background-size: cover;
  animation: none;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border: none;
}

.button-circle.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 2;
  transition: opacity 300ms;
  opacity: 0;
}

@keyframes scalebutton {
  0% {
    opacity: 0;
    border-width: 2px;
    transform: scale(0);
    background-color: currentColor;
  }
  50% {
    opacity: 1;
    transform: scale(1);
    border-width: 2px;
    background-color: currentColor;
  }
  100% {
    opacity: 0;
    border-width: 1px;
    background-color: transparent;
    transform: scale(2);
  }
}

section.product-variant {
  height: 100vh;
  /* margin-top: 100px; */
}

section.product-variant .content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

section.product-variant .content-top {
  width: calc(100% / 3);
  max-width: 440px;
  position: relative;
}

section.product-variant .content-bottom {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
}

section.product-variant .content-bottom .title {
  font-weight: 400;
  font-size: 100px;
  line-height: 108px;
  color: rgba(142, 142, 141, 0.4);
  font-family: var(--font-heading);
  text-align: center;
}

section.product-variant .content-top__image {
  width: 100%;
  aspect-ratio: 474 / 486;
  position: relative;
  z-index: 2;
  margin-top: 40px;
  cursor: none;
}

section.product-variant .content-top__image .cursor-pointer {
  position: absolute;
  width: max-content;
  height: auto;
  aspect-ratio: 1;
  font-size: 10px;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;

  display: flex;
  align-items: center;
  font-family: var(--font-body);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

section.product-variant .content-top__image.active {
  cursor: none;
}

section.product-variant .content-top__image.active .cursor-pointer {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

section.product-variant .content-top__image .swiper-img-wrapper.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

section.product-variant .content-top__image .swiper-img-wrapper {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  padding-left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: all 0.3s ease;
}

section.product-variant .swiper-button-next {
  right: -80px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 50%;
}

section.product-variant .swiper-button-next svg,
section.product-variant .swiper-button-prev svg {
  width: 5px;
  height: 8px;
}

section.product-variant .swiper-button-next svg path,
section.product-variant .swiper-button-prev svg path {
  fill: black;
}

section.product-variant .swiper-button-prev {
  left: -80px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 50%;
}

section.product-variant .swiper-button-next::after,
section.product-variant .swiper-button-prev::after {
  display: none;
}

section.product-variant .content-top__image .swiper .swiper-wrapper {
  padding-left: 0;
}

section.product-variant .content-top__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

section.product-variant .content-top__image img.active {
  /* opacity: 1;
  visibility: visible; */
}

.content-discover {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  /* z-index: 199; */
  /* clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); */
  transition: clip-path 0.7s;
  display: block;
  z-index: -1;
  transition-delay: 0.5s;
}
.content-discover.show-popup {
  /* clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); */
  z-index: 199;
}
.content-discover.show-popup .content-discover__img {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
  transition-duration: 1s;
}
.content-discover.show-popup .content-discover__wrapper {
  transform: translateX(0);
  transition-delay: 0.2s;
}

.content-discover__wrapper {
  height: 100%;
  position: relative;
  transform: translateX(100%);
  transition-duration: 0.8s;
}
.content-discover__img {
  height: 100%;
  position: relative;
  opacity: 0;
  visibility: hidden;
}
.content-discover__img .swiper-discover-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.content-discover__img .swiper-discover-img .swiper-arrow {
  display: none !important;
}
.content-discover__img .swiper-discover-img.active .swiper-arrow {
  display: flex !important;
}
.content-discover__img .swiper-discover-img.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.content-discover__img .discover-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.content-discover__img .swiper-pagination {
  bottom: 90px;
}
.content-discover__img .swiper-pagination-bullet {
  width: 12px;
  height: 1px;
  border-radius: 0;
}
.content-discover__img
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #111;
}
.content-discover__img .discover-img .img {
  width: 473px;
  aspect-ratio: 473 / 486;
}
.content-discover__img .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.content-discover__img .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: unset;
  font-size: 0;
  display: none;
}
.content-discover__img .swiper-arrows .swiper-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  transform: translateY(-50%);
}
.content-discover__img .swiper-arrows .swiper-button-prev {
  left: 80px;
}
.content-discover__img .swiper-arrows .swiper-button-next {
  right: 80px;
}
.content-discover__img .swiper-arrows .swiper-arrow svg {
  width: auto;
  height: auto;
}
.content-discover__img .discover-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-discover__close {
  /* position: absolute;
  right: 58px;
  top: 34px; */
  /* background-color: red; */
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  margin-left: auto;
}
.content-discover__close:hover {
  cursor: pointer;
}
.content-discover__content {
  padding: 55px 64px 110px;
  background-color: #fff;
  height: 100vh;
  overflow-y: scroll;
}
.content-discover__content .group-color .dot-color {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: relative;
  background-color: var(--main-color);
}
.content-discover__content .group-color .dot-color.active {
  box-shadow: 0 0 0 1.5px #fff, 0 0 0 2px var(--main-color);
}
.content-discover__content .group-color ul {
  display: flex;

  gap: 14px;
}
.content-discover__content .group-color ul li {
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
}
.content-discover__content .accordion-button::after {
  background-image: none !important;
  display: none;
}
.content-discover__content .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: #fff;
  color: #111;
}
.content-discover__content
  .accordion-button:not(.collapsed)
  .icon
  svg
  rect:last-child {
  opacity: 0;
  visibility: hidden;
}
.content-discover__content .accordion-button .icon svg {
  transition: all 0.3s ease;
}
.content-discover__content .accordion-button .icon svg rect {
  transition: all 0.3s ease;
}
.content-discover__content .accordion-button:not(.collapsed) .icon svg {
  transform: rotate(90deg) !important;
}
.content-discover__content .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}
.content-discover__content .accordion-button:focus {
  border: none;
  box-shadow: none;
}
.content-discover__content .accordion-button p {
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.content-discover__content .accordion-body {
  padding-left: 0;
}
.content-discover__content .accordion-body p {
  font-family: var(--font-body);
  font-size: 12px;
  color: #111;
  margin-bottom: 24px;
}
.content-discover__content .accordion-body ul {
  list-style-type: disc;
  padding-left: 24px;
}
.content-discover__content .accordion-body ul li {
  font-family: var(--font-body);
  font-size: 12px;
  color: #111;
  border: none !important;
  padding: 0;
  margin-bottom: 12px;
}
.content-discover__content .accordion-body a {
  font-family: var(--font-body);
  font-size: 12px;
  color: #111;
  text-transform: uppercase;
  text-decoration: underline;
  transition: color 0.4s;
}
.content-discover__content .accordion-body a:hover {
  color: rgba(17, 17, 17, 0.7);
}
/* .content-discover__content::-webkit-scrollbar {
  display: none;
} */
.content-discover__content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.content-discover__content ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}
.content-discover__content ul li .title {
  text-transform: capitalize;
}
.content-discover__content ul li:first-child {
  border-top: 1px solid #e8e8e8;
}
.content-discover__content ul li > div {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1;
  color: #111;
}
.content-discover__content .button-group {
  margin-top: 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-discover__content .button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 36px;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  background-color: #111;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid #111;
}
.content-discover__content .button-group a:hover {
  /* color: #111; */
  /* background-color: #fff; */
}
.content-discover__title {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
.content-discover__title h2 {
  font-size: 36px;
  line-height: 1;
  font-family: var(--font-heading);
  color: #111;
  pointer-events: none;
}
.content-discover__content h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #959594;
  margin-bottom: 40px;
}
.content-discover__title p {
  font-family: var(--font-body);
  font-size: 8px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid #e8e8e8;
  white-space: nowrap;
  margin: 0;
}
.button-info .button-circle svg {
  width: 20px;
  height: 20px;
  opacity: 1;
}
.button-info .button-circle::after {
  color: transparent;
}
section.product-variant .content-top__sku {
  color: #cccccb;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}

section.product-variant .content-top__buynow {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  color: #fff;
  padding: 12px 24px;
  background-color: #000;
  text-decoration: none;
  width: max-content;
  margin: 20px auto 0;
  display: block;
}

section.product-variant .content-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding-left: 0;
  z-index: 99;
  margin-bottom: 0;
}

section.product-variant .content-pagination li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-main);
  position: relative;
  cursor: pointer;
  min-width: 16px;
  border: 1px solid #fff;
}

section.product-variant .content-pagination li::before {
  content: attr(data-variant);
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  color: #111;
  font-weight: 400;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  text-transform: capitalize;
  display: none;
}

section.product-variant .content-pagination li:hover::before {
  opacity: 1;
  visibility: visible;
}

section.product-variant .content-pagination li.active::after {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 50%;
  border: 1px solid var(--color-main);
  position: absolute;
  top: -2px;
  left: -2px;
}

/* button animate */
.button-custom {
  --background: transparent;
  --text: #fff;
  --font-size: 12px;
  --duration: 0.44s;
  --move-hover: -4px;
  --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
  --font-shadow: var(--font-size);
  display: block;
  outline: none;
  appearance: none;
  border: none;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
  background: var(--background);
  color: var(--text);
  transform: translateY(var(--y)) translateZ(0);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.button-custom div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 var(--text);
}

.button-custom div span {
  display: block;
  backface-visibility: hidden;
  font-style: normal;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
  min-width: 4px;
}

.button-custom:hover span {
  --m: calc(var(--font-size) * -1);
}

.cursor {
  width: 37px;
  height: 37px;
  /* background-color: rgba(255, 255, 255, 0.7); */
  background-image: url("data:image/svg+xml,%3Csvg width='37' height='37' viewBox='0 0 37 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.24278 31.6983C13.2722 38.7277 24.6692 38.7277 31.6986 31.6983C38.7281 24.6689 38.7281 13.2719 31.6986 6.24245C24.6692 -0.78699 13.2722 -0.786989 6.24278 6.24245C-0.786656 13.2719 -0.786657 24.6689 6.24278 31.6983ZM25.542 19.4704L19.4708 19.4704L19.4708 25.5417L18.4709 25.5417L18.4709 19.4704L12.3997 19.4704L12.3997 18.4706L18.4709 18.4706L18.4709 12.3994H19.4708L19.4708 18.4706L25.542 18.4706L25.542 19.4704Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  pointer-events: none;
  /* mix-blend-mode: difference; Hiệu ứng nổi bật */
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

.cursor::after {
  content: attr(data-text);
  width: 150px;
  height: 15px;
  color: white;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  font-family: var(--font-body);
}

@media (max-width: 1600px) {
  section.product-detail .img {
    height: 650px;
  }

  section.product-detail img {
    height: 650px;
  }
}

@media (max-width: 767px) {
  section.product-detail .img::before {
    width: 250px;
    height: 250px;
    bottom: 0;
  }
  .content-discover__content .group-color ul {
    gap: 24px;
  }
  section.product-variant .content-pagination {
    gap: 24px;
  }
  .cursor {
    display: none;
  }

  main {
    overflow: hidden;
  }

  .details h1 {
    padding: 0 16px;
  }

  .details p {
    padding: 0 16px;
  }

  section.product-detail img {
    height: 375px;
  }

  .product-sku__container {
    height: 250px;
  }

  .product-sku__container {
    width: calc(100vw - 32px);
  }

  .product-sku__name {
    font-size: 64px;
    line-height: 64px;
    top: 0;
    transform: translate(-50%, 32px);
  }

  .product-sku__img {
    height: 500px;
  }

  section.product-variant .content-top {
    width: 75%;
    transform: translateY(-20px);
  }

  section.product-variant .content-bottom .title {
    font-size: 70px;
    line-height: 80px;
  }

  .content-discover__content {
    padding: 72px 16px;
    overflow-y: unset;
    height: auto;
  }

  .button-custom div span {
    transform: translateY(-11px) translateZ(0);
  }

  section.product-detail .img {
    height: 375px;
  }

  section.product-detail .button-circle .text {
    opacity: 1;
    visibility: visible;
  }

  section.product-detail .content .img img {
    transform: scale(1.15) !important;
  }

  section.product-detail .wrapper-content .tab {
    padding: 64px 16px 16px;
  }

  section.product-detail .content.active .wrapper-image {
    max-width: 100%;
  }

  section.product-detail .wrapper-content .tab-close {
    right: 16px;
  }

  section.product-detail .wrapper-content {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 101dvh;
    width: 100vw !important;
    transform: translateX(100%) translateY(-1px);
  }

  section.product-variant .content-top__image {
    margin-top: 0;
  }

  section.product-variant .content-bottom {
    top: -110px;
  }

  section.product-variant .content-pagination {
    bottom: -30px;
    gap: 24px;
  }

  section.product-variant .btn-more-info {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-83px);
    width: max-content;
    gap: 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000;
  }

  section.product-variant .btn-more-info span {
    position: relative;
    font-size: 12px;
    line-height: 20px;
  }

  section.product-variant .btn-more-info span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    bottom: 0;
    left: 0;
  }

  .product-sku {
    top: 50px;
  }

  .content-discover .content-discover__img {
    height: 500px;
    width: 100%;
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
  }

  .content-discover.show-popup {
    /* overflow-y: scroll; */
  }

  .content-discover {
    z-index: 1999 !important;
    transform: translateX(100%);
    transition: transform 0.6s ease;
    transition-delay: 0.2s;
  }

  .content-discover.show-popup {
    transform: translateX(0);
  }

  .content-discover__close {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px;
    margin: 0;
    z-index: 3;
  }

  .content-discover.show-popup .content-discover__close {
    opacity: 1;
    transition-delay: 0.3s;
    transition: opacity 0.3s;
  }

  .content-discover__wrapper {
    transform: translateX(0);
    /* padding-top: 500px; */
  }

  .content-discover .col-lg-5 {
    overflow: scroll;
    height: 100vh;
  }

  .content-discover__ovl {
    height: 500px;
    width: 10px;
  }

  .content-discover__img .discover-img .img {
    width: 320px;
  }

  .content-discover__img .swiper-arrows .swiper-button-next {
    right: 16px;
  }

  .content-discover__img .swiper-arrows .swiper-button-prev {
    left: 16px;
  }

  .content-discover__img .swiper-pagination {
    bottom: 40px;
  }

  .details {
    padding-top: 64px;
  }

  .details h1 {
    font-size: 48px;
    line-height: 100%;
  }

  .hero__img img {
    height: auto;
  }

  section.product-detail {
    height: 70vh;
  }

  section.product-detail.product-2 {
    height: 65vh;
  }

  section.product-detail .wrapper-image {
    height: 65vh;
  }

  body.overflow-hidden {
    touch-action: none;
  }

  section.product-detail .wrapper-content .tab-close {
    top: 70px;
  }

  .button-circle {
    height: 50px;
  }

  section.product-detail .content.active .tab.active {
    transition-delay: 0.2s;
  }

  section.product-detail .wrapper-content .tab .desc {
    font-size: 12px;
    line-height: 20px;
  }

  .product-variant.done .product-sku__img {
    transform: translateY(120px);
  }

  .content-discover__content .group-color ul {
    gap: 24px;
  }
}
