/* ── Tone & Terra PDP — premium purchase layout ─────────────── */
.tt-pdp-breadcrumb {
  padding-top: 16px;
  padding-bottom: 8px;
}

.tt-pdp-breadcrumb .breadcrumbs {
  gap: 6px;
}

.tt-pdp-breadcrumb__current {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: min(100%, 28rem);
}

.tt-pdp {
  padding-top: 8px;
  /* padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); */
  padding-bottom: calc(0px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
  .tt-pdp {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

.tt-pdp-grid {
  --tt-pdp-gap: 1.5rem;
}

@media (min-width: 1200px) {
  .tt-pdp-gallery-col {
    padding-right: 12px;
  }

  .tt-pdp-info-col {
    padding-left: 12px;
  }
}

.tt-pdp-gallery .tf-product-media-wrap {
  margin-top: 0;
}

@media (max-width: 991px) {
  .tt-pdp-gallery.sticky-top {
    position: relative !important;
    top: auto !important;
  }
}

.tt-pdp-media-slider .tf-product-media-main {
  border-radius: 16px;
  border-color: #ececec;
  background: #ece8e2;
}

.tt-pdp-media-slider .tf-product-media-thumbs .item {
  border-radius: 10px;
  border-color: #e5e5e5;
}

/* Keep the main photo box 3:4 so the skeleton is visible before pixels paint. */
.tt-pdp-media-slider .tf-product-media-main .swiper-slide {
  aspect-ratio: 3 / 4;
}

.tt-pdp-media-slider .tf-product-media-main .item.tt-pdp-img-load {
  display: block;
  width: 100%;
  height: 100%;
}

.tt-pdp-media-slider .tf-product-media-main .item.tt-pdp-img-load img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Product image loading (gallery, thumbs, highlights, A+) ── */
.tt-pdp-img-load {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #ece8e2;
}

.tt-pdp-img-load::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    #e6e1d9 0%,
    #f7f4ef 42%,
    #e6e1d9 78%
  );
  background-size: 220% 100%;
  animation: tt-pdp-img-shimmer 1.15s ease-in-out infinite;
}

.tt-pdp-img-load.is-loaded {
  background-color: transparent;
}

.tt-pdp-img-load.is-loaded::after {
  opacity: 0;
  animation: none;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.tt-pdp-img-load img {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tt-pdp-img-load.is-loaded img {
  opacity: 1;
}

/* Reveal images even if the load script does not run. */
.tt-pdp-img-load:not(.is-loaded) img {
  animation: tt-pdp-img-failsafe 0s linear 4s forwards;
}

.tt-pdp-img-load.is-loaded img {
  animation: none;
}

.tt-pdp-media-slider .tf-product-media-thumbs .tt-pdp-img-load {
  border-radius: inherit;
  min-height: 100%;
}

.tt-pdp-feature-highlights__icon.tt-pdp-img-load {
  overflow: visible;
  background-color: transparent;
  isolation: auto;
}

.tt-pdp-feature-highlights__icon.tt-pdp-img-load::after {
  inset: 14%;
  border-radius: 50%;
}

.tt-aplus-content__item.tt-pdp-img-load:not(.is-loaded) {
  aspect-ratio: 35 / 12;
}

@keyframes tt-pdp-img-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes tt-pdp-img-failsafe {
  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .tt-pdp-img-load::after {
    animation-duration: 1.05s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tt-pdp-img-load::after,
  .tt-pdp-img-load img {
    animation: none !important;
    transition: none !important;
  }

  .tt-pdp-img-load::after {
    opacity: 0;
    visibility: hidden;
  }

  .tt-pdp-img-load img {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .tt-pdp-media-slider.style-row {
    flex-direction: column;
    gap: 12px;
  }

  .tt-pdp-media-slider.style-row .flat-wrap-media-product,
  .tt-pdp-media-slider.style-row .tf-product-media-thumbs {
    width: 100%;
    order: unset;
  }

  .tt-pdp-media-slider.style-row .tf-product-media-thumbs {
    max-height: none;
  }

  .tt-pdp-media-slider.style-row .tf-product-media-thumbs .swiper-slide {
    max-height: none;
    width: 72px;
  }
}

.tt-pdp-info-wrap {
  margin-top: 0;
}

.tt-pdp-breadcrumb--hidden {
  display: none !important;
}

.tt-pdp-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #888;
}

.tt-pdp-breadcrumbs__link {
  color: #888;
  text-decoration: none;
}

.tt-pdp-breadcrumbs__link:hover {
  color: #111;
  text-decoration: underline;
}

.tt-pdp-breadcrumbs__sep {
  color: #bbb;
  font-size: 12px;
}

.tt-pdp-breadcrumbs__current {
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tt-pdp-info-col,
.tt-pdp-info-wrap,
.tt-pdp-info-list {
  min-width: 0;
  max-width: 100%;
}

.tt-pdp-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tt-pdp-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 4px;
}

.tt-pdp-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  background: #101010;
  color: #fff;
}

.tt-pdp-title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #111;
  font-weight: 600;
}

.tt-pdp-rating-row {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
}

.tt-pdp-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  line-height: 1.3;
}

.tt-pdp-rating__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 6px;
}

.tt-pdp-rating__star .bi-star-fill {
  font-size: 17px;
  line-height: 1;
  color: #f5a623;
}

.tt-pdp-rating__score {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-right: 12px;
}

.tt-pdp-rating__sep {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #d4d4d4;
  margin-right: 12px;
  flex-shrink: 0;
}

.tt-pdp .tt-pdp-reviews-link {
  font-size: 16px;
  font-weight: 500;
  color: #444 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.3;
  font-family: var(--font-body);
}

.tt-pdp .tt-pdp-reviews-link:hover {
  color: #111 !important;
}

.tt-pdp-short-desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  max-width: 38rem;
}

.tt-pdp-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.tt-pdp-highlight {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}

.tt-pdp-highlight__check {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.tt-pdp-highlight__text {
  white-space: nowrap;
}

.tt-pdp-highlight--0 {
  background: #fff3e0;
}

.tt-pdp-highlight--0 .tt-pdp-highlight__check {
  color: #333;
}

.tt-pdp-highlight--1 {
  background: #f1f8e9;
}

.tt-pdp-highlight--1 .tt-pdp-highlight__check {
  color: #333;
}

.tt-pdp-net-content {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #666;
}

.tt-pdp-net-content__label {
  font-weight: 400;
  color: #666;
}

.tt-pdp-net-content__value {
  font-weight: 700;
  color: #111;
}

.tt-pdp-price {
  margin: 0;
  padding: 0;
}

.tt-pdp-price__row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 12px;
  row-gap: 6px;
}

.tt-pdp-price__current {
  font-size: clamp(1.875rem, 3.4vw, 2.25rem);
  line-height: 1;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tt-pdp-price__mrp {
  font-size: 15px;
  font-weight: 400;
  text-decoration: line-through;
  color: #999 !important;
}

.tt-pdp-price__discount {
  font-size: 16px;
  font-weight: 700;
  color: #f04438;
  line-height: 1;
}

.tt-pdp-tax-note {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  font-style: italic;
  line-height: 1.2;
}

.tt-pdp-purchase {
  display: grid;
  gap: 20px;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid #efefef;
  min-width: 0;
  max-width: 100%;
}

.tt-pdp-feature-highlights {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #efefef;
}

.tt-pdp-feature-highlights__title {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  letter-spacing: -0.01em;
}

.tt-pdp-feature-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-pdp-feature-highlights__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: center;
  min-width: 0;
}

.tt-pdp-feature-highlights__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.tt-pdp-feature-highlights__icon img {
  display: block;
  width: 84px !important;
  height: 84px !important;
  max-width: none !important;
  min-width: 84px;
  flex-shrink: 0;
  object-fit: contain;
}

.tt-pdp-feature-highlights__label {
  margin: 0;
  max-width: 100%;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  letter-spacing: 0.01em;
  margin-top: -12px !important;
}

@media (min-width: 992px) {
  .tt-pdp-feature-highlights__grid {
    grid-template-columns: repeat(4, minmax(108px, 1fr));
    gap: 20px 16px;
  }

  .tt-pdp-feature-highlights__icon {
    width: 112px;
    height: 112px;
  }

  .tt-pdp-feature-highlights__icon img {
    width: 130px !important;
    height: 100px !important;
    min-width: 100px;
  }

  .tt-pdp-feature-highlights__label {
    max-width: none;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .tt-pdp-feature-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .tt-pdp-feature-highlights__item {
    padding-inline: 4px;
  }

  .tt-pdp-feature-highlights__label {
    max-width: 9rem;
  }
}

@media (max-width: 575px) {
  .tt-pdp-feature-highlights__grid {
    gap: 20px 12px;
  }

  .tt-pdp-feature-highlights__icon {
    width: 88px;
    height: 88px;
  }

  .tt-pdp-feature-highlights__icon img {
    width: 105px !important;
    height: 76px !important;
    min-width: 76px;
  }

  .tt-pdp-feature-highlights__label {
    font-size: 12px;
    max-width: 8.5rem;
  }
}

.tt-pdp-variants {
  gap: 12px;
}

.tt-pdp-variant-label,
.tt-pdp-qty-label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.tt-pdp-variant-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.tt-pdp-variant-card {
  position: relative;
  display: grid;
  gap: 3px;
  flex: 0 0 auto;
  width: min(100%, 210px);
  min-width: 168px;
  padding: 14px 14px 12px;
  border: 1.5px solid #e3e3e3;
  border-radius: 12px;
  background: #fff !important;
  color: #111 !important;
  cursor: default;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tt-pdp .tt-pdp-variant-card.size-btn.active,
.tt-pdp .tt-pdp-variant-card.size-btn:hover {
  background: #fff !important;
  color: #111 !important;
}

.tt-pdp-variant-card.active {
  border-color: #101010;
  box-shadow: 0 0 0 1px #101010;
}

.tt-pdp-variant-card__ribbon {
  position: absolute;
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  padding: 2px 8px;
  border-radius: 4px;
  background: #101010;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.tt-pdp-variant-card__ribbon--sale {
  background: #e53935;
}

.tt-pdp-variant-card__check {
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #101010;
  color: #fff;
  font-size: 12px;
}

.tt-pdp-variant-card.active .tt-pdp-variant-card__check {
  display: inline-flex;
}

.tt-pdp-variant-card__size {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  padding-right: 24px;
}

.tt-pdp-variant-card__price {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.tt-pdp-variant-card__off {
  font-size: 13px;
  font-weight: 700;
  color: #e53935;
}

.tt-pdp-variant-card__mrp {
  font-size: 12px;
  color: #888;
  text-decoration: line-through;
}

.tt-pdp-variant-card__usp {
  font-size: 12px;
  color: #666;
}

.tt-pdp-variant-card__stock {
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.tt-pdp-qty-actions {
  display: grid;
  gap: 12px;
}

.tt-pdp-qty {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 6px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: #fff;
}

.tt-pdp-qty .btn-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #111;
  transition: background 0.15s ease;
}

.tt-pdp-qty .btn-quantity:hover {
  background: #f2f2f2;
}

.tt-pdp-qty .quantity-product {
  width: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  padding: 0;
}

.tt-pdp-btn-sep {
  margin: 0 6px;
  opacity: 0.75;
}

.tt-pdp-trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #efefef;
}

@media (min-width: 576px) {
  .tt-pdp-trust-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tt-pdp-trust-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.tt-pdp-trust-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ececec;
  flex-shrink: 0;
}

.tt-pdp-trust-point__icon .icon,
.tt-pdp-trust-point__icon .bi {
  font-size: 18px;
  color: #101010;
}

.tt-pdp-trust-point__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #333;
}

.tt-pdp-safe-checkout {
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid #efefef;
  background: #fff;
}

.tt-pdp-safe-checkout__title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.tt-pdp-safe-checkout__payments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-pdp-safe-checkout__payments .footer-payment-banner {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.tt-pdp .tt-product-share {
  margin-top: 0;
  padding-top: 4px;
}

.tt-pdp .tt-pdp-offers {
  margin-top: 0;
  overflow: visible;
}

@media (max-width: 767px) {
  .tt-pdp-heading {
    gap: 0;
  }

  .tt-pdp-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .tt-pdp-rating-row {
    margin-bottom: 16px;
  }

  .tt-pdp-rating__star .bi-star-fill {
    font-size: 16px;
  }

  .tt-pdp-rating__score {
    font-size: 15px;
    margin-right: 10px;
  }

  .tt-pdp-rating__sep {
    height: 14px;
    margin-right: 10px;
  }

  .tt-pdp .tt-pdp-reviews-link {
    font-size: 15px;
  }

  .tt-pdp-highlights {
    gap: 10px;
    margin-bottom: 16px;
  }

  .tt-pdp-highlight {
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 22px;
  }

  .tt-pdp-highlight__check {
    font-size: 12px;
  }

  .tt-pdp-highlight__text {
    white-space: normal;
  }

  .tt-pdp-net-content {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .tt-pdp-price__current {
    font-size: 1.75rem;
  }

  .tt-pdp-price__mrp {
    font-size: 14px;
  }

  .tt-pdp-price__discount {
    font-size: 15px;
  }

  .tt-pdp-tax-note {
    font-size: 12px;
  }

  .tt-pdp-feature-highlights {
    padding-top: 20px;
  }

  .tt-pdp-feature-highlights__title {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .tt-pdp-feature-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .tt-pdp-feature-highlights__label {
    font-size: 12px;
  }

  .tt-pdp-variant-cards {
    margin-right: -4px;
  }

  .tt-pdp-qty {
    width: 100%;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .tt-pdp-qty-block {
    max-width: 160px;
  }
}

@media (max-width: 575px) {
  .tt-pdp-price__row {
    gap: 4px 8px;
  }
}

.tt-pdp-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  border-top: 1px solid #e8e8e8;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.tt-pdp-sticky-atc.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

body.tt-pdp-sticky-visible .tt-pdp {
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}

.tt-pdp-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tt-pdp-sticky-product {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.tt-pdp-sticky-product__img {
  flex-shrink: 0;
  width: 44px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fafafa;
}

.tt-pdp-sticky-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-pdp-sticky-product__name {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tt-pdp-sticky-actions {
  flex: 0 0 auto;
}

.tt-pdp-sticky-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  max-width: 100%;
  height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease;
}

.tt-pdp-sticky-add:hover {
  background: #000;
}

@media (min-width: 768px) {
  .tt-pdp-sticky-add {
    min-width: 220px;
    height: 48px;
    font-size: 15px;
    padding: 0 28px;
  }

  .tt-pdp-sticky-product__name {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .tt-pdp-sticky-product__name {
    display: none;
  }

  .tt-pdp-sticky-add {
    width: 100%;
    min-width: 0;
  }

  .tt-pdp-sticky-inner {
    gap: 10px;
  }
}


.tt-pdp .tf-product-info-wrap .tf-product-info-heading .product-infor-meta {
  margin-bottom: 0;
}

.tt-pdp .tf-product-info-wrap .tf-product-info-heading .meta_rate,
.tt-pdp .tf-product-info-wrap .tf-product-info-heading .meta_sold {
  gap: 0;
}

.tt-pdp .tf-product-info-wrap .product-infor-price {
  gap: 0;
}

.tt-pdp .tf-product-info-wrap .tf-product-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  max-width: 100%;
}

.tt-pdp .tf-product-info-wrap .tf-product-info-list > * {
  min-width: 0;
  max-width: 100%;
}

.tt-pdp .tt-pdp-info-list>.br-line {
  display: none;
}

/* Hide prev / grid / next post nav if copied from theme demo */
.page-title-product-detail .nav-post-list {
  display: none !important;
}

.page-title-product-detail .main-page-title {
  justify-content: flex-start;
}

.product-review-form-ui .tt-review-form-head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 10px 0 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 100%;
}

.product-review-form-ui .tt-review-form-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-top: 0;
  flex: 0 0 auto;
}

.product-review-form-ui .tt-review-form-stars {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-left: 0;
  flex: 1 1 12rem;
  min-width: 0;
  max-width: 100%;
}

.product-review-form-ui #product-review-stars-wrap {
  justify-content: flex-start !important;
  gap: 4px !important;
  flex-wrap: wrap !important;
  max-width: 100%;
}

.product-review-form-ui .product-review-rating-label,
.product-review-form-ui #review-rating-error {
  flex: 1 1 100%;
  max-width: 100%;
}

.product-review-form-ui .product-review-rating-label {
  display: block;
}

.product-review-form-ui .product-review-star-btn {
  font-size: 2rem;
  line-height: 1;
  padding: 0 3px;
  border: none;
  background: none;
  color: #dcdcdc;
  cursor: pointer;
  transition: color 0.15s ease;
}

.product-review-form-ui .product-review-star-btn.is-active,
.product-review-form-ui .product-review-star-btn.is-hover {
  color: #f2a100;
}

.product-review-form-ui .tt-review-form-grid textarea,
.product-review-form-ui .tt-review-form-grid input[type="text"],
.product-review-form-ui .tt-review-form-grid input[type="email"] {
  border: 1px solid #efefef;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fafafa;
  height: 46px;
}

.product-review-form-ui .tt-review-form-textarea {
  min-height: 210px;
  resize: vertical;
  height: auto;
  padding-top: 14px;
}

.product-review-form-ui .tt-review-form-check {
  user-select: none;
  cursor: pointer;
}

.product-review-form-ui .tt-review-form-checkbox {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #101010;
  flex: 0 0 auto;
}

.product-review-form-ui .tt-review-form-actions {
  margin-top: 24px;
  padding-top: 4px;
}

.product-review-form-ui .tt-review-form-submit {
  width: max-content;
  max-width: 100%;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.product-review-form-ui .tt-review-form-submit:hover {
  background: #000;
}

.product-review-form-ui .review-field-error:empty {
  display: none;
}

.product-review-form-ui input.is-invalid,
.product-review-form-ui textarea.is-invalid {
  border-color: #e53935 !important;
}

.product-review-form-ui #product-review-stars-wrap.is-invalid-rating .product-review-star-btn {
  color: #e53935;
}

.tt-review-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.tt-review-avatar-fallback {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-review-star-display {
  font-size: 1.15rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #101010;
  margin-right: 2px;
}

.product-review-star-display.is-on {
  /* color: #101010; */
  color: #F0A750;
  -webkit-text-stroke: 0;
}

.product-review-upload-zone {
  border: 1px dashed #c4c4c4;
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  transition: background 0.15s ease;
}

.product-review-upload-zone:hover,
.product-review-upload-zone:focus {
  background: #f0f0f0;
  outline: none;
}

.product-review-upload-icon {
  color: #888;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Review form visibility — theme toggles .write-review on the wrapper via main.js */
.write-cancel-review-wrap.write-review .write-review-wrap {
  display: block !important;
}

.product-desc_review .box-write-comment {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-review-form-ui {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-review-form-ui .tt-review-form-grid {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
}

.product-review-form-ui .tt-review-form-left,
.product-review-form-ui .tt-review-form-right {
  min-width: 0;
  max-width: 100%;
}

.product-review-form-ui .tt-review-form-grid input,
.product-review-form-ui .tt-review-form-grid textarea,
.product-review-form-ui .product-review-upload-zone {
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .product-review-form-ui .tt-review-form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .product-review-form-ui .tt-review-form-head {
    flex-direction: column;
    align-items: stretch;
  }

  .product-review-form-ui .tt-review-form-stars {
    flex: 1 1 auto;
    width: 100%;
  }

  .product-review-form-ui #product-review-stars-wrap {
    justify-content: center !important;
  }

  .product-review-form-ui .product-review-rating-label,
  .product-review-form-ui #review-rating-error {
    text-align: center;
  }

  .product-review-form-ui .tt-review-form-actions {
    margin-top: 20px;
  }

  .product-review-form-ui .tt-review-form-submit {
    width: 100%;
    justify-content: center;
  }
}

/* Write-review open state — summary + form layout */
.write-cancel-review-wrap.write-review {
  gap: 28px;
}

.write-cancel-review-wrap.write-review .tt-pdp-reviews__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.write-cancel-review-wrap.write-review .btn-cancel-review {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .write-cancel-review-wrap.write-review .btn-cancel-review {
    width: auto;
    min-width: 10rem;
  }
}

/* Customer Reviews — rating summary & breakdown (responsive) */
#customer-reviews .accordion-content {
  max-width: 100%;
  overflow-x: clip;
}

.product-desc_review .box-rating {
  max-width: 100%;
}

.product-desc_review .rating-progress-list {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.product-desc_review .rate-progress-star {
  width: 100%;
  min-width: 0;
  gap: 6px 8px;
}

.product-desc_review .rate-progress-star .number-star,
.product-desc_review .rate-progress-star .icon {
  flex-shrink: 0;
}

.product-desc_review .rate-progress-star .number-percent {
  flex-shrink: 0;
  min-width: 2.75rem;
  text-align: right;
  white-space: nowrap;
}

.product-desc_review .rate-progress-star .progress {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
  max-width: 100%;
}

@media (max-width: 991px) {
  .product-desc_review .box-rating.tt-pdp-reviews__summary-grid {
    margin-bottom: 24px;
  }

  .product-desc_review .rating-ratio {
    width: 100%;
  }

  .product-desc_review .box-rating .btn-comment-review {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .product-desc_review {
    gap: 28px;
  }

  .product-desc_review .box-comment .head h4 {
    font-size: 1.125rem;
  }
}

.tt-product-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 4px;
}

.tt-product-share__label {
  font-weight: 600;
  font-size: 15px;
  color: #111;
  flex-shrink: 0;
}

.tt-product-share__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tt-product-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  background: #fff;
  color: #333;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.tt-product-share__btn:hover {
  border-color: #111;
  color: #111;
  background: #fafafa;
}

.tt-product-share__btn .bi {
  font-size: 1.05rem;
  line-height: 1;
}

.tt-product-share__btn.is-copied {
  border-color: #111;
  color: #111;
}

.tt-product-share__copied {
  width: 100%;
  font-size: 13px;
  color: #15803d;
  min-height: 0;
}

.tt-product-share__copied:not(:empty) {
  min-height: 1.25em;
}

.tt-pdp-offers {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: visible;
  font-family: var(--font-body);
}

.tt-pdp-offers__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: #111;
}

.tt-pdp-offers__title .bi {
  color: #e85d4c;
  font-size: 1.1rem;
}

.tt-pdp-offers__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 156px), 1fr));
  align-items: stretch;
  gap: 10px;
  width: 100%;
  min-width: 0;
  overflow: visible;
  padding: 0;
}

.tt-pdp-offers__track,
.tt-pdp-offers__track::-webkit-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tt-pdp-offers__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.tt-pdp-offers__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  border: 1px solid #f0c4d4;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
}

.tt-pdp-offers__card-head {
  flex: 1 1 auto;
  padding: 12px 12px 10px;
  background: linear-gradient(135deg, #fff5f8 0%, #ffe8ef 100%);
  min-width: 0;
  overflow: visible;
  border-radius: 9px 9px 0 0;
}

.tt-pdp-offers__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
  margin: 0;
  font-family: var(--font-price);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
  color: #d63384;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.tt-pdp-offers__currency {
  flex: 0 0 auto;
  display: inline-block;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans Devanagari", "Noto Sans Symbols 2", "Noto Sans", sans-serif !important;
  font-weight: 600;
  font-style: normal;
  color: inherit;
  line-height: 1;
  padding-right: 0.05em;
}

.tt-pdp-offers__headline-text {
  min-width: 0;
}

.tt-pdp-offers__subtitle {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #555;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tt-pdp-offers__card-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 8px;
  padding: 10px 12px;
  border-top: 1px solid #f5d6e0;
  background: #fff;
  min-width: 0;
  border-radius: 0 0 9px 9px;
}

.tt-pdp-offers__use {
  min-width: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #333;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.tt-pdp-offers__code {
  font-family: var(--font-heading);
  color: #d63384;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tt-pdp-offers__copy {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: -6px -6px -6px 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 0;
  color: #15803d;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.tt-pdp-offers__copy .bi {
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}

.tt-pdp-offers__copy:hover,
.tt-pdp-offers__copy:focus-visible {
  color: #166534;
  background: #f0fdf4;
}

.tt-pdp-offers__copy:focus-visible {
  outline: 2px solid #15803d;
  outline-offset: 1px;
}

.tt-pdp-offers__copy-tip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  padding: 3px 8px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 8;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.tt-pdp-offers__copy-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 4px solid transparent;
  border-top-color: #111;
}

@media (hover: hover) and (pointer: fine) {
  .tt-pdp-offers__copy:hover .tt-pdp-offers__copy-tip {
    opacity: 1;
    visibility: visible;
  }
}

.tt-pdp-offers__copy:focus-visible .tt-pdp-offers__copy-tip,
.tt-pdp-offers__copy.is-copied .tt-pdp-offers__copy-tip {
  opacity: 1;
  visibility: visible;
}

.tt-pdp-offers__copy.is-copied {
  color: #111;
  text-decoration: none;
}

.tt-pdp-offers__hint {
  margin: 0;
  font-size: 13px;
  color: #15803d;
  min-height: 0;
}

.tt-pdp-offers__hint:empty {
  display: none;
}

.tt-pdp-offers__hint:not(:empty) {
  margin-top: 8px;
  min-height: 1.25em;
}

@media (max-width: 767px) {
  .tt-pdp-offers {
    padding: 14px 12px;
  }

  .tt-pdp-offers__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .tt-pdp-offers__card {
    flex: 0 0 auto;
    width: min(210px, 78%);
  }

  .tt-pdp-offers__copy {
    width: 40px;
    height: 40px;
  }
}

/* Guaranteed Safe Checkout — payment badge row */
.tf-product-info-wrap .tt-pdp-safe-checkout {
  width: 100%;
}

.tf-product-info-wrap .tt-pdp-safe-checkout__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.tf-product-info-wrap .tt-pdp-safe-checkout__payments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tf-product-info-wrap .tt-pdp-safe-checkout .card-item img {
  width: 50px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* Rich text from admin (Introduction, Ingredients, How to Use) */
.product-rich-text {
  color: #222 !important;
  font-size: 14px !important;
}

.product-rich-text p {
  margin: 0 0 0.75em;

  color: #222 !important;
  font-size: 14px !important;
}

.product-rich-text p:last-child {
  margin-bottom: 0;
}

.product-rich-text ul,
.product-rich-text ol {
  display: block;
  margin: 0 0 0.75em;
  padding-left: 1.25em;
  list-style-position: outside;
}

.product-rich-text ul {
  list-style-type: disc;
}

.product-rich-text ol {
  list-style-type: decimal;
}

.product-rich-text ul ul,
.product-rich-text ul ol,
.product-rich-text ol ul,
.product-rich-text ol ol {
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}

.product-rich-text li {
  display: list-item;
  list-style: inherit;
  margin-bottom: 0.35em;

  font-size: 14px !important;
  color: #222 !important;
}

.product-rich-text strong {
  font-weight: 600;
}

/* PDP — Add to Cart & Buy it now */
.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-add-cart {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 9999px;
  background: #101010;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-add-cart::after {
  display: none !important;
}

.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-add-cart:hover,
.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-add-cart:focus-visible {
  background: #000;
  color: #fff;
}

.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-buy-now {
  height: 50px;
  padding: 0 28px;
  border-radius: 9999px;
  border: 1px solid #101010;
  background: #fff;
  color: #101010;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-buy-now::after {
  display: none !important;
}

.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-buy-now:hover,
.tf-product-info-wrap .tf-product-total-quantity .tt-pdp-buy-now:focus-visible {
  background: #101010;
  color: #fff;
  border-color: #101010;
}

@media (min-width: 1200px) {

  .tf-product-info-wrap .tf-product-total-quantity .tt-pdp-add-cart,
  .tf-product-info-wrap .tf-product-total-quantity .tt-pdp-buy-now {
    height: 52px;
    font-size: 16px;
  }
}

/* Prevent Bootstrap/theme img { max-width: 100% } from shrinking highlight icons */
.tf-product-info-wrap .tt-pdp-feature-highlights__icon img {
  max-width: none;
}

/* ── PDP content accordions & reviews (Tone & Terra) ─────────── */
.tt-pdp-content {
  padding-top: 12px;
}

.tt-pdp-content__inner {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.tt-pdp-accordions .tt-pdp-acc {
  border-bottom: 1px solid #ececec;
}

.tt-pdp-accordions .tt-pdp-acc:last-child {
  border-bottom: 0;
}

.tt-pdp-accordions .accordion-action,
.tt-pdp-disclaimer-wrap .accordion-action {
  padding-top: 22px;
  padding-bottom: 22px;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
}

.tt-pdp-accordions .accordion-action:not(.collapsed),
.tt-pdp-disclaimer-wrap .accordion-action:not(.collapsed) {
  padding-bottom: 12px;
}

.tt-pdp-accordions .accordion-content,
.tt-pdp-disclaimer-wrap .accordion-content {
  padding-bottom: 22px;
}

.tt-pdp-desc-text {
  max-width: 48rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  /* color: #444; */
  color: #222;
  font-size: 14px;
}

.tt-pdp-ingredients-list {
  line-height: 1.75;
  /* color: #444; */
  color: #222;
  font-size: 14px;
}

.tt-pdp-key-ingredients {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px 28px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

@media (min-width: 768px) {
  .tt-pdp-key-ingredients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tt-pdp-key-ingredient {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.tt-pdp-key-ingredient__media {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid #eee;
}

.tt-pdp-key-ingredient__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-pdp-key-ingredient__name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
}

.tt-pdp-key-ingredient__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  /* color: #555; */
  color: #222;
  font-size: 14px;
}

.tt-pdp-howto {
  margin-top: 4px;
}

.tt-pdp-howto__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
}

.tt-pdp-howto__track::-webkit-scrollbar {
  display: none;
}

.tt-pdp-howto__card {
  flex: 0 0 min(86%, 280px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fafafa;
}

@media (min-width: 992px) {
  .tt-pdp-howto__track {
    overflow: visible;
    flex-wrap: wrap;
  }

  .tt-pdp-howto__card {
    flex: 1 1 calc(25% - 12px);
    min-width: 180px;
    max-width: 100%;
  }
}

.tt-pdp-howto__step {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}

.tt-pdp-howto__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
}

.tt-pdp-suitable {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tt-pdp-suitable__item {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}

.tt-pdp-faq-heading {
  padding-top: 28px;
  padding-bottom: 8px;
}

.tt-pdp-faq-heading__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
}

.tt-pdp-faq-item {
  border-top: 1px solid #ececec;
}

.tt-pdp-faq-item .accordion-action {
  font-size: 1rem;
  font-weight: 500;
}

.tt-pdp-faq-answer {
  line-height: 1.7;
  color: #555;
}

.tt-pdp-reviews {
  padding-top: 8px;
}

.tt-pdp-reviews__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: #111;
}

/* Override theme .box-rating flex so score / bars / CTA never overlap */
.product-desc_review .box-rating.tt-pdp-reviews__summary-grid,
.tt-pdp-reviews__summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-content: stretch;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .product-desc_review .box-rating.tt-pdp-reviews__summary-grid,
  .tt-pdp-reviews__summary-grid {
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) auto;
    gap: 28px 36px;
  }
}

.tt-pdp-reviews__score {
  text-align: center;
  min-width: 0;
}

@media (min-width: 992px) {
  .tt-pdp-reviews__score {
    text-align: left;
  }
}

.tt-pdp-reviews__avg {
  margin: 10px 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
}

.tt-pdp-reviews__count {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.tt-pdp-reviews__bars {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.tt-pdp-reviews__bars .rate-progress-star {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.tt-pdp-reviews__bars .progress {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100%;
}

.tt-pdp-reviews__bars .progress-bar {
  background: #101010;
}

.tt-pdp-reviews__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.tt-pdp-reviews__write-btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  background: #101010 !important;
  color: #fff !important;
  border: none !important;
  white-space: nowrap;
}

.tt-pdp-reviews__write-btn:hover {
  background: #000 !important;
}

@media (min-width: 992px) {
  .tt-pdp-reviews__actions {
    width: auto;
    align-items: flex-end;
    justify-self: end;
  }

  .tt-pdp-reviews__write-btn,
  .tt-pdp-reviews__actions .btn-cancel-review {
    min-width: 168px;
    width: auto;
  }
}

.tt-pdp-reviews__toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 20px;
}

.tt-pdp-reviews__sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  max-width: 100%;
}

.tt-pdp-reviews__sort-label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #666;
}

.tt-pdp-reviews__sort-dropdown {
  position: relative;
  min-width: 180px;
  max-width: 100%;
}

.tt-pdp-reviews__sort-trigger {
  appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 180px;
  height: 46px;
  margin: 0;
  padding: 12px 40px 12px 14px;
  border: 1px solid #efefef;
  border-radius: 6px;
  background: #fafafa;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.tt-pdp-reviews__sort-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #101010;
  border-bottom: 1.5px solid #101010;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
  pointer-events: none;
}

.tt-pdp-reviews__sort-dropdown.is-open .tt-pdp-reviews__sort-trigger {
  border-color: #101010;
  background: #fff;
  box-shadow: 0 0 0 1px #101010;
}

.tt-pdp-reviews__sort-dropdown.is-open .tt-pdp-reviews__sort-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.tt-pdp-reviews__sort-trigger:hover {
  border-color: #e3e3e3;
  background: #fff;
}

.tt-pdp-reviews__sort-trigger:focus-visible {
  outline: none;
  border-color: #101010;
  background: #fff;
  box-shadow: 0 0 0 1px #101010;
}

.tt-pdp-reviews__sort-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tt-pdp-reviews__sort-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tt-pdp-reviews__sort-option {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #101010;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tt-pdp-reviews__sort-option:hover,
.tt-pdp-reviews__sort-option:focus {
  background: #101010;
  color: #fff;
  outline: none;
}

.tt-pdp-reviews__sort-option.is-selected {
  background: #f5f5f5;
  color: #101010;
  font-weight: 500;
}

.tt-pdp-reviews__sort-option.is-selected:hover,
.tt-pdp-reviews__sort-option.is-selected:focus {
  background: #101010;
  color: #fff;
}

@media (max-width: 575px) {
  .tt-pdp-reviews__toolbar {
    justify-content: stretch;
  }

  .tt-pdp-reviews__sort {
    width: 100%;
    justify-content: space-between;
  }

  .tt-pdp-reviews__sort-dropdown,
  .tt-pdp-reviews__sort-trigger {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.tt-pdp-review-list > .box-comment,
.tt-pdp-review-list > .tt-pdp-review-card {
  border-top: 1px solid #ececec;
  padding: 22px 0;
  margin: 0;
}

.tt-pdp-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tt-pdp-review-card__date {
  flex-shrink: 0;
  white-space: nowrap;
}

.tt-pdp-review-card__author {
  margin-bottom: 10px;
}

.tt-pdp-review-card .tt-review-avatar-img,
.tt-pdp-review-card .tt-review-avatar-fallback {
  width: 36px;
  height: 36px;
  font-size: 12px;
}

.tt-pdp-review-card .author__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.tt-pdp-review-card .comment_text {
  margin: 0;
  /* color: #333; */
  line-height: 1.65;

  color: #222 !important;
  font-size: 14px !important;
}

.tt-pdp-disclaimer-wrap {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.tt-pdp-disclaimer-wrap .tt-pdp-acc {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

@media (max-width: 767px) {
  .tt-pdp-content__inner {
    max-width: 100%;
  }

  .tt-pdp-accordions .accordion-action,
  .tt-pdp-disclaimer-wrap .accordion-action {
    font-size: 1.05rem;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .tt-pdp-key-ingredient__media {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .tt-pdp-reviews__title {
    margin-bottom: 20px;
  }

  .tt-pdp-sticky-product__img {
    width: 40px;
    height: 52px;
  }
}

/* Avoid horizontal page overflow from accordion/media */
.tt-pdp-content,
.tt-pdp-reviews,
.tt-pdp-disclaimer-wrap {
  overflow-x: clip;
}

/* ── A+ Content banners ──────────────────────────────────────── */
.tt-aplus-content {
  padding-top: 8px;
  padding-bottom: 8px;
}

.tt-aplus-content .tt-pdp-content__inner {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.tt-aplus-content__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.tt-aplus-content__item {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f7f2;
}

.tt-aplus-content__item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .tt-aplus-content {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .tt-aplus-content .tt-pdp-content__inner {
    max-width: 100%;
  }

  .tt-aplus-content__list {
    gap: 8px;
  }

  .tt-aplus-content__item {
    border-radius: 8px;
  }
}