#product-detail {
  background: var(--elsel-white-2);
  padding-bottom: 4rem;
}

#product-detail > .eg-container > .eg-wrapper {
  display: flex;
  gap: 1rem;
}

#product-detail > .eg-container > .eg-wrapper > .left {
  width: 40%;
}

#product-detail > .eg-container > .eg-wrapper > .right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#product-detail .left > .box,
#product-detail .right > .box {
  border-radius: 30px;
  background: var(--elsel-white);
}

#product-detail .left > .box {
  padding: 1rem;
  position: relative;
  height: 100%;
}

#product-detail .left > .box > .share-links {
  background: var(--elsel-blue-2);
  border-radius: 30px 0px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  height: 60px;
  z-index: 1;
}

#product-detail .left > .box > .share-links > a:first-child {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--elsel-white);
  font-size: var(--font-16);
  white-space: nowrap;
}

#product-detail .left > .box > .share-links > a:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 35px;
  background: var(--elsel-white);
}

#product-detail .left > .box > .share-links > a:not(:first-child) {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
}

#product-detail .left > .box > .share-links > a > svg > path {
  transition: 0.3s;
}

#product-detail .left > .box > .share-links > a:not(:last-child):hover > svg > path {
  fill: var(--elsel-blue);
}

#product-detail .left > .box > .share-links > a:last-child:hover > svg > path {
  stroke: var(--elsel-blue);
}

#product-detail .left > .box > figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#product-detail .left > .box > figure > img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1/1;
}

#product-detail .right > .box {
  padding: 2rem;
}

#product-detail .right > .box:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

#product-detail .right > .box:nth-of-type(1) > h1 {
  color: var(--elsel-black);
  font-family: "DM Serif Display";
  font-size: var(--font-36);
  font-weight: 400;
}

#product-detail .right > .box:nth-of-type(1) > .group {
  border: 1px solid var(--elsel-grey-5);
  border-radius: 30px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#product-detail .right > .box:nth-of-type(1) > .group > p {
  color: var(--elsel-grey-6);
  font-size: var(--font-18);
  font-weight: 400;
}

#product-detail .right > .box:nth-of-type(1) > .group > span {
  color: var(--elsel-grey);
  font-size: var(--font-18);
  font-weight: 700;
}

#product-detail .right > .box:nth-of-type(2) {
  height: 100%;
  color: var(--elsel-grey-6);
  font-size: var(--font-16);
  line-height: var(--line-26);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

#product-detail .right > .box:nth-of-type(2) > h2 {
  padding-bottom: 2rem;
  color: var(--elsel-blue);
  font-family: "DM Serif Display";
  font-size: var(--font-24);
  font-weight: 400;
}

#product-detail .right > .box:nth-of-type(2) > ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  list-style-type: disc;
  padding-left: 1rem;
  gap: 0.5rem;
}

#product-detail .swiper-slide {
  height: auto;
}

#product-specs {
  background: var(--elsel-white-2);
  padding-bottom: 4rem;
}

#other-products {
  background: var(--elsel-white-2);
  padding-bottom: 4rem;
}

#other-products > .eg-container > .heading {
  padding-bottom: 2rem;
}

#other-products .heading > h2 {
  color: var(--elsel-black);
  font-family: "DM Serif Display";
  font-size: var(--font-24);
  font-weight: 400;
}

#other-products .swiper-pagination {
  position: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding-top: 2rem;
}

#other-products .swiper-pagination > .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid var(--elsel-blue);
  width: 10px;
  height: 10px;
  opacity: 1;
}

#other-products .swiper-pagination > .swiper-pagination-bullet-active {
  background-color: var(--elsel-blue);
}

@media (max-width: 992px) {
  #product-detail > .eg-container > .eg-wrapper {
    flex-direction: column;
  }
  #product-detail > .eg-container > .eg-wrapper > .left,
  #product-detail > .eg-container > .eg-wrapper > .right {
    width: 100%;
  }
}

@media (max-width: 576px) {
  #product-detail .right > .box {
    padding: 1.5rem;
    border-radius: 20px;
  }
  #product-detail .right > .box:nth-of-type(1) > .group {
    padding: 1.25rem 1rem;
    justify-content: space-between;
    border-radius: 20px;
  }
  #product-detail .left > .box > .share-links {
    padding: 0 1rem;
    height: 50px;
  }
  #product-detail .left > .box > .share-links,
  #product-detail .left > .box > .share-links > a:first-child {
    gap: 1.25rem;
  }
}

@media (max-width: 450px) {
  #product-detail .right > .box:nth-of-type(1) > .group {
    width: 100%;
  }
}
