@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.product-secA {
  background: url(../../images/vector/bg1.png) no-repeat, linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 55%, #E6E6E6 78.21%, #D0D0D0 99%), linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 55%, #E6E6E6 78.21%, #D0D0D0 99%);
  background-size: cover;
  padding: 30px 0 80px;
}
@media only screen and (max-width: 991px) {
  .product-secA {
    padding: 40px 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .product-secA {
    padding: 40px 0 80px;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA {
    padding: 20px 0 80px;
  }
}
.product-secA .container {
  max-width: 100%;
  width: 100%;
  padding: 0 var(--containerfluid);
  gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .product-secA .container {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA .container {
    gap: 40px;
  }
}
.product-secA .container .product-nav {
  caret-color: transparent;
  flex: 0 1 auto;
  padding: 10px 10px;
  background-color: #fff;
  border-radius: 5px;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1024px) {
  .product-secA .container .product-nav {
    width: 100%;
    padding: 70px 20px 20px;
  }
}
.product-secA .container .product-nav > li {
  position: relative;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--black);
  padding: 4px 10px;
  transition: 0.5s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 5px;
  padding-right: 25px;
}
.product-secA .container .product-nav > li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  right: 10px;
  top: 0;
  background-image: url(/assets/icon/next.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: 100% 50%;
  rotate: 90deg;
  transition: 0.5s ease;
}
.product-secA .container .product-nav > li.active {
  background: linear-gradient(90deg, #EA882F, #EA5422);
}
.product-secA .container .product-nav > li.active::before {
  rotate: 0deg;
  filter: invert(1);
}
.product-secA .container .product-nav > li.active a {
  color: #fff;
}
.product-secA .container .product-nav > li a {
  color: var(--black);
}
.product-secA .container .product-nav > li.active + .submenu {
  display: block;
}
.product-secA .container .product-nav .submenu {
  display: none;
  background: #f5f5f5;
  padding: 7px 0;
}
.product-secA .container .product-nav .submenu > ul li {
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--black);
  padding: 4px 10px;
  transition: 0.5s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 5px;
}
.product-secA .container .product-nav .submenu > ul li:hover {
  color: var(--black);
}
.product-secA .container .product-nav .submenu > ul li:hover a {
  color: var(--black);
}
.product-secA .container .product-nav .submenu > ul li a {
  color: var(--black);
}
.product-secA .container .w-full {
  width: 100%;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .product-secA .container .w-full {
    display: flex;
    justify-content: center;
  }
}
.product-secA .container .w-full .filter-option {
  position: relative;
  width: 400px;
  padding: 6px 15px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  background: var(--white);
  --paddingleftright: 16px;
  --arrow: 13px;
  --arrowspace: 8px;
  border-radius: 5px;
}
@media only screen and (max-width: 540px) {
  .product-secA .container .w-full .filter-option {
    width: 100%;
  }
}
.product-secA .container .w-full .filter-option::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright, 0);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.product-secA .container .w-full .filter-option > p {
  font-weight: 500;
  color: var(--text);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.product-secA .container .w-full .listing-select {
  min-width: 400px;
}
@media only screen and (max-width: 540px) {
  .product-secA .container .w-full .listing-select {
    min-width: 250px;
  }
}
.product-secA .container .w-full .listing-select .custom-select {
  --inputsize: 38px;
  --paddingleftright: 16px;
  --labelfontbefore: 14px;
  --labelbefore: var(--text);
  --font: 500;
  --arrow: 13px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  background: var(--white);
  border-radius: 5px;
}
.product-secA .container .product-list-wrap {
  flex: 1;
  width: 70%;
  min-width: 70%;
  max-width: 100%;
}
@media only screen and (max-width: 1300px) {
  .product-secA .container .product-list-wrap {
    width: 60%;
    min-width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .product-secA .container .product-list-wrap {
    width: 100%;
  }
}
.product-secA .container .product-preview-slider {
  max-width: 980px;
}
@media only screen and (max-width: 1300px) {
  .product-secA .container .product-preview-slider {
    max-width: 600px;
  }
}
@media only screen and (max-width: 1024px) {
  .product-secA .container .product-preview-slider {
    max-width: 900px;
  }
}
@media only screen and (max-width: 991px) {
  .product-secA .container .product-preview-slider {
    max-width: 600px;
  }
}
@media only screen and (max-width: 768px) {
  .product-secA .container .product-preview-slider {
    max-width: 500px;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA .container .product-preview-slider .swiper-nav {
    display: flex;
  }
}
.product-secA .container .product-preview-slider .product-item h5 {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.product-secA .container .product-preview-slider .product-item img {
  height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 540px) {
  .product-secA .container .product-preview-slider .product-item img {
    height: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA .container .product-preview-slider .product-item .figcaption {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA .container .product-preview-slider .product-item .figcaption .btn-div-wrap .btn {
    --padding: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA .container .swiper-nav {
    display: flex;
    top: 110%;
    translate: -50% -100%;
    width: 30%;
  }
}
@media only screen and (max-width: 540px) {
  .product-secA .container .swiper-nav button {
    width: 40px;
    height: 40px;
    background: #fff;
  }
}
.product-secA .container .swiper-nav button img, .product-secA .container .swiper-nav button svg {
  width: 15px;
  height: 32px;
}
@media only screen and (max-width: 540px) {
  .product-secA .container .swiper-nav button img, .product-secA .container .swiper-nav button svg {
    height: 15px;
  }
}

.product-detail-secA {
  background: url(../../images/vector/bg2.png) no-repeat, linear-gradient(0deg, #EBEBEB 1.5%, #F9F8F8 40%, #FBFBFB 100%);
  background-size: cover;
  padding: 16px 0 60px;
}
@media only screen and (max-width: 991px) {
  .product-detail-secA {
    padding: 20px 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail-secA {
    padding: 20px 0 60px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secA {
    padding: 20px 0 60px;
  }
}
.product-detail-secA .upr-fil-div {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .upr-fil-div {
    gap: 1rem;
  }
}
.product-detail-secA .upr-fil-div .breadcrumps {
  flex: 1;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .upr-fil-div .breadcrumps {
    white-space: normal;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail-secA .upr-fil-div .breadcrumps li {
    line-height: 1.2;
  }
}
.product-detail-secA .upr-fil-div .breadcrumps li:not(:last-child) {
  padding-right: 10px;
}
.product-detail-secA .upr-fil-div .breadcrumps li:not(:first-child) {
  padding-left: 10px;
}
.product-detail-secA .upr-fil-div .breadcrumps li a {
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  .product-detail-secA .upr-fil-div .breadcrumps li:last-child {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail-secA .upr-fil-div .breadcrumps li:nth-child(2)::before {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail-secA .upr-fil-div .breadcrumps li:nth-last-child(2) {
    display: none;
  }
}
.product-detail-secA .upr-fil-div .slct-div {
  min-width: 200px;
  position: fixed;
  right: 2%;
  z-index: 3;
}
@media only screen and (max-width: 2000px) {
  .product-detail-secA .upr-fil-div .slct-div {
    top: 9%;
  }
}
@media only screen and (max-width: 1500px) {
  .product-detail-secA .upr-fil-div .slct-div {
    top: 13%;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .upr-fil-div .slct-div {
    top: 10%;
    right: 5%;
    min-width: 100px;
    max-width: 160px;
  }
}
.product-detail-secA .upr-fil-div .slct-div .custom-select {
  --inputsize: 38px;
  --paddingleftright: 16px;
  --labelfontbefore: 14px;
  --labelbefore: var(--text);
  --font: 500;
  --arrow: 13px;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  background: var(--white);
  border-radius: 5px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .upr-fil-div .slct-div .custom-select {
    --inputsize: 30px;
    --paddingleftright: 8px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .upr-fil-div .slct-div .custom-select .list li {
    padding: 4px 8px;
  }
}
.product-detail-secA .product-dtl-wrap .product-item {
  max-width: 1065px;
  margin-left: auto;
  margin-right: auto;
}
.product-detail-secA .product-dtl-wrap .product-item figure {
  height: 350px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item figure {
    height: 200px;
  }
}
.product-detail-secA .product-dtl-wrap .product-item figure img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption {
  padding-top: 20px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption {
    padding-top: 0;
  }
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption h4 {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption h4 {
    font-size: 24px;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption h4 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .btn {
  --height: 40px;
  --padding: 30px;
}
@media only screen and (max-width: 768px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .btn {
    --height: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .btn {
    --height: 35px;
    --padding: 20px;
  }
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .btn.enqr-btn {
  border: 1px solid var(--black);
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .dwnld-brchr {
  background: var(--white);
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .dwnld-brchr .mobile {
  display: none;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .dwnld-brchr .mobile {
    display: block;
  }
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .dwnld-brchr .desktop {
  display: block;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .dwnld-brchr .desktop {
    display: none;
  }
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .dwnld-brchr:hover {
  background: var(--black);
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn {
  display: none;
  background: none;
  color: var(--black);
  transition: 0.2s ease;
}
@media only screen and (max-width: 540px) {
  .product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn {
    display: none;
  }
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn svg, .product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn img {
  width: 30px;
  height: 30px;
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn::before {
  display: none;
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn::after {
  background: #25d366;
}
.product-detail-secA .product-dtl-wrap .product-item .figcaption .btn-div-wrap .wtsp-btn:hover {
  color: var(--white);
}

.product-detail-secB {
  padding: 80px 0 70px;
  background: var(--gradient-c);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .product-detail-secB {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secB {
    padding: 40px 0;
  }
}
.product-detail-secB .container {
  --container: 1038px;
}
.product-detail-secB .content {
  max-width: 648px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 991px) {
  .product-detail-secB .content {
    max-width: 500px;
  }
}
.product-detail-secB .content .heading {
  margin-bottom: 34px;
}
@media only screen and (max-width: 768px) {
  .product-detail-secB .content .heading {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secB .content .heading {
    margin-bottom: 20px;
  }
}
.product-detail-secB .content .desc p {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .product-detail-secB .content .desc {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secB .content .desc {
    padding: 0;
  }
}
.product-detail-secB .img-draw {
  line-height: 0;
  margin-top: 50px;
}
.product-detail-secB .img-draw img {
  width: 100%;
}

.product-detail-secC {
  padding: 70px 0 50px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secC {
    padding: 40px 0;
  }
}
.product-detail-secC .flex {
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .product-detail-secC .flex {
    flex-direction: column;
    align-items: center;
  }
}
.product-detail-secC .flex .colA, .product-detail-secC .flex .colB {
  flex: 1;
  width: 100%;
  height: 100%;
}
.product-detail-secC .flex .colA {
  z-index: 0;
  width: 50%;
  position: relative;
}
.product-detail-secC .flex .colA::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .product-detail-secC .flex .colA {
    width: 100%;
  }
}
.product-detail-secC .flex .colA::before {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(60px);
  left: 0;
  bottom: unset;
  top: -30%;
  z-index: -1;
}
.product-detail-secC .flex .colA .detail-slider {
  width: 100%;
}
.product-detail-secC .flex .colA .detail-slider .detail-pagination {
  margin-top: 10px;
}
.product-detail-secC .flex .colA .detail-slider .item figure {
  width: 100%;
}
.product-detail-secC .flex .colA .detail-slider .item figure img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail-secC .flex .colB {
  z-index: 0;
  position: relative;
}
.product-detail-secC .flex .colB::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #FFFFFF;
}
.product-detail-secC .flex .colB::before {
  width: 90%;
  height: 100%;
  border-radius: 50%;
  filter: blur(60px);
  left: 0;
  bottom: -10%;
  top: unset;
  right: unset;
  z-index: -1;
}
.product-detail-secC .flex .colB .summery-detail-content .col {
  --padlr: 0;
  border-radius: 10px;
  transition: 0.5s ease;
}
.product-detail-secC .flex .colB .summery-detail-content .col.active .title {
  background: rgba(255, 255, 255, 0.6509803922);
  border-color: var(--primary);
}
.product-detail-secC .flex .colB .summery-detail-content .col.active .title h6 {
  color: var(--primary);
}
.product-detail-secC .flex .colB .summery-detail-content .col.active .title .ico {
  --bgcolor: var(--primary);
}
.product-detail-secC .flex .colB .summery-detail-content .col.active .title .ico::after {
  transform: scaleY(0);
}
.product-detail-secC .flex .colB .summery-detail-content .col .title {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  padding: 14px 10px;
  cursor: pointer;
  transition: 0.5s ease;
  border-bottom: 1px solid #D1D1D1;
}
.product-detail-secC .flex .colB .summery-detail-content .col .title h6 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  flex: 1;
  color: var(--black);
  padding-right: 1rem;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .flex .colB .summery-detail-content .col .title h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 345px) {
  .product-detail-secC .flex .colB .summery-detail-content .col .title h6 {
    font-size: 14px;
  }
}
.product-detail-secC .flex .colB .summery-detail-content .col .title .ico {
  flex: 0 1 auto;
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--black);
  height: var(--size);
  width: var(--size);
  position: relative;
}
.product-detail-secC .flex .colB .summery-detail-content .col .title .ico::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.product-detail-secC .flex .colB .summery-detail-content .col .title .ico::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.product-detail-secC .flex .colB .summery-detail-content .col .title .ico::before, .product-detail-secC .flex .colB .summery-detail-content .col .title .ico::after {
  transition: 0.5s ease;
}
.product-detail-secC .flex .colB .summery-detail-content .col .title .ico::before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  bottom: auto;
  height: var(--border);
  width: 100%;
}
.product-detail-secC .flex .colB .summery-detail-content .col .title .ico::after {
  left: calc(var(--size) / 2);
  translate: -50% 0;
  right: auto;
  width: var(--border);
  height: 100%;
}
.product-detail-secC .flex .colB .summery-detail-content .col article {
  position: relative;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc {
  padding: 14px 10px 35px;
  border-bottom: 1px solid #D1D1D1;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc p, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc ul, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h2, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h3, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h4, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h5, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h6 {
  margin-bottom: 16px;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc * {
  color: var(--black);
  font-size: 16px;
  line-height: 1.25;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h1, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h2, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h3, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h4, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h5, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc h6, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc b {
  color: var(--black);
  font-weight: 500;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc ul {
  padding-left: 20px;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc ul li {
  list-style: disc;
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc ul li {
    font-size: 14px;
  }
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc p {
    font-size: 14px;
  }
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table {
  border-collapse: collapse;
  border: 1px solid #BBBABA;
  border-bottom: 5px solid #EA832E;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table th, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table td {
  padding: 10px 15px;
  border: 1px solid #BBBABA;
  color: #666;
}
@media only screen and (max-width: 540px) {
  .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table th, .product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table td {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table thead th {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  display: none;
}
.product-detail-secC .flex .colB .summery-detail-content .col article .content-desc table tbody tr td:first-child {
  font-weight: 600;
}

.product-detail-secDD {
  padding: 50px 0 40px;
}
.product-detail-secDD .upper-sec {
  margin-bottom: 2rem;
}
.product-detail-secDD .related-products-slider .product-col {
  border: 1px solid #DEDEDE;
  background: var(--white);
  display: block;
  border-radius: 15px;
  overflow: hidden;
  padding: 5px;
  text-align: center;
}
.product-detail-secDD .related-products-slider .product-col:is(a):hover figure img {
  transform: scale(1.04);
}
.product-detail-secDD .related-products-slider .product-col:is(a):hover figcaption p {
  color: var(--primary);
}
.product-detail-secDD .related-products-slider .product-col figure {
  line-height: 0;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.product-detail-secDD .related-products-slider .product-col figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.product-detail-secDD .related-products-slider .product-col figcaption p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  transition: 0.5s ease;
}

.product-detail-secD {
  padding: 50px 0 100px;
}
.product-detail-secD .upper-sec {
  margin-bottom: 2rem;
}
.product-detail-secD .more-products-slider .product-col {
  border: 1px solid #DEDEDE;
  background: var(--white);
  display: block;
  border-radius: 15px;
  overflow: hidden;
  padding: 5px;
  text-align: center;
}
.product-detail-secD .more-products-slider .product-col:is(a):hover figure img {
  transform: scale(1.04);
}
.product-detail-secD .more-products-slider .product-col:is(a):hover figcaption p {
  color: var(--primary);
}
.product-detail-secD .more-products-slider .product-col figure {
  line-height: 0;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.product-detail-secD .more-products-slider .product-col figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.product-detail-secD .more-products-slider .product-col figcaption p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  transition: 0.5s ease;
}

.prct-dtl-section {
  background: linear-gradient(0deg, #F4F4F4, #D8D8D8, #F4F4F4);
}

.product-detail-secE {
  padding: 50px 0 50px;
  position: relative;
  z-index: 0;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .product-detail-secE {
    padding: 40px 0;
  }
}
.product-detail-secE::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #FFFFFF;
}
.product-detail-secE::before {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(100px);
  left: 0;
  bottom: 0;
  top: unset;
  z-index: -1;
}
.product-detail-secE .container .heading {
  text-align: center;
  padding-bottom: 20px;
}
.product-detail-secE .container .heading h3 {
  font-size: 36px;
  line-height: 48px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secE .container .heading h3 {
    font-size: 26px;
    line-height: 1.2;
  }
}
.product-detail-secE .container .table-container {
  padding: 30px 0 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  overflow-x: auto;
}
@media only screen and (max-width: 540px) {
  .product-detail-secE .container .table-container {
    padding: 10px 0 20px;
  }
}
.product-detail-secE .container .table-container table {
  border-collapse: collapse;
  border: 1px solid #BBBABA;
  border-bottom: 5px solid #EA832E;
}
.product-detail-secE .container .table-container table th, .product-detail-secE .container .table-container table td {
  padding: 10px 5px;
  border: 1px solid #BBBABA;
  color: #666;
  font-size: 14px;
}
@media only screen and (max-width: 540px) {
  .product-detail-secE .container .table-container table th, .product-detail-secE .container .table-container table td {
    padding: 5px;
  }
}
.product-detail-secE .container .table-container table thead th {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  display: none;
}
.product-detail-secE .container .table-container table tbody tr {
  text-align: center;
}
.product-detail-secE .container .table-container .note p {
  color: #000;
}
.product-detail-secE .container .btn-div-wrap {
  text-align: center;
}
.product-detail-secE .container .btn-div-wrap .wtsp-btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  .product-detail-secE .container .btn-div-wrap .btn {
    --padding: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-secE .container .btn-div-wrap .btn {
    --height: 35px;
    --padding: 20px;
  }
}
.product-detail-secE .container .btn-div-wrap .btn.enqr-btn {
  border: 1px solid var(--black);
}
@media only screen and (max-width: 540px) {
  .product-detail-secE .container .btn-div-wrap .btn .desktop {
    display: none;
  }
}
.product-detail-secE .container .btn-div-wrap .btn .mobile {
  display: none;
}
@media only screen and (max-width: 540px) {
  .product-detail-secE .container .btn-div-wrap .btn .mobile {
    display: block;
  }
}
.product-detail-secE .container .btn-div-wrap svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.product-detail-secE .container .btn-div-wrap svg path {
  fill: #000;
}

.prodsec-left {
  position: absolute;
  left: 3%;
  top: 11%;
  padding: 0;
  height: 80%;
}
@media only screen and (max-width: 768px) {
  .prodsec-left {
    left: 2%;
  }
}
@media only screen and (max-width: 540px) {
  .prodsec-left {
    display: none;
  }
}
.prodsec-left img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
  right: 0;
  max-width: 480px;
  background: var(--gradient-e);
  transform: translateX(100%);
  transition: 0.5s ease;
}
.product-model.is-open {
  transform: translateX(0%);
}
.product-model .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
}
@media only screen and (max-width: 520px) {
  .product-model .close {
    top: 20px;
    right: 20px;
  }
}
.product-model .close path {
  stroke: var(--black) !important;
  stroke-width: 2 !important;
}/*# sourceMappingURL=product.css.map */