.note-product-section {
  --np-product-max: 1440px;
  --np-ink: #1a1a1a;
  --np-muted: #6a6a6a;
  --np-border: #dedede;
  --np-sale: #e74343;
  --np-accent: #0a93c1;
  width: 100%;
  padding: 60px 0 32px;
  color: var(--np-ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.note-product-section *,
.note-product-section *::before,
.note-product-section *::after {
  box-sizing: border-box;
}

.np-product-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: min(calc(100% - 64px), var(--np-product-max));
  margin: 0 auto;
  padding: 0;
}

.np-gallery {
  position: sticky;
  top: 84px;
  align-self: start;
  display: grid;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.np-main-media-wrap {
  position: relative;
  width: 100%;
}

.np-nav-prev, .np-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0;
}
.np-nav-prev:hover, .np-nav-next:hover {
  background: rgba(0, 0, 0, 0.25);
}
.np-nav-prev svg, .np-nav-next svg {
  width: 24px;
  height: 24px;
}
.np-nav-prev {
  left: 16px;
}
.np-nav-next {
  right: 16px;
}

@media (max-width: 768px) {
  .np-nav-prev { left: 2px; }
  .np-nav-next { right: 2px; }
  .np-nav-prev, .np-nav-next {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.22);
  }
  .np-nav-prev svg, .np-nav-next svg {
    width: 20px;
    height: 20px;
  }
}

.np-main-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f6f6f6;
}

.media-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.media-layer.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.media-layer img,
.media-layer video,
.media-layer model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  transition: opacity 160ms ease;
}

.media-layer img.is-changing {
  opacity: 0.35;
}

.np-media-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.np-media-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  min-width: 88px;
  box-sizing: border-box;
  border-radius: 100px;
  background: #f1f5f9;
  border: 1px solid transparent;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.np-media-tab i {
  width: 16px;
  height: 16px;
}

.np-media-tab:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.np-media-tab.is-active {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.np-media-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font: 600 12px/1 Inter, sans-serif;
  cursor: pointer;
}

.np-media-badge svg {
  width: 16px;
  height: 16px;
}

.np-thumbnails {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: flex-start;
  padding: 2px 0 5px; /* Added 2px top padding to prevent box-shadow clipping */
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.np-thumbnails::-webkit-scrollbar {
  display: none;
}

.np-thumbnail {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  padding: 2px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #f4f4f4;
  cursor: pointer;
  transition: all 0.2s ease;
}

.np-thumbnail.is-active {
  border-color: #1a1a1a;
  box-shadow: inset 0 0 0 1px #1a1a1a;
}

.np-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.np-thumbnail-video .np-play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
  font-size: 9px;
  transform: translate(-50%, -50%);
}

.np-product-info {
  width: 100%;
  min-width: 0;
}

.note-product-section .np-product-info h1 {
  margin: 0;
  color: var(--np-ink);
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -0.015em;
}

.np-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--np-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-decoration: none;
}

.np-stars {
  display: inline-flex;
  gap: 1px;
  color: #edae29;
}

.np-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.np-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.np-sale-price {
  color: var(--np-sale);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.np-compare-price {
  color: #696969;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: line-through;
}

.np-save-badge,
.np-sticky-price > span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 12px;
  border-radius: 9999px;
  color: #fff;
  background: #eb4d55;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.np-installments {
  margin: 22px 0 0;
  color: var(--np-ink);
  font-size: 16px;
  line-height: 25.6px;
  white-space: nowrap;
}

.np-installments strong {
  font-weight: 700;
}

.np-shop-pay {
  color: #5a31f4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.np-shop-pay span {
  display: inline-block;
  margin-left: 1px;
  padding: 1px 3px;
  border-radius: 2px;
  color: #fff;
  background: #5a31f4;
  font-size: 8px;
  line-height: 1;
}

.np-installments button {
  margin-left: 4px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--np-ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.np-promo-image {
  display: block;
  width: min(500px, 100%);
  height: auto;
  margin-top: 25px;
  border-radius: 9px;
}

.np-description {
  margin-top: 18px;
  color: #000;
}
.np-description strong {
  font-weight: 400;
}

.np-benefit-title {
  margin: 18px 0 20px;
  color: #000000;
  font-size: 22px;
  font-weight: 400;
  line-height: 28.6px;
}

.np-description ul {
  margin: 0;
  padding-left: 15px;
  list-style: disc outside;
}

.np-description li {
  display: list-item;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.np-description li strong {
  font-weight: 700;
}

.np-description:not(.is-expanded) li:nth-child(n + 7) {
  display: none;
}

.np-show-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0 0;
  border: 0;
  color: #000;
  background: transparent;
  font: 500 14px/22.4px Inter, sans-serif;
  cursor: pointer;
}

.np-show-more svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.np-description.is-expanded .np-show-more svg {
  transform: rotate(180deg);
}

.np-variant-group {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.np-variant-group legend {
  margin-bottom: 12px;
  color: var(--np-ink);
  font-size: 14px;
  line-height: 22.4px;
}

.np-variant-group legend span,
.np-quantity-wrap > label {
  color: #6d6d6d;
  font-weight: 400;
}

.np-variant-group legend strong {
  margin-left: 5px;
  font-weight: 500;
}

.np-color-options {
  display: flex;
  gap: 10px;
}

.np-color-options input,
.np-variant-group > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.np-color-swatch {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c9c9c9;
  cursor: pointer;
}

.np-color-swatch span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.np-color-black {
  background: #000;
}

.np-color-silver {
  background: #c0c0c0;
}

.np-color-orange {
  background: #f5a138;
}

.np-color-options input:checked + .np-color-swatch {
  box-shadow: 0 0 0 2px #1a1a1a;
}

.np-color-options input:focus-visible + .np-color-swatch,
.np-variant-group > input:focus-visible + .np-block-swatch {
  outline: 2px solid #2277ff;
  outline-offset: 3px;
}

.np-block-swatch {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  padding: 8px 17px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  color: var(--np-ink);
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.np-quantity-wrap {
  margin-top: 28px;
}

.np-quantity-wrap > label {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
}

.np-quantity {
  display: inline-grid;
  grid-template-columns: 42px 48px 42px;
  min-height: 43px;
  overflow: hidden;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
}

.np-quantity button,
.np-quantity input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--np-ink);
  background: #fff;
  text-align: center;
  font: 500 15px/1 Inter, sans-serif;
}

.np-quantity button {
  cursor: pointer;
}

.np-quantity button:disabled {
  color: #bdbdbd;
  cursor: not-allowed;
}

.np-quantity input {
  appearance: textfield;
}

.np-quantity input::-webkit-inner-spin-button {
  appearance: none;
}

.np-buy-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.np-add-to-cart,
.np-payment-options {
  min-height: 60px;
  padding: 16px 28px;
  border-radius: 999px;
  font: 700 16px/25.6px Inter, sans-serif;
  cursor: pointer;
}

.np-add-to-cart {
  border: 1.5px solid #232323;
  color: #232323;
  background: #F5F6F8;
}

.np-payment-options {
  border: 0;
  color: #fff;
  background: #232323;
}

.np-bulk-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #dceaf0;
  border-radius: 14px;
  background: #f2f8fb;
}

.np-bulk-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.np-bulk-card p + p {
  color: var(--np-accent);
}

.np-bulk-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.np-bundle-card {
  margin-top: 18px;
  border: 1px solid var(--np-border);
  border-radius: 12px;
  background: #fff;
}

.np-bundle-card summary {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  cursor: pointer;
  list-style: none;
}

.np-bundle-card summary::-webkit-details-marker {
  display: none;
}

.np-bundle-card summary img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
}

.np-bundle-card summary > span:not(.np-details-label) {
  display: grid;
  gap: 5px;
  font-size: 15px;
}

.np-bundle-card summary small {
  color: var(--np-muted);
  font-size: 12px;
  line-height: 1.4;
}

.np-details-label {
  color: var(--np-accent);
  font-size: 12px;
  white-space: nowrap;
}

.np-bundle-card > p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--np-muted);
  font-size: 13px;
  line-height: 1.55;
}

.np-trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.np-trust-list li {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--np-ink);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.np-trust-list svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.6;
}

.np-support-box {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 17px 18px;
  border-radius: 12px;
  background: #f7f7f7;
}

.np-support-box p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.np-support-box svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.np-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.np-payment-methods li {
  display: block;
  width: 38px;
  height: 24px;
}

.np-payment-methods img {
  display: block;
  width: 38px;
  height: 24px;
}

.np-review-anchor {
  position: relative;
  top: 120px;
}

.np-sticky-product-bar {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 80px;
  border-top: 1px solid #e4e4e4;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.06);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  transition: transform 180ms ease;
}

.np-sticky-product-bar.is-hidden {
  pointer-events: none;
  transform: translateY(105%);
}

.np-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 96px), 1080px);
  margin: 0 auto;
}

.np-sticky-summary {
  display: grid;
  gap: 3px;
}

.np-sticky-summary strong {
  color: #232323;
  font-size: 18px;
  line-height: 1.2;
}

.np-sticky-summary span {
  color: #8a8a8a;
  font-size: 13px;
}

.np-sticky-commerce,
.np-sticky-price,
.np-sticky-actions {
  display: flex;
  align-items: center;
}

.np-sticky-commerce {
  gap: 24px;
}

.np-sticky-price {
  gap: 9px;
}

.np-sticky-price > strong {
  color: var(--np-sale);
  font-size: 21px;
}

.np-sticky-price > s {
  color: #9a9a9a;
  font-size: 13px;
}

.np-sticky-actions {
  gap: 12px;
}

.np-sticky-actions button {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font: 600 14px/1 Inter, sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.np-sticky-add {
  border: 1.5px solid #232323;
  color: #232323;
  background: #fff;
}

.np-sticky-buy {
  border: 1.5px solid #232323;
  color: #fff;
  background: #232323;
}

.np-demo-toast {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 96px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: #232323;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  font: 500 13px/1.4 Inter, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.np-demo-toast.is-visible {
  opacity: 1;
  transform: none;
}

body:has(.np-sticky-product-bar) {
  padding-bottom: 80px !important;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .np-installments {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .note-product-section {
    padding: 24px 0 20px;
  }

  .np-product-layout {
    grid-template-columns: 1fr;
    gap: 20px 40px;
    width: 335px;
    max-width: calc(100% - 40px);
    padding: 0;
  }

  .np-gallery {
    position: static;
    gap: 20px;
    width: 100%;
  }

  .np-product-info {
    width: 100%;
  }

  .np-main-media {
    width: 100%;
  }

  .np-gallery-nav-overlay {
    margin-top: 0;
  }

  .np-media-tabs {
    margin-top: 0;
  }

  .np-thumbnails {
    gap: 12px;
    margin-top: 0;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-right: 20px; /* Allow space for scrolling to the end */
  }

  .np-thumbnail {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .np-media-badge {
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 11px;
    font-size: 10px;
  }

  .note-product-section .np-product-info h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 35.2px;
    letter-spacing: -0.015em;
  }

  .np-review {
    margin-top: 17px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .np-price-row {
    gap: 10px;
    margin-top: 21px;
  }

  .np-sale-price {
    font-size: 20px;
  }

  .np-compare-price {
    font-size: 13px;
  }

  .np-save-badge {
    min-height: 22px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .np-installments {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22.4px;
    white-space: normal;
  }

  .np-promo-image {
    margin-top: 20px;
    border-radius: 7px;
  }

  .np-benefit-title {
    font-size: 20px;
    line-height: 26px;
  }

  .np-description li {
    font-size: 14px;
  }

  .np-buy-actions {
    grid-template-columns: 1fr;
  }

  .np-add-to-cart,
  .np-payment-options {
    min-height: 54px;
  }

  .np-bundle-card summary {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .np-bundle-card summary img {
    width: 72px;
    height: 72px;
  }

  .np-details-label {
    grid-column: 2;
  }

  .np-trust-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .np-sticky-product-bar {
    height: auto;
    padding-bottom: env(safe-area-inset-bottom, 16px);
    transition: transform 0.3s ease;
  }

  .np-sticky-product-bar.mobile-hidden {
    transform: translateY(120%);
  }

  .np-sticky-inner {
    width: 100%;
    padding: 12px 16px;
  }

  .np-sticky-summary {
    display: none;
  }

  .np-sticky-commerce {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .np-sticky-price {
    flex: none;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .np-sticky-price > strong {
    font-size: 20px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .np-sticky-price > s {
    font-size: 13px;
    white-space: nowrap;
  }

  .np-sticky-price > span {
    min-height: 18px;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 11px;
    background: #e74343;
    color: #fff;
    white-space: nowrap;
  }

  .np-sticky-shipping {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
    margin-top: -4px;
    margin-bottom: 2px;
  }

  .np-sticky-actions {
    display: flex;
    gap: 12px;
  }

  .np-sticky-actions button {
    flex: 1;
    min-height: 48px;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 100px;
  }

  .np-demo-toast {
    right: 16px;
    bottom: 112px;
  }

  body:has(.np-sticky-product-bar) {
    padding-bottom: 98px !important;
  }
}

@media (max-width: 380px) {
  .np-sticky-actions button {
    padding: 0 11px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-main-media > img,
  .np-sticky-product-bar,
  .np-demo-toast,
  .np-show-more svg {
    transition: none;
  }
}

.np-gallery-nav-overlay {
  position: relative;
  width: 100%;
  margin-top: 16px;
  min-width: 0;
}

.np-gallery-dots {
  display: none;
}

@media (max-width: 768px) {
  .np-gallery-dots {
    display: none;
  }
}

.np-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  border: none;
  padding: 0;
  pointer-events: auto;
}

.np-gallery-dot.is-active {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.3);
}

.np-gallery-nav-overlay .np-thumbnails {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 2px 0 5px;
}


/* Benefits Accordion Module */
.np-benefits-accordion {
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background-color: #F5F6F8;
  margin: 12px 0 16px;
  overflow: hidden;
}

.np-benefit-item {
  border-bottom: 1px solid #e5e5e5;
}

.np-benefit-item:last-child {
  border-bottom: none;
}

.np-benefit-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.np-benefit-header:hover {
  background-color: #f3f3f5;
}

.np-benefit-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #111;
}

.np-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-benefit-toggle-icon {
  width: 16px;
  height: 16px;
  color: #666;
  transition: transform 0.3s ease;
}

.np-benefit-item.is-open .np-benefit-toggle-icon {
  transform: rotate(45deg); /* turns plus into a cross */
}

.np-benefit-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.np-benefit-content-inner {
  padding: 0 16px 16px 46px; /* align text with title, offset for icon (18px + 12px gap) + 16px padding */
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.np-accordion-title {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.np-benefit-icon svg {
  stroke: #111;
}

/* What's included redesign */
.np-whats-included {
  background: #F5F6F8 !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 20px !important;
  margin-bottom: 25px !important;
}
.np-whats-included summary {
  display: flex !important;
  justify-content: space-between !important;
  padding: 6px 20px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #111 !important;
}
.np-whats-included[open] summary i {
  transform: rotate(180deg);
}
.np-whats-included summary i {
  transition: transform 0.2s ease;
  color: #666;
}
.np-included-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 0px;
  padding: 10px 10px 24px;
}
.np-included-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 13px;
  color: #333;
  line-height: 1.3;
}
.np-included-item i {
  color: #111;
}

@media (max-width: 768px) {
  .np-included-grid {
    gap: 16px 0px;
  }
  .np-included-item {
    font-size: 11px;
    gap: 6px;
  }
}
/* Dynamic Promo Card Module */
.np-promo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 12px 0 24px;
  width: min(100%, 483px);
  max-width: 483px;
  height: 131.55px;
  background: linear-gradient(135deg, #cde7ff 0%, #eef7ff 100%);
  background-size: cover;
  background-position: center;
  color: #111;
  font-family: Inter, sans-serif;
  box-sizing: border-box;
}

.np-promo-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: clamp(6px, 1.8vw, 12px) clamp(10px, 2.8vw, 16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

.np-promo-badge {
  display: inline-block;
  background: #fff;
  color: #0076cc;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.np-promo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
}

.np-promo-content h3 {
  font-size: 13px !important;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  max-width: 100%;
}

.np-promo-content p {
  margin: 0;
  font-weight: 500;
}

.np-promo-content a {
  font-size: 12px;
  font-weight: 600;
  color: #0076cc;
  text-decoration: underline;
}

.np-promo-divider {
  border-top: none; /* Line removed as requested */
  width: 100%;
  margin: 2px 0;
}

.np-promo-footer p {
  font-size: 11px;
  color: #444;
  margin: 0;
  font-weight: 500;
}
/* Bundle Selector (Style A) */
.np-bundle-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.np-bundle-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.np-bundle-line {
  flex: 1;
  height: 1px;
  background: #d1d5db;
}
.np-bundle-title {
  font-weight: 700;
  font-size: 14px;
  color: #111;
}
.np-bundle-card {
  position: relative;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  background: #F5F6F8;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.np-bundle-card:hover {
  border-color: #9ca3af;
}
.np-bundle-card.is-active {
  border: 2px solid #111;
  background: #ffffff;
}
.np-bundle-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.np-bundle-radio {
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-bundle-radio input {
  display: none;
}
.np-radio-custom {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  transition: all 0.2s ease;
  position: relative;
}
.np-bundle-card.is-active .np-radio-custom {
  border-color: #111;
  background: #111;
}
.np-bundle-card.is-active .np-radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.np-bundle-info {
  flex: 1;
}
.np-bundle-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111;
}
.np-bundle-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.np-bundle-price {
  text-align: right;
}
.np-bundle-price strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #111;
}
.np-bundle-price s {
  font-size: 13px;
  color: #6b7280;
}
.np-bundle-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tag-popular {
  background: #111;
}
.tag-deal {
  background: #111;
  color: #fff;
}

/* Expanding Color Options */
.np-bundle-options {
  display: none;
  margin-top: 12px;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  padding-left: 36px;
}
.np-bundle-card.is-active .np-bundle-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.np-bundle-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.np-bundle-option label {
  font-size: 13px;
  color: #4b5563;
  width: 62px;
  flex-shrink: 0;
}
.np-bundle-options .np-color-swatch {
  width: 26px;
  height: 26px;
}
.np-bundle-options .np-color-options {
  gap: 6px;
}
.np-color-select {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
}
.np-color-select:focus {
  outline: none;
  border-color: #2277ff;
}

/* Description Read More Toggle */
.np-desc-hidden {
  display: none;
  font-size: 14px;
  line-height: 1;
}
.np-discount-sub {
  color: #334155;
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 700;
}

/* Discount Modal */
.np-discount-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.np-discount-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.np-discount-modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.np-discount-modal-overlay.is-visible .np-discount-modal-content {
  transform: translateY(0) scale(1);
}
.np-discount-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.np-discount-close:hover {
  background: #fff;
  transform: scale(1.1);
}
.np-discount-image {
  width: 100%;
  height: 180px;
  background: #f5f6f8;
}
.np-discount-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.np-discount-body {
  padding: 32px 24px;
  text-align: center;
}
.np-discount-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}
.np-discount-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.5;
}
.np-discount-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.np-discount-form input {
  padding: 14px 20px;
  border: 1px solid #d1d5db;
  border-radius: 100px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
}
.np-discount-form input:focus {
  border-color: #191c1d;
  box-shadow: 0 0 0 3px rgba(25,28,29,0.1);
}
.np-discount-form button {
  padding: 14px;
  background: #191c1d;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.np-discount-form button:hover {
  background: #000;
}
.np-discount-form button:active {
  transform: scale(0.98);
}
.np-discount-terms {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 16px;
}

/* ========================================================= */
/* ComuCare Warranty Add-on Styles */
/* ========================================================= */
.np-warranty-addon {
  margin: 24px 0;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 24px;
  background-color: #fff;
}
.np-warranty-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
}
.np-warranty-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.np-warranty-card {
  display: block;
  cursor: pointer;
}
.np-warranty-card-inner {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #F5F6F8;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}
.np-warranty-card:hover .np-warranty-card-inner {
  border-color: #cbd5e1;
}
.np-warranty-radio {
  margin-right: 16px;
  position: relative;
  display: flex;
  align-items: center;
}
.np-warranty-checkbox {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.np-warranty-radio .np-radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 4px; /* square for checkbox */
  display: inline-block;
  transition: all 0.2s ease;
  position: relative;
}
.np-warranty-checkbox:checked + .np-radio-custom {
  border-color: #22c55e;
  background-color: #22c55e;
}
.np-warranty-checkbox:checked + .np-radio-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.np-warranty-info {
  flex: 1;
}
.np-warranty-icon-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.np-shield-icon {
  width: 20px;
  height: 20px;
  color: #22c55e;
  stroke-width: 2.5;
}
.np-shield-icon-lg {
  width: 32px;
  height: 32px;
  color: #22c55e;
  stroke-width: 2;
  margin-bottom: 8px;
}
.np-warranty-icon-title h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.np-warranty-tag {
  background-color: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  line-height: 1.2;
}
.np-warranty-price {
  font-weight: 600;
  color: #0f172a;
  font-size: 15px;
}
/* Active Card Styling */
.np-warranty-checkbox:checked ~ .np-warranty-card-inner,
.np-warranty-card:has(.np-warranty-checkbox:checked) .np-warranty-card-inner {
  border-color: #111;
  background-color: #F5F6F8;
}

.np-warranty-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.5;
}
.np-warranty-details-link {
  background: none;
  border: none;
  color: #22c55e;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.np-warranty-details-link:hover {
  opacity: 0.7;
}
.np-warranty-details-link i {
  width: 10px;
  height: 10px;
}

/* ========================================================= */
/* ComuCare Modal Styles */
/* ========================================================= */
.np-care-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}
.np-care-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.np-care-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 760px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.np-care-modal-overlay.is-open .np-care-modal-content {
  transform: translateY(0);
}
.np-care-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}
.np-care-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.np-care-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid #e2e8f0;
}
.np-care-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}
.np-care-body {
  padding: 32px;
  overflow-y: auto;
}
.np-care-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.np-care-plan-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.np-care-plan-card.recommended {
  border: 2px solid #22c55e;
  background: #fff;
}
.np-care-tag-top {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}
.np-care-plan-header {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.np-care-plan-header h3 {
  font-size: 18px;
  margin: 0 0 4px 0;
  color: #0f172a;
}
.np-care-plan-header p {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.np-care-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.np-care-features li {
  margin-bottom: 16px;
}
.np-care-features li:last-child {
  margin-bottom: 0;
}
.np-care-features strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 4px;
}
.np-care-features p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .np-care-cards {
    grid-template-columns: 1fr;
  }
}
/* ========================================================= */
/* Purchase Actions Styles (Add to Cart / Buy with Shop) */
/* ========================================================= */
.np-purchase-actions {
  margin: 24px 0 32px 0;
}

/* ========================================================= */
/* Interactive Features Tabs Module */
/* ========================================================= */
.features-tabs-module {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.features-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0 auto 32px auto;
  padding: 0;
  background-color: transparent;
  width: 100%;
  max-width: 100%;
}

.feature-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 0;
  height: 48px;
  white-space: normal;
  line-height: 1.2;
  background-color: var(--color-bg-alt) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 9999px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--color-text-muted) !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none !important;
}

.feature-tab:hover {
  border-color: rgba(34, 119, 255, 0.35) !important;
  color: var(--color-primary) !important;
  background-color: var(--color-bg-alt) !important;
}

.feature-tab.is-active {
  background-color: rgba(34, 119, 255, 0.06) !important;
  border-color: rgba(34, 119, 255, 0.65) !important;
  color: var(--color-primary) !important;
  box-shadow: none !important;
}

.features-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
}

.feature-video-wrapper {
  display: none;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.feature-video-wrapper.is-active {
  display: block;
  animation: slideFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-play-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.feature-play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 5px;
  color: #ffffff;
}
.feature-video-wrapper:hover .feature-play-btn {
  background: #000000;
  transform: scale(1.05);
}
.feature-play-btn.is-playing svg {
  margin-left: 0;
}
.np-pa-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.np-pa-current-price {
  font-size: 32px;
  font-weight: 700;
  color: #ef4444; /* Eye-catching red */
  line-height: 1;
  white-space: nowrap;
}
.np-pa-original-price {
  font-size: 20px;
  color: #737373;
  text-decoration: line-through;
  white-space: nowrap;
}
.np-pa-discount-badge {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #ef4444;
  padding: 6px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}
.np-quantity-selector {
  margin-bottom: 16px;
}
.np-quantity-selector label {
  font-size: 14px;
  color: #3f3f46;
  margin: 0;
}
.np-qty-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.np-qty-note {
  font-size: 13px;
  color: #696969;
}
.np-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  overflow: hidden;
  height: 48px;
  background-color: #fafafa;
}
.np-qty-btn {
  background: none;
  border: none;
  width: 48px;
  height: 100%;
  font-size: 20px;
  color: #71717a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.np-qty-btn:hover {
  background-color: #f4f4f5;
  color: #18181b;
}
.np-qty-input {
  width: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  color: #18181b;
  -moz-appearance: textfield;
}
.np-qty-input::-webkit-outer-spin-button,
.np-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.np-button-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.np-btn-add-to-cart {
  flex: 1;
  background-color: #F5F6F8;
  color: #18181b;
  border: 1px solid #18181b;
  border-radius: 24px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.np-btn-add-to-cart:hover {
  background-color: #e4e4e7;
}
.np-shop-buy-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.np-btn-shop-pay {
  width: 100%;
  background-color: #232323;
  color: #fff;
  border: none;
  border-radius: 24px;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.np-btn-shop-pay:hover {
  background-color: #000;
}
.np-more-payment-link {
  font-size: 13px;
  color: #18181b;
  text-decoration: underline;
  margin-top: 8px;
}
.np-more-payment-link:hover {
  color: #5a31f4;
}

@media (max-width: 480px) {
  .np-button-group {
    flex-direction: column;
  }
  .np-btn-add-to-cart, .np-shop-buy-container {
    width: 100%;
    flex: none;
  }
  .np-btn-add-to-cart {
    height: 48px;
  }
}
/* ========================================================= */
/* Prototype Accordion Styles */
/* ========================================================= */
.np-benefits-accordion {
  background: #F5F6F8;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}
.np-ba-item {
  border-bottom: 1px solid #e2e8f0;
}
.np-ba-item:last-child {
  border-bottom: none;
}
.np-ba-summary {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  transition: background-color 0.2s;
}
.np-ba-summary:hover {
  background-color: #f1f5f9;
}
.np-ba-summary i, .np-ba-summary svg, .np-ba-summary img.np-ba-icon {
  width: 26px;
  height: 26px;
  margin-right: 14px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}
.np-ba-summary span {
  flex: 1;
}
.np-ba-summary .plus-icon {
  margin-right: 0;
  margin-left: 12px;
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

/* For Scheme 3: Card Integration */
.np-card-fusion {
  background: #F5F6F8;
  border-radius: 16px;
  border: none;
  padding: 16px;
}
.np-card-fusion .np-benefits-accordion {
  border: none;
  background: transparent;
  margin-bottom: 16px;
}
.np-card-fusion .np-ba-summary {
  padding: 12px 0;
}
.np-fusion-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0 0 16px 0;
}
.np-card-fusion .np-trust-list {
  margin: 0;
  padding-top: 8px;
}
/* Details and Icon Transitions for Benefits Accordion */
.np-ba-details {
  display: none;
  padding: 0 16px 16px 46px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.np-ba-item.is-open .np-ba-details {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.np-ba-item.is-open .np-ba-summary .plus-icon {
  transform: rotate(45deg); /* Simple way to make + look like an x if it's a cross, or we can just swap icons via JS */
  color: #0f172a;
}

@media (max-width: 480px) {
  .np-pa-price-row {
    gap: 8px;
  }
  .np-pa-current-price {
    font-size: 24px;
  }
  .np-pa-original-price {
    font-size: 14px;
  }
  .np-pa-discount-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
}
/* Description Read More Toggle */
.np-desc-hidden {
  display: none;
}
.np-description.is-expanded .np-desc-hidden {
  display: list-item;
}
.np-desc-toggle-btn {
  background: none;
  border: none;
  color: #111;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin-top: 12px;
  margin-bottom: 24px;
}
.np-desc-toggle-btn i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.np-description.is-expanded .np-desc-toggle-btn i {
  transform: rotate(180deg);
}

/* Floating Discount Widget */
.np-discount-widget {
  --widget-scale: 0.8;
  position: fixed;
  bottom: 104px;
  left: 24px;
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, #99d6f6 0%, #ccece7 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.5) inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  border: none;
  transform-origin: bottom left;
  transform: scale(var(--widget-scale));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.np-discount-widget:hover {
  transform: scale(calc(var(--widget-scale) * 1.1)) rotate(-5deg);
}
.np-discount-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.np-discount-text {
  color: #0f172a;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.np-discount-num {
  font-size: 22.5px;
  line-height: 1;
}
.np-discount-off {
  font-size: 12px;
  line-height: 1;
}
.np-discount-sub {
  color: #334155;
  font-size: 8.5px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .np-discount-widget {
    --widget-scale: 1;
    width: 48px;
    height: 48px;
    bottom: 114px;
    left: 16px;
  }
  .np-discount-num {
    font-size: 13px;
  }
  .np-discount-off {
    font-size: 8px;
  }
  .np-discount-sub {
    font-size: 6px;
    margin-top: 0;
  }
}

.video-showcase-section {
  padding: 86.25px 20px 80px;
  background-color: #FFFFFF;
}
.video-showcase-section .section-heading {
  text-align: center;
  margin-bottom: 24px;
}
.video-showcase-section .section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 11px 0;
}
.video-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
  background-color: #000;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transform: translateZ(0);
}
.video-wrapper .video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  z-index: 0;
}
.video-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
  transition: background 0.3s ease;
}
.video-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
.video-wrapper:hover .video-cover {
  transform: scale(1.02);
}
.video-play-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.video-play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 2px;
  color: #ffffff;
}
.video-play-btn.is-playing svg {
  margin-left: 0;
}
.video-wrapper:hover .video-play-btn {
  background: #000000;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .video-showcase-section {
    padding: 45.28px 0 60px;
  }
  .video-showcase-section .section-heading h2 {
    font-size: 24px;
  }
  .video-play-btn {
    top: 16px;
    right: 16px;
    width: 53px;
    height: 53px;
  }
  .video-play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
  }
  /* Home "Just record and ask" module: shrink and tuck the play button into the corner */
  .hp-video-carousel .video-play-btn {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .hp-video-carousel .video-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 0;
  }
  /* Comu Action Pro pages: shrink play buttons to match the home page treatment */
  .cap-hero-video .video-play-btn,
  .cap-features-tabs .video-play-btn {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .cap-hero-video .video-play-btn svg,
  .cap-features-tabs .video-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 0;
  }

}
/* Media Quote Box inside Marquee Section */
.media-quote-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 12px;
  gap: 16px;
  text-align: center;
}
.media-quote-box .quote-mark {
  font-family: Georgia, serif;
  font-size: 36px;
  color: #9CA3AF;
  line-height: 1;
  font-weight: 900;
}
.media-quote-box .quote-text {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
  margin: 0;
  padding-top: 4px;
  transition: opacity 0.2s ease-in-out;
}

/* Ensure Red Dot and iF awards display correctly in marquee */
.media-logo-set img[src*="IFA."] {
  height: 62px !important;
}
.media-logo-set img[src*="PD2026_RD_t."] {
  height: 110px !important;
}
.media-logo-set img {
  cursor: pointer;
}

@media (max-width: 768px) {
  .media-logo-marquee {
    width: 100%;
    margin-left: 0;
  }

  .media-quote-box .quote-text {
    font-size: 16px;
  }
  .media-logo-set img[src*="IFA."] {
    height: 47px !important;
  }
  .media-logo-set img[src*="PD2026_RD_t."] {
    height: 98px !important;
  }
  
  .features-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    text-align: center !important;
    margin-bottom: 16px !important;
    background-color: transparent !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .app-features-tabs .features-tabs {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .feature-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 8px 4px !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    background-color: var(--color-bg-alt) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text-muted) !important;
    border-radius: var(--rounded-pill) !important;
  }
  .feature-tab.is-active {
    background-color: rgba(34, 119, 255, 0.06) !important;
    border-color: rgba(34, 119, 255, 0.65) !important;
    color: var(--color-primary) !important;
  }
}

/* Info Modal */
.np-info-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.np-info-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.np-info-modal-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.np-info-modal-overlay.is-active .np-info-modal-content {
  transform: translateY(0);
}
.np-info-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-info-modal-title {
  font-size: 20px; font-weight: 600; color: #111; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.np-info-modal-title img {
  width: 24px;
  height: 24px;
}
.np-info-modal-body {
  font-size: 15px; color: #444; line-height: 1.5;
}

.np-info-modal-body a {
  color: #0066cc;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}

.np-info-modal-body a:hover {
  opacity: 0.7;
}

/* Make all feature tabs uniform length on PC */
@media (min-width: 901px) {
  .features-tabs .feature-tab {
    width: 170px;
    justify-content: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Strictly enforce font size and prevent text scaling on 4-part tabs */
.app-features-tabs .feature-tab {
  font-size: 14px !important;
  white-space: nowrap !important;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}
/* 仅 App 模块：收窄标签行，减少标签内留白 */
.app-features-tabs .features-tabs {
  max-width: 880px !important;
}
/* 仅 App 模块：桌面端放大标签字号 */
@media (min-width: 769px) {
  .app-features-tabs .feature-tab {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  #app .app-features-tabs .features-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    max-width: 360px !important;
    padding: 0 8px !important;
  }

  #app .app-features-tabs .feature-tab {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 44px !important;
    padding: 8px 6px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  #interactive-features .home-ask-carousel .features-tabs {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    padding: 0 20px 4px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    box-sizing: border-box !important;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #interactive-features .home-ask-carousel .features-tabs::-webkit-scrollbar {
    display: none;
  }

  #interactive-features .home-ask-carousel .feature-tab {
    flex: 0 0 150px !important;
    width: auto !important;
    min-width: 0 !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 6px 8px !important;
    font-size: 11px !important;
    white-space: normal !important;
    line-height: 1.16 !important;
    overflow-wrap: normal !important;
    scroll-snap-align: center;
  }
}
