.noto-sans-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
}

.noto-sans-medium {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
}

.noto-sans-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
}

.noto-sans-black {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 900;
}

.noto-serif-regular {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 300;
}

.noto-serif-medium {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 500;
}

.noto-serif-semibold {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 600;
}

.noto-serif-bold {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 700;
}

.baskervville {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-style: normal;
}

.fade {
  transition: all linear 0.2s;
}
.fade:hover {
  transition: all linear 0.2s;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
:root {
  --card-box-w: var(--card-container-w) - var(--sidemenu-w) - var(--products-content-pl);
  --card-gap: 20px;
  --card-count: 5;
  --card-pt: 1.5vw;
  --card-px: 2vw;
  --card-w: calc((var(--card-box-w) - var(--card-gap) * (var(--card-count) - 1)) / var(--card-count));
  --card-inner-width: calc(var(--card-w) - var(--card-px) * 2);
  --card-height: calc(var(--card-inner-width));
  --card-ratio: 265 / 185;
  --prod-card-w: 31vw;
  --thumbs-slide-mr: .65vw;
}

.products .products-sidemenu {
  float: left;
  width: var(--sidemenu-w);
  background-color: #fff;
  border-radius: var(--radius-3);
  border: 1px solid var(--color-green-light-1);
  overflow: hidden;
}
.products .products-sidemenu__title {
  padding: 0.7rem 1.3rem;
  background-color: var(--color-primary);
  font-size: 1.25rem;
  color: #fff;
}
.products .card-row {
  margin-bottom: 1.2vw;
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-gap);
}
.products .card-row:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.products .card-column {
  margin-bottom: 1.2vw;
  width: calc(25% - 1.125rem); /* 4個一行，減去間距 */
  flex: 0 0 calc(25% - 1.125rem);
}

/* YouTube 影片樣式 - 使用與 index.php 相同的樣式 */
.products .card-frame {
  height: var(--index-frame-height);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* 移除影片框架懸停上浮效果 */

.products .card-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 影片卡片整體美化 */
.products .card-column {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

/* 移除卡片懸停上浮效果 */

/* 影片標題美化 */
.products .card-name {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  text-align: center;
  padding: 0 0.5rem;
}

.products .card-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products .card-name a:hover {
  color: #007bff;
  text-decoration: none;
}

/* MP3 卡片美化 */
.products .card-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* 移除 MP3 卡片懸停上浮效果 */

.products .card-img img {
  transition: transform 0.3s ease;
}

.products .card-column:hover .card-img img {
  transform: scale(1.05);
}

/* 卡片標題美化 */
.products .card-title {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  text-align: center;
  padding: 0 0.5rem;
  transition: color 0.3s ease;
}

.products .card-column:hover .card-title {
  color: #007bff;
}

/* 載入動畫 */
.products .card-column {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.products .card-column:nth-child(1) { animation-delay: 0.1s; }
.products .card-column:nth-child(2) { animation-delay: 0.2s; }
.products .card-column:nth-child(3) { animation-delay: 0.3s; }
.products .card-column:nth-child(4) { animation-delay: 0.4s; }
.products .card-column:nth-child(5) { animation-delay: 0.5s; }
.products .card-column:nth-child(6) { animation-delay: 0.6s; }
.products .card-column:nth-child(7) { animation-delay: 0.7s; }
.products .card-column:nth-child(8) { animation-delay: 0.8s; }
.products .card-column:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 移除懸停時的脈衝動畫 */

/* 卡片間距優化 */
.products .card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 0;
}

/* 整體背景美化 */
.products {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.products .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

/* 特殊 MP3 卡片樣式 - 只在首頁顯示 */
.products .card-column.mp3-card {
  position: relative;
}

.products .card-column.mp3-card::before {
  content: "MP3";
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}



/* 分頁樣式 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0 2rem 0;
    padding: 0 1rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination .page-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.pagination .page-link.active {
    background: #007bff;
    color: white;
    border-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.pagination .page-link.prev,
.pagination .page-link.next {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    min-width: 80px;
}

.pagination .page-link.prev:hover,
.pagination .page-link.next:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.pagination .page-ellipsis {
    color: #6c757d;
    font-weight: 600;
    padding: 0 8px;
}

/* 響應式優化 */
@media (max-width: 1200px) {
  .products .card-column {
    width: calc(33.333% - 1rem); /* 3個一行 */
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .products .card-column {
    width: calc(50% - 0.5rem); /* 2個一行 */
    flex: 0 0 calc(50% - 0.5rem);
  }
  
  .pagination {
    padding: 0.8rem 1.5rem;
    gap: 0.3rem;
  }
  
  .pagination .page-link {
    min-width: 35px;
    height: 35px;
    font-size: 13px;
  }
  
  .pagination .page-link.prev,
  .pagination .page-link.next {
    min-width: 70px;
    font-size: 12px;
  }
  
  .products .card-frame {
    height: calc(var(--index-frame-height) * 0.8);
    border-radius: 8px;
  }
  
  .products .card-name,
  .products .card-title {
    font-size: 1rem;
    margin-top: 0.8rem;
  }
  
  .products .card-column {
    margin-bottom: 1rem;
  }
  
  .products .card-row {
    gap: 1rem;
  }
  
  .products .card-column.mp3-card::before {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .products .card-column {
    width: 100%; /* 1個一行 */
    flex: 0 0 100%;
  }
  
  .pagination-container {
    margin: 2rem 0 1rem 0;
    padding: 0 0.5rem;
  }
  
  .pagination {
    padding: 0.6rem 1rem;
    gap: 0.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pagination .page-link {
    min-width: 30px;
    height: 30px;
    font-size: 12px;
    padding: 0 8px;
  }
  
  .pagination .page-link.prev,
  .pagination .page-link.next {
    min-width: 60px;
    font-size: 11px;
  }
  
  .pagination .page-ellipsis {
    font-size: 12px;
    padding: 0 4px;
  }
}
.products .card-column a:hover {
  text-decoration: none;
}
.products .card-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--card-px);
  margin: 0 auto;
  border-radius: var(--radius-3);
  background-color: #E3F2FD;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.products .card-img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.products .card-img:hover::before {
  animation: shine 1s;
}
.products .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.products .card-title {
  display: block;
  padding: 0 1vw;
  color: #4E4E4E;
  cursor: pointer;
  transition: 0.2s;
}
.products .card-title:hover {
  opacity: 0.7;
}
.products .accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products .accordion i {
  float: right;
  width: 12px;
  height: 12px;
  background-image: url(../images/others/icon-plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 0.25s ease;
}
.products .accordion .open.link > i {
  background-image: url(../images/others/icon-minus.svg);
}
.products .accordion li > .link {
  padding: 0.5rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products .accordion li > .link-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.3rem;
}

.products .accordion li > .link-container .link {
  flex: 1;
  padding: 0;
  margin: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}

.products .accordion li > .link-container .toggle-btn {
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.products .accordion li > .link-container .toggle-btn i {
  float: none;
  width: 12px;
  height: 12px;
  background-image: url(../images/others/icon-plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 0.25s ease;
}

.products .accordion li > .link-container .toggle-btn.open i {
  background-image: url(../images/others/icon-minus.svg);
}
.products .accordion li > .link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.3rem;
  width: calc(100% - 2.6rem);
  height: 1px;
  border-top: 1px dashed #B8E1F7;
}
.products .accordion li > .link + .submenu {
  margin-bottom: 16px;
}
.products .accordion li > .open.link {
  background-color: rgba(184, 225, 247, 0.3);
  color: #1683A7;
}
.products .accordion li > .open.link + .submenu {
  position: relative;
}
.products .accordion .link {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 5px 1.5rem;
  transition: all 0.4s ease;
}
.products .accordion .link:hover {
  text-decoration: none;
}
.products .accordion .submenu {
  display: none;
  max-height: 330px;
  overflow-x: hidden;
  overflow-y: auto;
}
.products .accordion .submenu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: #e7e7e7;
}
.products .accordion .submenu::-webkit-scrollbar-track {
  border-radius: 0;
}
.products .accordion .submenu::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #d9d8d8;
  transition: all 0.2s;
  border-radius: 5px;
}
.products .accordion .submenu::-webkit-scrollbar-thumb:hover {
  background-color: #cccccc;
}
.products .accordion .submenu .link {
  display: block;
  color: #666666;
  transition: all 0.25s ease;
}
.products .accordion .submenu .link:hover {
  color: #1683A7;
}
.products .accordion .submenu .link.current {
  background-color: rgba(184, 225, 247, 0.3);
  color: #1683A7;
}

.products-detail .card-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  border-bottom: none;
  gap: 0;
}
.products-detail .info {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - var(--prod-card-w));
  color: #4E4E4E;
}
.products-detail .pic {
  display: flex;
  flex-direction: column;
  width: var(--prod-card-w);
  z-index: 3;
}
.products-detail .swiper {
  width: 100%;
  overflow: hidden;
}
.products-detail .pic .swiper-slide {
  background-color: #fff;
  border: 1px solid var(--color-green-light-1);
}
.products-detail .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-detail .card-swiper {
  position: relative;
  width: var(--prod-card-w);
  height: var(--prod-card-w);
}
.products-detail .card-swiper .swiper-slide {
  padding: 1.5rem;
}
.products-detail .card-swiper .swiper-button-prev,
.products-detail .card-swiper .swiper-button-next {
  opacity: 0;
  color: #000;
  transition: 0.2s;
}
.products-detail .card-swiper .swiper-button-prev:after,
.products-detail .card-swiper .swiper-button-next:after {
  font-size: 24px;
}
.products-detail .card-swiper .swiper-button-prev {
  left: 5px;
}
.products-detail .card-swiper .swiper-button-next {
  right: 5px;
}
.products-detail .card-swiper .card-swiper-pagination {
  padding: 1px 13px;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: initial;
  width: auto;
  border: 1px solid #C3C3C3;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #909090;
  display: flex;
}
.products-detail .card-swiper:hover .swiper-button-prev,
.products-detail .card-swiper:hover .swiper-button-next {
  opacity: 1;
}
.products-detail .card-swiper:hover .swiper-button-prev.swiper-button-disabled,
.products-detail .card-swiper:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.2;
}
.products-detail .info {
  padding-bottom: 60px;
}
.products-detail .info > ul, .products-detail .info > p {
  margin-top: 1.5rem;
}
.products-detail .info .card-name {
  margin-top: 0.5vw;
  color: var(--color-primary);
  font-size: 1.875rem;
}
.products-detail .info .card-desc {
  margin-bottom: 0.5vw;
}
.products-detail .info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-detail .info ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  display: inline-block;
  width: 49%;
  font-size: 18px;
}
.products-detail .info ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
}
.products-detail .info__body {
  padding-left: 36px;
}
.products-detail .info__body .info__body_content {
  margin: 1.5vw 0;
}
.products-detail .info__footer {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
}
.products-detail .btn-zoom {
  position: absolute;
  z-index: 2;
  left: -5px;
  bottom: calc(100% - 2.375rem / 2);
  padding: 0 20px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: var(--color-secondary);
  color: #fff;
  height: 2.375rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.products-detail .btn-zoom svg {
  height: 16px;
  fill: #fff;
}
.products-detail .btn-zoom:hover {
  transform: translateX(5px);
}

.thumbs-swiper {
  background-color: var(--color-green-light-1);
  padding-top: 1.8vw;
  padding: 1.8vw 1.5vw 0 1.5vw;
  border-top-right-radius: 36px;
}
.thumbs-swiper .swiper-slide {
  margin-right: var(--thumbs-slide-mr) !important;
  width: 5.8vw;
  height: 8.3603603604vw;
  border: 1px solid #eeeeef;
  cursor: pointer;
  opacity: 0.8;
}
.thumbs-swiper .swiper-slide img {
  object-fit: cover;
}
.thumbs-swiper .swiper-slide:hover {
  opacity: 1;
}
.thumbs-swiper .swiper-slide::before, .thumbs-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.thumbs-swiper .swiper-slide::before {
  border: 1px solid #fff;
  right: -4px;
  top: -4px;
  z-index: -1;
}
.thumbs-swiper .swiper-slide::after {
  right: -2px;
  bottom: -2px;
  background-color: #8FC59D;
  z-index: -2;
}
.thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.thumbs-swiper .swiper-button-next,
.thumbs-swiper .swiper-button-prev {
  top: calc(50% + 0.9vw);
  background-color: rgba(0, 0, 0, 0.45);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.thumbs-swiper .swiper-button-next::after,
.thumbs-swiper .swiper-button-prev::after {
  color: #fff;
  font-size: 14px;
}

/* LightBox */
body.modalShow {
  overflow: hidden;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(1, 8, 10, 0.8);
}
.lightbox .swiper-pagination {
  bottom: 10vh;
}
.lightbox .swiper-pagination-bullet {
  border: 1px solid #000;
  background: #fff;
  opacity: 0.3;
}
.lightbox .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.lightbox .swiper-button-next,
.lightbox .swiper-button-prev {
  color: #fff;
}
.lightbox .swiper-zoom-container {
  height: 99vh;
}
.lightbox .swiper-zoom-container img {
  opacity: 1 !important;
}
.lightbox .close {
  border-radius: 50px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
  opacity: 0.7;
  z-index: 200;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../images/others/icon-close.svg?v=1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.lightbox .close:hover {
  opacity: 0.9;
}

@media (max-width: 1366px) {
  :root {
    --prod-card-w: 40vw;
    --card-count: 4;
  }
  .products-detail .info {
    width: calc(100% - var(--prod-card-w));
  }
  .products-detail .info .card-name {
    font-size: 1.25rem;
  }
  .products-detail .info__body {
    padding-left: 2vw;
  }
}
@media (max-width: 1024px) {
  :root {
    --card-pt: 0;
    --prod-card-w: 92vw;
    --card-box-w: var(--card-container-w);
    --thumbs-slide-mr: 8px;
  }
  .products-detail .card-row {
    margin-bottom: 0;
    flex-direction: column;
  }
  .products-detail .info {
    flex-direction: column-reverse;
    padding-bottom: 0;
    width: 100%;
  }
  .products-detail .info__body {
    padding-left: 0;
  }
  .products-detail .info__footer {
    position: relative;
  }
  .products-detail .btn-zoom {
    bottom: 100%;
    left: 0;
    z-index: 5;
  }
  .products-detail .btn-zoom:hover {
    transform: translateX(0);
  }
  .thumbs-swiper {
    padding: 1.8vw 0;
    background-color: transparent;
  }
  .thumbs-swiper .swiper-slide {
    width: 75px;
    height: 75px;
    border-color: #BFE0C8;
  }
  .thumbs-swiper .swiper-slide::before, .thumbs-swiper .swiper-slide::after {
    display: none;
  }
  .thumbs-swiper .swiper-slide img {
    object-fit: contain;
  }
  .thumbs-swiper .swiper-button-next,
  .thumbs-swiper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  :root {
    --card-count: 2;
    --card-gap: 12px;
    --prod-card-w: 100vw;
    --thumbs-slide-mr: 6px;
  }
  .products .card-column {
    margin-bottom: 0;
  }
  .products .card-title {
    font-size: 14px;
  }
  .products .card-img {
    margin-bottom: 4px;
  }
  .products-detail .pic .swiper-slide {
    border-color: transparent;
  }
  .products-detail .products-content {
    margin-top: 0;
    width: 100vw;
  }
  .products-detail .btn-zoom {
    bottom: 100%;
    width: 100vw;
    height: 100vw;
    border-radius: 0;
    opacity: 0;
  }
  .products-detail .card-swiper .swiper-slide {
    padding: 16px 16px 8px 16px;
  }
  .products-detail .info .card-name {
    margin-top: 18px;
    font-size: 16px;
  }
  .products-detail .info .card-desc {
    font-size: 14px;
  }
  .products-detail .info__body {
    margin: 0 auto;
    width: var(--card-container-w);
  }
  .products-detail .info__body .btn {
    width: 100%;
  }
  .products-detail .info__body .info__body_content {
    margin: 12px 0;
  }
  .products-detail .btn-group {
    margin: 0 auto;
    width: var(--card-container-w);
  }
  .products-detail .btn-group .btn {
    width: 100%;
  }
  .thumbs-swiper {
    padding: 0 6px;
    border-radius: 0;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=products.css.map */
