@charset "UTF-8";
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
header {
  position: relative;
  height: 70px;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/header-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
header.header-fixed::before {
  background: black !important;
}
header.header-fixed .header-wrapper {
  padding: 8px 0;
  transition: all 0.4s ease;
}
header.header-fixed .header-wrapper .colB .hampop_wrapper p {
  color: var(--white) !important;
}
header.header-fixed .header-wrapper .colB .hampop_wrapper .line span {
  background: var(--white) !important;
}
header.header-fixed .header-wrapper .colC button:first-child {
  color: var(--white) !important;
}
header.header-fixed .header-wrapper .colC button img {
  filter: brightness(0) invert(1) !important;
}

.detail-secA {
  margin-top: var(--headerheight);
}
.detail-secA .grid {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 5rem;
}
.detail-secA .grid .product-imgs .img-main {
  width: 100%;
  position: relative;
}
.detail-secA .grid .product-imgs .img-main .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.detail-secA .grid .product-imgs .img-main .img-active {
  width: 100%;
}
.detail-secA .grid .product-imgs .img-main .img-active img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-secA .grid .product-imgs .product-thumbs {
  padding: 30px 0;
}
.detail-secA .grid .product-imgs .product-thumbs .swiper-wrapper .swiper-slide.thumb-img {
  width: 80px;
  height: 80px;
  border: 1px solid #e7e7e7;
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.detail-secA .grid .product-imgs .product-thumbs .swiper-wrapper .swiper-slide.thumb-img img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.2s ease;
}
.detail-secA .grid .product-imgs .product-thumbs .swiper-wrapper .swiper-slide.thumb-img.active {
  border-color: var(--primary);
}
.detail-secA .grid .product-imgs .product-thumbs .swiper-wrapper .swiper-slide.thumb-img.active img {
  opacity: 1;
}
.detail-secA .grid .product-imgs .img-main {
  position: relative;
  background: linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFE6DF 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 485px;
}
.detail-secA .grid .product-imgs .img-main::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-a);
  z-index: 1;
  opacity: 0.5;
}
.detail-secA .grid .product-imgs .img-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/home/proBg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.detail-secA .grid .product-imgs .img-main .img-active {
  width: 405px;
  height: 270px;
  z-index: 3;
  position: relative;
}
.detail-secA .grid .product-imgs .img-main .img-active img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-secA .grid .product-imgs .img-main .play-btn {
  position: absolute;
  left: 50px;
  top: 50px;
  --bordercolor: var(--primary);
  z-index: 2;
}
.detail-secA .grid .product-imgs .img-main .play-btn::after {
  border-left-color: var(--primary);
}
.detail-secA .grid .product-content h3 {
  width: 100%;
  max-width: 450px;
  margin-bottom: 15px;
}
.detail-secA .grid .product-content .sku {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.detail-secA .grid .product-content .sku span {
  color: var(--primary);
  font-size: inherit;
}
.detail-secA .grid .product-content .size {
  margin: 10px 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-secA .grid .product-content .size .txt p {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
}
.detail-secA .grid .product-content .size .txt .ltr {
  border: 1px solid rgb(196, 196, 196);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  width: 100%;
  max-width: 268px;
}
.detail-secA .grid .product-content .size .txt .ltr span {
  font-size: 12px;
  color: var(--text);
}
.detail-secA .grid .product-content .size .txt .ltr p {
  color: var(--black);
  font-size: 14px;
  margin: 0;
}
.detail-secA .grid .product-content .size .size-img {
  width: 232px;
  height: 166px;
}
.detail-secA .grid .product-content .size .size-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-secA .grid .product-content .colors p {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
}
.detail-secA .grid .product-content .colors .colors-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.detail-secA .grid .product-content .colors .colors-wrapper .color-card {
  position: relative;
  width: 110px;
  height: 110px;
}
.detail-secA .grid .product-content .colors .colors-wrapper .color-card input[type=radio] {
  position: absolute;
  opacity: 0;
}
.detail-secA .grid .product-content .colors .colors-wrapper .color-card input[type=radio]:checked + label {
  border-color: var(--primary);
}
.detail-secA .grid .product-content .colors .colors-wrapper .color-card label {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  transition: 0.3s ease;
}
.detail-secA .grid .product-content .colors .colors-wrapper .color-card label img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-secA .grid .product-content .colors .colors-wrapper .color-card label span {
  font-weight: 500;
  font-size: 12px;
  color: var(--black);
}
.detail-secA .grid .product-content .btn-group {
  display: flex;
  gap: 12px;
  margin: 40px 0;
  align-items: center;
}
.detail-secA .grid .product-content .description {
  margin: 40px 0;
}
.detail-secA .grid .product-content .description .header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.detail-secA .grid .product-content .description .header p {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}
.detail-secA .grid .product-content .description p {
  margin: 0;
  font-size: 12px;
  color: var(--black);
  font-weight: 400;
}
.detail-secA .grid .product-content .description p:not(:last-child) {
  margin-bottom: 10px;
}
.detail-secA .grid .product-content .description h2, .detail-secA .grid .product-content .description h3, .detail-secA .grid .product-content .description h4, .detail-secA .grid .product-content .description h5, .detail-secA .grid .product-content .description h6 {
  font-size: 16px;
  margin-bottom: 5px;
  margin-top: 5px;
  color: var(--black);
}
.detail-secA .grid .product-content .description li::marker {
  color: var(--primary);
  font-size: 12px;
}
.detail-secA .grid .product-content .description ul, .detail-secA .grid .product-content .description ol {
  padding-left: 15px;
}
.detail-secA .grid .product-content .description ul li, .detail-secA .grid .product-content .description ol li {
  font-size: 12px;
  color: var(--black);
}
.detail-secA .grid .product-content .description ul {
  margin-bottom: 20px;
}
.detail-secA .grid .product-content .description ul li::marker {
  content: "→ ";
}

.detail-secB {
  padding: 70px 0;
  background: var(--gradient-a);
  margin-bottom: 70px;
}
.detail-secB .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 65px;
}
.detail-secB .grid .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-secB .grid .item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 5px;
  flex-shrink: 0;
  overflow: hidden;
}
.detail-secB .grid .item .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-secB .grid .item .content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
  margin-top: 0;
}
.detail-secB .grid .item .content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.detail-secC {
  padding: 0 0 70px;
}
.detail-secC .heading {
  text-align: center;
  margin-bottom: 3rem;
}
.detail-secC .swiper-wrap {
  position: relative;
  margin-top: 4rem;
}
@media only screen and (max-width: 991px) {
  .detail-secC .swiper-wrap {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .detail-secC .swiper-wrap {
    margin-top: 2rem;
  }
}
.detail-secC .swiper-wrap .swiper-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media only screen and (max-width: 675px) {
  .detail-secC .swiper-wrap .swiper-group {
    display: none;
  }
}
.detail-secC .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--primary);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.detail-secC .swiper-wrap .swiper-group button.swiper-button-lock, .detail-secC .swiper-wrap .swiper-group button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .detail-secC .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.detail-secC .swiper-wrap .swiper-group button svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 991px) {
  .detail-secC .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.detail-secC .swiper-wrap .swiper-group button svg path {
  fill: var(--white);
}
.detail-secC .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.detail-secC .swiper-wrap .swiper-group .fourSilder-next {
  transform: rotate(270deg);
}
.detail-secC .swiper-wrap .swiper-group .fourSilder-prev {
  transform: rotate(90deg);
}
.detail-secC .swiper-wrap .fourSilder {
  margin: 0 20px;
}/*# sourceMappingURL=detail.css.map */