@charset "UTF-8";
.box-detail {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
@media (max-width: 767px) {
  .box-detail {
    padding: 1rem;
    border-radius: 12px;
  }
}
.box-detail h1,
.box-detail h1.title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 1.05rem + 1.2vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.375;
}
.box-detail .divider-color,
.box-detail .divider-big,
.box-detail hr.divider-color,
.box-detail hr.divider-big {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 1.25rem 0;
  opacity: 1;
}

.comments-ratings {
  text-align: start;
}
.comments-ratings .ratings {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--color-accent);
}
.comments-ratings .ratings .fa-star,
.comments-ratings .ratings svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}
.comments-ratings .rating-avg {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
  direction: ltr;
}

.box-detail .box-content {
  margin-top: 1rem;
}
.box-detail .picture {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  aspect-ratio: 4/3;
  min-height: 0;
}
.box-detail .picture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 100%);
  background-size: 200% 100%;
  animation: detail-shimmer 1.4s ease-in-out infinite;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.box-detail .picture.is-loaded::before {
  opacity: 0;
}
.box-detail .picture > img,
.box-detail .picture img.picture-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.box-detail .picture:hover > img {
  transform: scale(1.04);
}
@media (min-width: 1024px) {
  .box-detail .box-content .picture {
    float: inline-start;
    width: 320px;
    margin-inline-end: 1.5rem;
    margin-bottom: 1rem;
    aspect-ratio: 4/3;
  }
}

.picture .hover-effect {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) ease;
}
.picture .link-cont {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) ease;
}
.picture:hover .hover-effect {
  opacity: 1;
  backdrop-filter: blur(1px);
}
.picture:hover .link-cont {
  opacity: 1;
  pointer-events: auto;
}
.picture .link-cont .woocommerce-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  transform: scale(0.85);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1) ease, background 150ms cubic-bezier(0.4, 0, 0.2, 1) ease, box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1) ease;
}
.picture:hover .link-cont .woocommerce-main-image {
  transform: scale(1);
}
.picture .link-cont .woocommerce-main-image:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(var(--color-primary-rgb), 0.14), 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
}
.picture .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}
.picture .no-image svg,
.picture .no-image i {
  width: 96px;
  height: 96px;
  color: var(--color-primary);
  opacity: 0.35;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0;
}
@media (max-width: 767px) {
  .thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
  }
  .thumbnails > .product-images {
    flex: 0 0 84px;
    scroll-snap-align: start;
  }
}

.product-images {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--color-border-light);
  background: var(--color-bg);
  padding: 0;
  margin: 0;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-images::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 100%);
  background-size: 200% 100%;
  animation: detail-shimmer 1.4s ease-in-out infinite;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-images.is-loaded::before {
  opacity: 0;
}
.product-images > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-images:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
}
.product-images:hover > img {
  transform: scale(1.05);
}
.product-images:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.25);
}
.product-images.is-active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}

.description {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-text);
}
[data-theme=dark] .description :where(:not(a):not(mark)) {
  color: inherit !important;
  background-color: transparent !important;
}
[data-theme=dark] .description a {
  color: var(--color-primary) !important;
}
[data-theme=dark] .description a:hover {
  color: var(--color-primary-hover) !important;
}
.description img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.description a,
.description p a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.description a:hover,
.description p a:hover {
  color: var(--color-primary-hover);
}
.description h2, .description h3, .description h4 {
  color: var(--color-text);
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  line-height: 1.375;
}
.description h2 {
  font-size: 1.25rem;
}
.description h3 {
  font-size: 1.125rem;
}
.description h4 {
  font-size: 1rem;
}
.description ul, .description ol {
  padding-inline-start: 1.5rem;
}
.description ul li, .description ol li {
  margin-bottom: 0.5rem;
}

.pdf-test-sample {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  color: var(--color-text);
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pdf-test-sample:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-border);
  text-decoration: none;
}
.pdf-test-sample .fa-file-pdf {
  width: 20px;
  height: 22px;
  font-size: 1.25rem;
  color: var(--color-danger);
  flex-shrink: 0;
}
.pdf-test-sample span {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.info-box {
  font-size: 1rem;
  color: var(--color-text);
  text-align: start;
}
.info-box label {
  font-weight: 700;
  color: var(--color-text);
}

.info-boxes .check-list li {
  position: relative;
  padding-inline-start: 1.25rem;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}
.info-boxes .check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.price {
  margin: 0.75rem 0;
}
.price .amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.price .amount del {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: line-through;
  position: static;
  top: auto;
}
.price .amount sup {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  vertical-align: super;
}
.price.payable {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-light);
}

.discount-percent {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-inline-start: 0.5rem;
}

.add-shopping-cart.cws-button,
a.add-shopping-cart.cws-button {
  width: 100%;
  margin-top: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.add-shopping-cart.cws-button:hover,
a.add-shopping-cart.cws-button:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
}

.box-share .cws-button.alt {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border);
}
.box-share .cws-button.alt:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.box-detail .test-start.cws-button {
  width: 100%;
}

.box-start-test {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0.75rem 0;
}
.box-start-test a {
  width: 100%;
  font-size: 0.875rem;
}

.product-companion-items {
  list-style: none;
  padding: 1rem;
  margin: 0 0 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  background: var(--color-bg-secondary);
}
.product-companion-items > li {
  padding: 0.5rem 0;
}
.product-companion-items .devider {
  height: 1px;
  background: var(--color-border-light);
  margin: 0.5rem 0;
}
.product-companion-items .product-item-title {
  font-weight: 500;
}
.product-companion-items .price {
  margin: 0;
}
.product-companion-items .price .amount {
  font-size: 1rem;
}

.container-tabs > ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg);
}
.container-tabs > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
  border-bottom: 1px solid var(--color-border-light);
}
.container-tabs > ul > li:last-child {
  border-bottom: 0;
}
.container-tabs > ul > li:nth-child(even) {
  background: var(--color-bg-secondary);
}

.container-tabs .details-list {
  float: none;
  width: auto;
  padding: 0.75rem 1rem;
  border-bottom: 0;
  display: flex;
  align-items: center;
  min-height: 44px;
}
.container-tabs .details-list.col-md-3, .container-tabs .details-list.col-xs-6:first-child {
  flex: 0 0 38%;
  max-width: 38%;
  border-inline-end: 1px solid var(--color-border-light);
  background: linear-gradient(to inline-start, transparent 0%, rgba(var(--color-primary-rgb), 0.03) 100%);
}
.container-tabs .details-list.col-md-9, .container-tabs .details-list.col-xs-6:last-child {
  flex: 1 1 62%;
  max-width: 62%;
}
@media (max-width: 767px) {
  .container-tabs .details-list.col-md-3, .container-tabs .details-list.col-md-9, .container-tabs .details-list.col-xs-6 {
    flex: 1 1 100%;
    max-width: 100%;
    border-inline-end: 0;
  }
  .container-tabs .details-list.col-md-3, .container-tabs .details-list.col-xs-6:first-child {
    padding-bottom: 0.25rem;
    background: transparent;
  }
  .container-tabs .details-list.col-md-9, .container-tabs .details-list.col-xs-6:last-child {
    padding-top: 0;
  }
}
.container-tabs .details-list .key {
  font-weight: 600;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}
.container-tabs .details-list .block {
  color: var(--color-text);
  word-break: break-word;
  font-size: 1rem;
  line-height: 1.5;
}

.questionnaire-details ul,
.box-detail .tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box-detail .tabs,
.box-detail .tabs.clear-fix {
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
}
.box-detail .tabs:not(.profile-layout) .tabs-btn {
  height: auto;
  line-height: 1.375;
  padding: 0.75rem 1.25rem;
  margin-inline-end: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 6px 6px 0 0;
  float: none;
}
.box-detail .tabs:not(.profile-layout) .tabs-btn:hover {
  color: var(--color-primary);
  background: transparent;
}
.box-detail .tabs:not(.profile-layout) .tabs-btn.active {
  color: var(--color-primary);
  border-color: transparent;
  border-bottom-color: var(--color-primary);
  background: var(--color-bg);
}
.box-detail .tabs:not(.profile-layout) .tabs-btn.active::after {
  display: none;
}
.box-detail .tabs .tabs-keeper {
  padding: 1.25rem 0;
  min-height: 0;
  border: 0;
  background: transparent;
}

.description-product {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-text);
  max-width: 75ch;
}
.description-product > * + * {
  margin-top: 0.75rem;
}
.description-product p {
  margin: 0;
}
.description-product h2, .description-product h3, .description-product h4 {
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.375;
}
.description-product h2 {
  font-size: 1.25rem;
}
.description-product h3 {
  font-size: 1.125rem;
}
.description-product h4 {
  font-size: 1rem;
}
.description-product ul, .description-product ol {
  padding-inline-start: 1.5rem;
}
.description-product ul li, .description-product ol li {
  margin-bottom: 0.5rem;
}
.description-product a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.description-product a:hover {
  color: var(--color-primary-hover);
}
.description-product img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.container-comment {
  min-height: 120px;
}
.container-comment:not(.active) {
  display: none;
}
.container-comment .comment-list-product:empty::before {
  content: "";
  display: block;
  height: 80px;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 100%);
  background-size: 200% 100%;
  border-radius: 12px;
  animation: detail-shimmer 1.4s ease-in-out infinite;
}

@keyframes detail-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.box-share {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.box-share > strong {
  margin-inline-end: 0.75rem;
  color: var(--color-text);
}
.box-share hr.divider-color {
  width: 100%;
  margin: 0.75rem 0;
}

.detail-social.cws-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-end: 0.5rem;
}

.box-video-play {
  margin-bottom: 1rem;
}
.box-video-play .load-img {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--color-text);
}
.box-video-play .load-img:hover {
  color: var(--color-primary);
}
.box-video-play .load-img span {
  margin-inline-start: 0.25rem;
}
.box-video-play .load-img svg {
  margin-inline-end: 0.25rem;
}

.video-play {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}
.video-play .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.preview-modal .modal-dialog {
  width: min(96vw, 2200px);
  height: 94vh;
  margin: 3vh auto;
  display: flex;
}
.preview-modal .modal-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}
.preview-modal .modal-header {
  flex: 0 0 auto;
}
.preview-modal .modal-body {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--color-bg);
}
.preview-modal .modal-body:empty::before {
  content: "";
  display: block;
  width: 90%;
  height: 80%;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 100%);
  background-size: 200% 100%;
  animation: detail-shimmer 1.4s ease-in-out infinite;
}
.preview-modal .modal-body img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.preview-modal .preview-modal__nav {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border-light);
  border-radius: 9999px;
  background: var(--color-bg-elevated);
  opacity: 0.9;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.preview-modal .preview-modal__nav.is-visible {
  display: flex;
}
.preview-modal .preview-modal__nav:hover {
  background: var(--color-primary);
  color: #fff;
  opacity: 1;
}
.preview-modal .preview-modal__nav--prev {
  inset-inline-start: 1rem;
}
.preview-modal .preview-modal__nav--next {
  inset-inline-end: 1rem;
}
[dir=rtl] .preview-modal .preview-modal__nav svg {
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .preview-modal .preview-modal__nav {
    width: 40px;
    height: 40px;
  }
}
.preview-modal .skeleton.img-container {
  width: 90%;
  height: 80%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-modal .skeleton.img-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .preview-modal .modal-dialog {
    width: 100vw;
    height: 100vh;
    margin: 0;
  }
  .preview-modal .modal-content {
    border-radius: 0;
    height: 100%;
  }
}

.sticky-button {
  position: fixed;
  top: 0;
  inset-inline: 0;
  width: 100%;
  display: none;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  padding: 0.5rem 0.75rem;
}
.sticky-button .test-start {
  margin: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}
.sticky-button.hidden {
  display: none !important;
}
@media (max-width: 767px) {
  .sticky-button {
    display: block;
  }
}

.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
}
.table-responsive tr td,
.table-responsive tr th {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border-light);
}
.table-responsive th {
  background: var(--color-bg-secondary);
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 1023px) {
  .box-detail .comments-ratings {
    padding-bottom: 0.75rem;
  }
  .info-box {
    font-size: 1rem;
  }
  .info-box label {
    font-size: 1.125rem;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .box-detail .description h2 {
    font-size: 1.125rem;
  }
  .box-detail .description h3 {
    font-size: 1rem;
  }
  .box-detail .description ul li {
    font-size: 0.875rem;
  }
  .box-detail .box-content .picture,
  .box-detail .picture {
    width: 100%;
    margin-inline: 0;
    float: none;
  }
  .box-detail .tabs .tabs-keeper {
    font-size: 0.875rem;
  }
  .star-m-r {
    display: none;
  }
  .questionnaire-details ul.container-tabs li {
    float: none;
    width: 100%;
    margin-bottom: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    border-radius: 12px;
    padding: 0.75rem;
    background: var(--color-bg-secondary);
  }
}
.product-landing {
  margin-top: 1rem;
  /* ─── Hero section ─────────────────────────────────────────────────── */
}
.product-landing__hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-border-light);
  background: radial-gradient(120% 80% at 100% 0%, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 60%), radial-gradient(80% 60% at 0% 100%, rgba(var(--color-accent-rgb, 245, 158, 11), 0.06) 0%, transparent 65%), var(--color-bg-elevated);
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
@media (max-width: 767px) {
  .product-landing__hero {
    padding: 1.25rem 1rem;
  }
}
.product-landing__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 767px) {
  .product-landing__hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.product-landing {
  /* ─── Gallery ───────────────────────────────────────────────────────── */
}
.product-landing__gallery {
  width: 100%;
}
.product-landing__gallery .picture {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
.product-landing__gallery .picture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 100%);
  background-size: 200% 100%;
  animation: detail-shimmer 1.4s ease-in-out infinite;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-landing__gallery .picture.is-loaded::before {
  opacity: 0;
}
.product-landing__gallery .picture > img,
.product-landing__gallery .picture img.picture-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-landing__gallery .picture:hover > img {
  transform: scale(1.04);
}
.product-landing__gallery .thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 0.5rem;
  padding: 0.25rem 0;
}
@media (max-width: 767px) {
  .product-landing__gallery .thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
  }
  .product-landing__gallery .thumbnails > .product-images {
    flex: 0 0 74px;
    scroll-snap-align: start;
  }
}
.product-landing__gallery .product-images {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--color-border-light);
  background: var(--color-bg);
  padding: 0;
  margin: 0;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-landing__gallery .product-images > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-landing__gallery .product-images:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
.product-landing__gallery .product-images.is-active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}
.product-landing {
  /* ─── CTA Card Info Column ─────────────────────────────────────────── */
}
.product-landing__cta-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.product-landing__group-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.product-landing__rating {
  display: flex;
  width: fit-content;
  margin-right: auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--color-accent, #f59e0b);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.product-landing__rating .star {
  fill: currentColor;
}
.product-landing__rating .rating-avg {
  font-weight: 700;
  color: var(--color-text);
  direction: ltr;
}
.product-landing__rating .review-count {
  color: var(--color-text-secondary);
  font-weight: 400;
}
.product-landing__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 0.75rem + 1.2vw, 1.65rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}
.product-landing__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.product-landing__price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.product-landing__price-current--free {
  color: #16a34a;
}
.product-landing__price-old {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
}
.product-landing__discount-pill {
  padding: 2px 0.5rem;
  border-radius: 6px;
  background: var(--color-danger);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.product-landing {
  /* ─── Addons (Companion items) ─────────────────────────────────────── */
}
.product-landing__addons {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--color-border-light);
}
.product-landing__addons-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.product-landing__addons-title svg {
  color: var(--color-primary);
}
.product-landing__addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-landing__addon-item {
  position: relative;
  border-radius: 12px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-light);
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.product-landing__addon-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
.product-landing__addon-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.product-landing__addon-item .product-landing__addon-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  padding-inline-start: calc(1rem + 26px);
  cursor: pointer;
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  position: relative;
}
.product-landing__addon-item .product-landing__addon-label::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-landing__addon-item input[type=checkbox]:checked + .product-landing__addon-label {
  background: rgba(var(--color-primary-rgb), 0.03);
}
.product-landing__addon-item input[type=checkbox]:checked + .product-landing__addon-label::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.product-landing__addon-item input[type=checkbox]:checked {
  border-color: var(--color-primary-light);
}
.product-landing {
  /* ─── Gifts ─────────────────────────────────────────────────────────── */
}
.product-landing__gifts {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--color-border-light);
}
.product-landing__gifts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-landing__gift-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  border-radius: 12px;
  background: rgba(var(--color-primary-rgb), 0.04);
  border: 1px dashed rgba(var(--color-primary-rgb), 0.15);
}
.product-landing__gift-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.product-landing {
  /* ─── CTA primary button ────────────────────────────────────────────── */
}
.product-landing__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.3);
  cursor: pointer;
}
.product-landing__cta-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
  transform: translateY(-1px);
  text-decoration: none;
}
.product-landing__cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.2);
}
.product-landing__cta-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.product-landing__cta-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}
.product-landing__cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.product-landing__cta-bullets li svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.product-landing {
  /* ─── Contact info inside hero ─────────────────────────────────────── */
}
.product-landing__contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--color-border-light);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.product-landing__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.product-landing__contact-item .label {
  color: var(--color-text-muted);
  font-weight: 500;
}
.product-landing__contact-item .value a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}
.product-landing__contact-item .value a:hover {
  color: var(--color-primary);
}
.product-landing__contact-item .value-icon {
  color: var(--color-text);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-landing__contact-item .value-icon:hover {
  color: var(--color-primary);
}
.product-landing__contact-item .value-icon svg {
  vertical-align: middle;
}
.product-landing {
  /* ─── Section wrapper ───────────────────────────────────────────────── */
}
.product-landing__section {
  padding: 1rem 0;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .product-landing__section {
    padding: 0.75rem 0;
    margin-top: 0.75rem;
  }
}
.product-landing__section-head {
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .product-landing__section-head {
    margin-bottom: 0.5rem;
  }
}
.product-landing__section-title {
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.625rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem;
  line-height: 1.375;
}
.product-landing__section-lead {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 60ch;
}
.product-landing {
  /* ─── About section body ────────────────────────────────────────────── */
}
.product-landing__about-body {
  position: relative;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.625;
}
@media (max-width: 767px) {
  .product-landing__about-body {
    padding: 1rem;
  }
}
.product-landing {
  /* Description table-of-contents styling lives in pages/_toc.scss —
     shared across article/product/questionnaire/news. */
  /* ─── Technical specifications table ─────────────────────────────────── */
}
.product-landing__specs-body {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.product-landing__specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-landing__spec-row {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.product-landing__spec-row:last-child {
  border-bottom: none;
}
@media (max-width: 479px) {
  .product-landing__spec-row {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
  }
}
.product-landing__spec-key {
  font-weight: 700;
  color: var(--color-text);
}
.product-landing__spec-val {
  color: var(--color-text-secondary);
}
.product-landing {
  /* FAQ accordion styling lives in pages/_faq.scss — shared across
     article/product/questionnaire/test so all four look identical. */
  /* ─── Reviews section body ─────────────────────────────────────────── */
}
.product-landing__reviews-body {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  padding: 1.25rem 1.5rem;
}
@media (max-width: 767px) {
  .product-landing__reviews-body {
    padding: 1rem;
  }
}
.box-detail {
  margin-bottom: 1.5rem;
}

.about-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-border-light);
  background: radial-gradient(120% 80% at 100% 0%, rgba(var(--color-primary-rgb), 0.1) 0%, transparent 60%), radial-gradient(80% 60% at 0% 100%, rgba(var(--color-accent-rgb, 245, 158, 11), 0.07) 0%, transparent 65%), var(--color-bg-elevated);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
@media (max-width: 767px) {
  .about-hero {
    padding: 1rem;
    gap: 0.75rem;
  }
}

.about-hero__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
}
.about-hero__icon svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 767px) {
  .about-hero__icon {
    width: 44px;
    height: 44px;
  }
  .about-hero__icon svg {
    width: 22px;
    height: 22px;
  }
}

.about-hero__lead {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.625;
  max-width: 60ch;
}