@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Helvetica Neue";
  src: url("/assets/fonts/helvetica_neue/HelveticaNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

:root {
  --font-inter: "Inter", sans-serif;
  --font-helvetica: "Helvetica Neue", sans-serif;
  --thumb-size: 64px;
  --thumb-gap: 10px;
  --main-size: 380px;
  --red: #e53939;
  --red-dark: #d92b2b;
  --green: #1a9c5a;
  --ink: #17181c;
  --gray-600: #6b6f76;
  --gray-500: #8a8d94;
  --gray-300: #e4e5e9;
  --gray-100: #f3f3f5;
  --muted: #8a8d94;
  --pink-bg: #fdeceb;
}

.product-detail {
  font-family: var(--font-inter);
  background: linear-gradient(110.82deg, rgba(255, 242, 242, 0.66) 6.23%, rgba(255, 254, 254, 0.66) 23.08%, rgba(254, 250, 250, 0.66) 50.96%, rgba(255, 246, 246, 0.66) 69.95%);
  margin-top: 60px;
  padding-bottom: 50px !important;
}

.product-detail .breadcrumb .breadcrumb-item {
  font-family: var(--font-helvetica);
  font-weight: 500;
  font-size: 15px;
  color: #7a8b94;
  gap: 4px;
}

.product-detail .breadcrumb .breadcrumb-item a {
  color: rgb(122, 139, 148);
}

.product-detail .breadcrumb .active {
  color: #e3373e;
}

.product-detail .gallery {
  display: flex;
  gap: 1.25rem;
}

.product-detail .gallery__thumbs-wrap {
  position: relative;
  flex: 0 0 auto;
}

.product-detail .thumb-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 65px;
  height: 20px;
  border: none;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  color: var(--gray-600, #555);
}

.product-detail .thumb-scroll--top {
  top: -2px;
}

.product-detail .thumb-scroll--bottom {
  bottom: -2px;
}

.product-detail .thumb-scroll.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-detail .gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--thumb-gap);
  flex: 0 0 auto;
  max-height: 365px;
  overflow-y: auto;
  scrollbar-width: none;
}

.product-detail .thumb {
  width: var(--thumb-size);
  height: var(--thumb-size);
  border-radius: 0.5rem;
  border: 1.5px solid var(--gray-300);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #fff;
  flex: 0 0 auto;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.product-detail .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.product-detail .thumb:hover,
.product-detail .thumb:focus-visible {
  border-color: var(--red);
  /* box-shadow: 0 0 0 3px rgba(229, 57, 57, 0.12); */
  /* transform: translateY(-1px); */
  outline: none;
}

.product-detail .thumb.is-active {
  border-color: var(--red);
  /* box-shadow: 0 0 0 3px rgba(229, 57, 57, 0.16); */
}

.product-detail .thumb__more {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail .gallery__main_2 {
  flex: 1 1 auto;
  min-width: 0;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* height: var(--main-size); */
  border: 1px solid #e9eef2;
  /* box-shadow: 0px 4px 51.1px 0px rgba(0, 0, 0, 0.0117647059); */
  border-radius: 0.75rem;
  background: #fff;
  /* overflow: hidden; */
  cursor: pointer;
}

.product-detail .gallery__main_2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  border-radius: 10px;
  object-position: center;
  transition: opacity 0.18s ease;
}

.product-detail .gallery__main {
  display: flex;
  flex: 1 1 auto;
  /* min-width: 0; */
  width: 100%;
  /* max-height: var(--main-size); */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e9eef2;
  /* box-shadow: 0px 4px 51.1px 0px rgba(0, 0, 0, 0.0117647059); */
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
}

.product-detail .gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  transition: opacity 0.18s ease;
}

.product-detail .gallery__main img.is-swapping {
  opacity: 0;
}

.product-detail .btn-outline-cart {
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  font-weight: 600;
  background: #fff;
}

.product-detail .btn-outline-cart:hover {
  border-color: #c7c8cf;
  background: var(--gray-100);
  color: var(--ink);
}

.product-detail .btn-buy {
  background: var(--red);
  border-color: var(--red);
  border-radius: 10px;
  padding: 12px 13px;
  font-weight: 600;
}

.product-detail .btn-buy:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.product-detail {
  /* ---------------- Details (right column) ---------------- */
}

.product-detail .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-detail .product-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-detail .in-stock {
  width: 202px;
  height: 45px;
  border-radius: 8px;
  border-width: 1px;
  padding-top: 11px;
  padding-right: 14px;
  padding-bottom: 12px;
  padding-left: 12px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}

.product-detail .in-stock .pill-sold {
  font-weight: 500;
  font-size: 14px;
  color: #4b5563;
  padding-right: 6px;
  border-right: 1px solid #f3f4f6;
}

.product-detail .in-stock .pill-stock {
  font-weight: 500;
  font-size: 14px;
  color: #299a6b;
}

.product-detail .hr-thin {
  border: none;
  border-top: 1px solid var(--gray-300);
  margin: 1.25rem 0;
}

.product-detail .price-now {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
}

.product-detail .price-old {
  font-size: 1.1rem;
  color: #9a9ca3;
  text-decoration: line-through;
}

.product-detail .price-note {
  font-size: 0.82rem;
  color: var(--gray-600);
}

.product-detail .pill-off {
  border-radius: 7px;
  padding: 5px 10px;
  border: 1px solid #299a6b;
  background: rgba(165, 255, 201, 0.1803921569);
  color: #299a6b;
  font-size: 14px;
  font-weight: 700;
}

.product-detail .lang-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.product-detail .lang-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-300);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.product-detail .lang-pill.is-selected {
  border-color: var(--red);
  color: var(--red);
  background: #fff6f5;
}

.product-detail .lang-pill:hover:not(.is-selected) {
  border-color: #c7c8cf;
  background: var(--gray-100);
}

.product-detail .rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-detail .rating-badge--score {
  background: #fdeceb;
  color: var(--red);
}

.product-detail .rating-badge--count {
  background: var(--gray-100);
  color: var(--ink);
  font-weight: 500;
}

.product-detail .rating-text {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.product-detail .details {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.product-detail .details .review-section {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffecec;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 12px;
  color: #868686;
  font-weight: 500;
}

.product-detail .details .review-section .tabler-star-filled {
  color: #FF606C;
}

.product-detail .details .review-section .divider {
  color: #d0d0d0;
}

.product-detail {
  /* ---------- Responsive ---------- */
}

@media (max-width: 991.98px) {
  .product-detail :root {
    --main-size: 320px;
  }

  .product-detail .product-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  /* .product-detail .details-col {
    margin-top: 1.5rem;
  } */
}

/* @media (max-width: 575.98px) {
  .product-detail :root {
    --thumb-size: 52px;
    --thumb-gap: 8px;
    --main-size: 260px;
  }

  .product-detail .gallery {
    flex-direction: column;
    padding: 1rem;
  }

  .product-detail .gallery__thumbs-wrap {
    order: 2 !important;
  }

  .product-detail .gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
  }

  .product-detail .thumb {
    scroll-snap-align: start;
  }

  .product-detail .gallery__main {
    order: 1;
  }

  .product-detail .product-title {
    font-size: 1.15rem;
  }

  .product-detail .price-now {
    font-size: 1.6rem;
  }
} */

@media (max-width: 575.98px) {
  .product-detail :root {
    --thumb-size: 52px;
    --thumb-gap: 8px;
    --main-size: 260px;
  }

  .product-detail .gallery {
    flex-direction: column;
    padding: 1rem;
  }

  .product-detail .gallery__main-col {
    display: contents;
  }

  .product-detail .gallery__thumbs-wrap {
    order: 2 !important;
  }

  .product-detail .gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
  }

  .product-detail .thumb {
    scroll-snap-align: start;
  }

  .product-detail .gallery__main {
    order: 1;
  }

  .product-detail .gallery__main-col .action-btn-prod {
    order: 3 !important;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
  }

  .product-detail .price-now {
    font-size: 16px;
  }

  .product-detail .price-old {
    font-size: 14px;
  }

  .product-detail .pill-off {
    font-size: 10px;
  }

  .product-detail .product-title {
    font-size: 1.15rem;
  }
}

.tab-bar {
  background: #f9fafb;
}

.tab-bar .overview-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--gray-300);
  box-shadow: 0 1px 2px rgba(20, 20, 43, 0.03);
  overflow: hidden;
}

.tab-bar .overview-tabs {
  border-bottom: 1px solid var(--gray-300);
  padding: 0 1.75rem;
}

.tab-bar .overview-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px;
  margin-right: 2rem;
  border-radius: 0;
  position: relative;
}

.tab-bar .overview-tabs .nav-link:last-child {
  margin-right: 0;
}

.tab-bar .overview-card .tab-content h2 {
  font-size: 20px !important;
  font-weight: 700;
}

.tab-bar .overview-card .tab-content h3 {
  font-size: 18px !important;
  font-weight: 700;
}

.tab-bar .overview-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  transition: background 0.15s ease;
}

.tab-bar .overview-tabs .nav-link:hover:not(.active) {
  color: var(--ink);
}

.tab-bar .overview-tabs .nav-link.active {
  color: var(--red);
  background: transparent;
}

.tab-bar .overview-tabs .nav-link.active::after {
  background: var(--red);
}

.tab-bar .overview-body {
  padding: 1.75rem;
}

.tab-bar .overview-intro {
  color: var(--body-text);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tab-bar .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-bar .feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--body-text);
  padding: 0.6rem 0;
}

.tab-bar .feature-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.tab-bar .feature-list .bullet {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 0.3rem;
  border-radius: 2px;
  border: 1px solid #3c4852;
  position: relative;
  transform: rotate(45deg);
}

.tab-bar .feature-list .bullet::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 2px;
  background: #3c4852;
}

@media (max-width: 575.98px) {
  .tab-bar .overview-tabs {
    padding: 0 1.1rem;
  }

  .tab-bar .overview-tabs .nav-link {
    margin-right: 1.25rem;
    font-size: 0.95rem;
  }

  .tab-bar .overview-body {
    padding: 1.25rem;
  }
}

.about-section .faq-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.about-section .faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 0.85rem !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.about-section .faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.about-section .faq-accordion .accordion-header {
  margin: 0;
}

.about-section .faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.about-section .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.about-section .faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b5e66'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5-1.06-1.06L8 9.88 2.56 4.44 1.5 5.5z'/%3E%3C/svg%3E");
}

.about-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-300);
}

.about-section .faq-accordion .accordion-button::before {
  content: "?";
  order: -1;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--body-text);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .faq-accordion .accordion-button::after {
  flex: 0 0 auto;
  width: 30px;
  height: 26px;
  margin-left: auto;
  border-radius: 0.5rem;
  background-color: var(--gray-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b5e66'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5-1.06-1.06L8 9.88 2.56 4.44 1.5 5.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.about-section .faq-accordion .accordion-body {
  padding: 1rem 1.25rem 1.25rem 3.9rem;
  border-top: 1px solid var(--gray-300);
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .about-section .faq-accordion .accordion-button {
    padding: 0.9rem 1rem;
    gap: 0.65rem;
    font-size: 0.88rem;
  }

  .about-section .faq-accordion .accordion-body {
    padding-left: 2.9rem;
    padding-right: 1rem;
  }
}

.reviews-section {
  background: linear-gradient(110.82deg, rgba(255, 242, 242, 0.66) 6.23%, rgba(255, 254, 254, 0.66) 23.08%, rgba(254, 250, 250, 0.66) 50.96%, rgba(255, 246, 246, 0.66) 69.95%);
}

.reviews-section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.reviews-section .section-subtitle {
  color: var(--body-text);
  font-size: 0.92rem;
}

.reviews-section .btn-write-review {
  border: 1.5px solid var(--gray-300);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
}

.reviews-section .btn-write-review:hover {
  background: var(--gray-100);
  border-color: #c7c8cf;
  color: var(--ink);
}

.reviews-section .rating-card {
  background: var(--pink-bg);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.reviews-section .rating-score {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.reviews-section .rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.reviews-section .rating-stars svg {
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  color: #FF0000 !important;
}

.reviews-section .rating-based {
  color: var(--body-text);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.reviews-section .rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.reviews-section .rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--body-text);
}

.reviews-section .rating-bar-row .star-label {
  flex: 0 0 auto;
  width: 28px;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  white-space: nowrap;
}

.reviews-section .rating-bar-row .star-label .star-no {
  font-size: 14px;
  font-weight: 400;
}

.reviews-section .rating-bar-row .star-label svg {
  width: 6px;
  height: 6px;
  color: #000000;
}

.reviews-section .rating-bar-row .pct {
  flex: 0 0 auto;
  width: 32px;
  text-align: right;
}

.reviews-section .rating-bar-track {
  flex: 1 1 auto;
  height: 6px;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.reviews-section .rating-bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 1rem;
}

.reviews-section .review-card {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 1rem;
  padding: 1.5rem;
}

.reviews-section .review-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-section .review-name {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.reviews-section .review-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.reviews-section .review-time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  font-weight: 400;
}

.reviews-section .review-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0.85rem 0 0.4rem;
}

.reviews-section .review-text {
  color: var(--body-text);
  font-size: 0.88rem;
  line-height: 1.65;
  font-style: italic;
}

.reviews-section .btn-submit-review {
  background: var(--red);
  border-color: var(--red);
  font-weight: 600;
  color: #fff;
}

.reviews-section .btn-submit-review:hover {
  background: #d92b2b;
  border-color: #d92b2b;
  color: #fff;
}

.reviews-section .btn-cancel-review {
  border: 1.5px solid var(--gray-300);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.reviews-section .btn-cancel-review:hover {
  background: var(--gray-100);
  color: var(--ink);
}

.reviews-section .star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.reviews-section .star-rating-value {
  margin-left: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  min-width: 1.6em;
}

.reviews-section .tabler-star {
  font-size: 40px !important;
}

@media (max-width: 767.98px) {
  .reviews-section .header-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .reviews-section .btn-write-review {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .reviews-section .section-title {
    font-size: 1.25rem;
  }

  .reviews-section .rating-score {
    font-size: 2.5rem;
  }
}

.review-modal .modal-content {
  border: none;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.review-modal .modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.25rem 1.5rem;
}

.review-modal .modal-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.review-modal .modal-body {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.review-modal .form-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.review-modal .form-control {
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  background: #fafafa;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.review-modal .form-control:focus {
  box-shadow: none;
  border-color: #e0455f;
  background: #fff;
}

.review-modal .modal-footer {
  border-top: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.btn-submit-review {
  background: #e0455f;
  border: none;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  transition: background 0.15s ease;
}

.btn-submit-review:hover {
  background: #c93a52;
  color: #fff;
}

.star-slot {
  cursor: pointer;
}

.review-rating-value {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
}

.drift-zoom-pane {
  background: #ffffff;
  border: 1px solid #e9eef2;
  box-shadow: 0px 4px 51.1px 0px rgba(0, 0, 0, 0.0117647059);
  border-radius: 0.75rem;
}

.star-rating {
  display: inline-flex;
  gap: 4px;
  cursor: pointer;
}

.star-slot {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.star-slot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.star-empty {
  opacity: 0.4;
}

.star-filled {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.05s linear;
}

.terms-of-service {
  background: #f9fafb;
  margin-top: 60px;
}

.terms-of-service .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #7a8b94;
}

.terms-of-service .accordion-button::before {
  content: attr(data-index) !important;
}

.terms-of-service .breadcrumb .active {
  color: #e3373e;
}

/*# sourceMappingURL=product-detail.css.map */