/* ==========================================================================
   WEAR WING — Maison layer · Product detail page
   Scope: .product-single (unique wrapper of product_details.blade.php),
   plus the page's companion modals (.variation-modal, .size-guide-modal).
   Follows luxe.css tokens: paper/ivory grounds, hairline rules, squared
   chips, ink CTAs, bronze as a single quiet accent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1 · Gallery — main image framed by a hairline on ivory, thumbs as chips
   -------------------------------------------------------------------------- */
.product-single .product-single-gallery {
  gap: 22px;
}

/* Quiet entrance for the gallery: opacity only — slick + elevateZoom
   measure page offsets at init, so no transforms here. */
html.ww-js .product-single .product-single-gallery {
  animation: ww-pd-fade 1s var(--ww-ease-out) both;
}

@keyframes ww-pd-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.product-single .product-single-slider2 figure {
  border: 1px solid var(--ww-hairline);
  border-radius: 0 !important; /* .radius-lg utility is !important */
  background: var(--ww-ivory);
  overflow: hidden;
}

.product-single .slider-thumbnails2 .thumbnail-img {
  border: 1px solid var(--ww-hairline);
  border-radius: 0 !important; /* .radius-md utility is !important */
  background: var(--ww-ivory);
  transition: border-color 0.35s var(--ww-ease);
}

.product-single .slider-thumbnails2 .thumbnail-img:hover {
  border-color: var(--color-gray-2);
}

.product-single .slider-thumbnails2 .slick-current {
  border-color: var(--ww-ink);
}

/* Thumb rail arrows: squared quiet ghosts instead of bronze circles */
.product-single .slider-thumbnails2 .slider-btn {
  border-radius: 2px;
  border: 1px solid var(--ww-hairline);
  color: var(--ww-ink);
  background: var(--ww-paper);
  font-size: 16px;
}

.product-single .slider-thumbnails2 .slider-btn:hover {
  background: var(--ww-ink);
  border: 1px solid var(--ww-ink);
  color: #fff;
}

/* Mobile gallery dots (thumbs hidden < 576px): thin ink dashes */
.product-single .slick-dots li {
  width: 22px;
  height: 2px;
  border-radius: 0;
  background: var(--ww-hairline);
  transition: background 0.3s ease;
}

.product-single .slick-dots li.slick-active {
  background: var(--ww-ink);
}

/* --------------------------------------------------------------------------
   2 · Buy column — editorial hierarchy, sticky on desktop
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .product-single .product-single-default .product-single-details {
    position: sticky;
    top: 120px;
  }
}

.product-single .product-single-details .product-title {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.18;
  color: var(--ww-ink);
  margin-bottom: 14px;
}

/* Admin label chip (keeps its data-driven color, squared + smaller) */
.product-single .product-label-wrapper {
  display: block;
  margin-bottom: 10px;
}

.product-single .product-label-wrapper .product-label {
  display: inline-block;
  padding: 5px 12px 4px;
  font-family: var(--font-family-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-radius: 2px;
  line-height: 1.4;
}

/* Stock state: quiet hairline chip, icon carries the state color */
.product-single .stock-status .badge {
  background: transparent !important;
  border: 1px solid var(--ww-hairline);
  border-radius: 2px;
  padding: 7px 12px 6px;
  font-family: var(--font-family-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ww-ink) !important;
}

.product-single .stock-status .badge i {
  font-size: 9px;
  margin-inline-end: 4px;
}

.product-single .stock-status .badge.bg-success i {
  color: var(--color-green, #28a745);
}

.product-single .stock-status .badge.bg-danger {
  color: var(--color-gray-2) !important;
}

.product-single .stock-status .badge.bg-danger i {
  color: var(--color-red, #dc3545);
}

.product-single .rating-wrapper {
  font-family: var(--font-family-body);
  font-size: 13px;
  color: var(--color-gray-2);
}

.product-single .rating-wrapper .rate-icon svg {
  width: 16px;
  height: 16px;
}

/* Price pair: assured ink, calm strike, one quiet bronze note */
.product-single .product-single-details .product-price {
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 14px;
  flex-wrap: wrap;
}

.product-single .product-single-details .product-price .new-price-area {
  color: var(--ww-ink) !important; /* .color-primary utility is !important */
  font-family: var(--font-family-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  align-items: baseline;
}

.product-single .product-single-details .product-price span {
  font-family: var(--font-family-body);
}

.product-single .product-single-details .product-price .new-price,
.product-single .product-single-details .product-price .new-price-currency {
  color: var(--ww-ink);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

.product-single .product-single-details .product-price .old-price-area {
  color: var(--color-gray-1);
  font-size: 15px;
  align-items: baseline;
}

.product-single .product-single-details .product-price .old-price {
  color: var(--color-gray-1);
  font-weight: 400;
  font-size: 15px;
}

.product-single .product-single-details .product-price .discountoff {
  font-family: var(--font-family-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ww-ink);
}

@supports (color: color-mix(in srgb, red 50%, blue)) {
  .product-single .product-single-details .product-price .discountoff {
    color: color-mix(in srgb, var(--color-primary) 70%, var(--ww-ink));
  }
}

.product-single .tax-inclusive-price {
  font-family: var(--font-family-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-gray-1);
}

/* Summary: editorial measure */
.product-single .product-single-details .product-text {
  max-width: 52ch;
  color: var(--color-gray-2);
  line-height: 1.85;
}

.product-single .sku-code {
  font-family: var(--font-family-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-2);
}

.product-single .sku-code .text-dark {
  color: var(--ww-ink) !important;
}

/* Size guide: quiet ink line (overrides site-fixes' bronze underline) */
.product-single .size-guide-link {
  font-family: var(--font-family-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ww-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--ww-hairline);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.product-single .size-guide-link:hover {
  color: var(--color-primary);
  text-decoration-color: currentColor;
}

/* --------------------------------------------------------------------------
   3 · Flash countdown — hairline counts, becalmed starburst
   -------------------------------------------------------------------------- */
.product-single .product-single-details .product-countdown .count {
  background: transparent;
  border: 1px solid var(--ww-hairline);
  border-radius: 2px !important;
  font-family: var(--font-family-body);
}

.product-single .product-single-details .product-countdown .count-period {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-2);
}

.product-single
  .product-single-details
  .product-countdown
  .details-label-discount-percentage {
  animation: none;
}

/* --------------------------------------------------------------------------
   4 · Variants — squared chips, hairline; ink when chosen
   -------------------------------------------------------------------------- */
.product-single #variantListULDetails {
  display: flex !important; /* base sets inline-flex on the group */
  flex-direction: column;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.product-single #variantListULDetails .list-item {
  width: 100%;
}

.product-single .variant-group-label {
  gap: 10px;
}

.product-single .variant-group-label .variant-group-name {
  font-family: var(--font-family-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ww-ink);
}

.product-single .variant-group-label .selected-variant-label {
  font-family: var(--font-family-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-gray-1);
}

/* Size / other option chips */
.product-single .variant-option-btn {
  min-width: 52px;
  padding: 11px 18px 10px;
  border: 1px solid var(--ww-hairline);
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-family-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ww-ink);
  transition: border-color 0.35s var(--ww-ease), background 0.35s var(--ww-ease),
    color 0.35s var(--ww-ease);
}

.product-single .variant-option-btn:hover:not(.unavailable) {
  border-color: var(--ww-ink);
}

.product-single .variant-option-btn.active {
  border-color: var(--ww-ink);
  background: var(--ww-ink);
  color: #fff;
}

.product-single .variant-price-extra {
  opacity: 0.65;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Color swatches: squared tiles with an offset ink ring when chosen */
.product-single .variant-swatch-btn {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid var(--ww-hairline);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: var(--ww-ivory);
  transition: box-shadow 0.35s var(--ww-ease), border-color 0.35s var(--ww-ease);
}

.product-single .variant-swatch-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-single .swatch-fallback-text {
  font-family: var(--font-family-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 38px;
  display: block;
  text-align: center;
  color: var(--color-gray-2);
}

.product-single .variant-swatch-btn:hover:not(.unavailable) {
  border-color: var(--color-gray-2);
}

.product-single .variant-swatch-btn.active {
  border-color: var(--ww-ink);
  box-shadow: 0 0 0 3px var(--ww-paper), 0 0 0 4px var(--ww-ink);
}

/* Unavailable combinations */
.product-single .variant-option-btn.unavailable,
.product-single .variant-swatch-btn.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  position: relative;
}

.product-single .variant-option-btn.unavailable::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gray-2);
  transform: rotate(-15deg);
}

/* --------------------------------------------------------------------------
   5 · Quantity + Add to cart — the strongest element on the page
   -------------------------------------------------------------------------- */
.product-single .product-action-row {
  gap: 12px;
  padding-top: 6px;
  align-items: stretch;
}

.product-single .product-single-default .quantity-input {
  width: auto;
  border: 1px solid var(--ww-hairline);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  align-items: stretch;
}

.product-single .product-single-default .quantity-input .quantity-btn {
  width: 48px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  font-size: 13px;
  color: var(--ww-ink);
  cursor: pointer;
  transition: background 0.3s var(--ww-ease), color 0.3s var(--ww-ease);
}

.product-single .product-single-default .quantity-input .quantity-btn:hover {
  background: var(--ww-ink);
  border: 0;
  color: #fff;
}

.product-single .product-single-default .quantity-input input {
  width: 48px;
  height: 52px;
  border: 0;
  border-left: 1px solid var(--ww-hairline);
  border-right: 1px solid var(--ww-hairline);
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ww-ink);
  -moz-appearance: textfield;
  appearance: textfield;
}

.product-single .btn-add-to-cart {
  height: 54px;
  padding: 0 44px;
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px !important;
}

/* Text-only CTA reads more editorial */
.product-single .btn-add-to-cart i {
  display: none;
}

/* Compare / wishlist: squared hairline ghosts that fill with ink */
.product-single .btn-icon-outlined {
  width: 54px !important;   /* .btn-icon base fixes 44px with high spec */
  height: 54px !important;
  border: 1px solid var(--ww-hairline) !important;
  background: #fff !important;
  color: var(--ww-ink) !important;
  font-size: 15px;
  border-radius: 2px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ww-ease), color 0.3s var(--ww-ease),
    border-color 0.3s var(--ww-ease);
}

.product-single .btn-icon-outlined:hover {
  background: var(--ww-ink) !important;
  border-color: var(--ww-ink) !important;
  color: #fff !important;
}

.product-single .btn-icon-outlined.active,
.product-single .btn-icon-outlined.active:hover {
  background: var(--ww-ink) !important;
  border-color: var(--ww-ink) !important;
  color: #fff !important;
}

/* Share row: a hairline coda */
.product-single .product-share-row {
  padding-top: 22px;
  margin-top: 10px;
  border-top: 1px solid var(--ww-hairline);
}

.product-single .product-share-row > span {
  font-family: var(--font-family-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ww-ink) !important;
}

.product-single .product-share-row .social-link-sm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-single .product-share-row .social-link-sm a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ww-hairline);
  border-radius: 2px;
  background: transparent;
  font-size: 13px;
  line-height: 1;
  /* base .social-link a paints icons white with !important */
  color: var(--color-gray-2) !important;
  transition: background 0.3s var(--ww-ease), color 0.3s var(--ww-ease),
    border-color 0.3s var(--ww-ease);
}

/* base .social-link a::after adds a sliding bronze fill — retire it */
.product-single .product-share-row .social-link-sm a::after {
  display: none;
}

.product-single .product-share-row .social-link-sm a:hover {
  background: var(--ww-ink);
  border-color: var(--ww-ink);
  color: #fff !important;
}

/* --------------------------------------------------------------------------
   6 · Tabs — quiet underline navigation, borderless editorial content
   -------------------------------------------------------------------------- */
.product-single .product-single-tab .nav {
  border-bottom: 1px solid var(--ww-hairline);
  gap: 36px;
}

.product-single .product-single-tab .nav .nav-item:not(:last-child) {
  margin-inline-end: 0;
  padding-inline-end: 0;
  border-right: 0;
}

.product-single .product-single-tab .nav .nav-link {
  font-family: var(--font-family-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gray-2);
  padding: 4px 2px 16px;
  position: relative;
}

.product-single .product-single-tab .nav .nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 1px;
  background: var(--ww-ink);
  transform: scaleX(0);
  transition: transform 0.45s var(--ww-ease);
}

.product-single .product-single-tab .nav .nav-link:hover,
.product-single .product-single-tab .nav .nav-link.active {
  color: var(--ww-ink) !important; /* base pins bronze with !important */
}

.product-single .product-single-tab .nav .nav-link.active::after,
.product-single .product-single-tab .nav .nav-link:hover::after {
  transform: scaleX(1);
}

.product-single .product-single-tab .tab-content {
  border: 0;
  border-radius: 0 !important;
  margin-top: 0;
  padding: 44px 0 0;
}

.product-single .tab-description .content {
  max-width: 820px;
}

.product-single .tab-description .tinymce-content {
  color: var(--color-gray-2);
  line-height: 1.9;
}

.product-single .tab-description .tinymce-content h1,
.product-single .tab-description .tinymce-content h2,
.product-single .tab-description .tinymce-content h3,
.product-single .tab-description .tinymce-content h4 {
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--ww-ink);
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
}

.product-single .tab-description .tinymce-content h1:first-child,
.product-single .tab-description .tinymce-content h2:first-child,
.product-single .tab-description .tinymce-content h3:first-child,
.product-single .tab-description .tinymce-content h4:first-child {
  margin-top: 0;
}

.product-single .tab-description .tinymce-content strong {
  color: var(--ww-ink);
  font-weight: 600;
}

.product-single .tab-description .tinymce-content hr {
  border: 0;
  border-top: 1px solid var(--ww-hairline);
  opacity: 1;
  margin: 2em 0;
}

/* --------------------------------------------------------------------------
   7 · Reviews — a quiet editorial list
   -------------------------------------------------------------------------- */
.product-single .tav-review {
  max-width: 820px;
}

.product-single .tav-review h4 {
  font-size: 22px;
  color: var(--ww-ink);
}

.product-single .tav-review .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-single .tav-review .comment-list .comment {
  border-bottom: 1px solid var(--ww-hairline);
  padding-bottom: 22px;
  margin-bottom: 22px !important;
}

.product-single .tav-review .comment .author img {
  border-radius: 2px !important;
}

.product-single .tav-review .comment .content h6 {
  font-family: var(--font-family-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ww-ink);
}

.product-single .tav-review .comment .content h6 > span:last-child {
  font-weight: 400;
  font-size: 12px;
  color: var(--color-gray-1);
}

.product-single .tav-review .comment .content p {
  color: var(--color-gray-2);
  line-height: 1.8;
  margin-top: 6px;
}

.product-single .tav-review .comment-form h4 {
  font-size: 20px;
}

.product-single .tav-review .review-login {
  border: 1px solid var(--ww-hairline);
  border-radius: 2px;
  padding: 18px 22px;
  color: var(--color-gray-2);
}

.product-single .tav-review .review-login .boxed-btn {
  font-family: var(--font-family-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ww-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--ww-hairline);
  transition: color 0.3s ease;
}

.product-single .tav-review .review-login .boxed-btn:hover {
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   8 · Related products — inherits luxe tiles; quiet header rhythm
   -------------------------------------------------------------------------- */
.product-single .related-products-area {
  border-top: 1px solid var(--ww-hairline);
  margin-top: clamp(48px, 7vw, 90px);
  padding-top: clamp(48px, 7vw, 90px) !important;
}

.product-single .related-products-area .section-title .title {
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   9 · Companion modals (variation picker · size guide)
   -------------------------------------------------------------------------- */
.variation-modal .modal-content {
  border-radius: 0;
  border: 1px solid var(--ww-hairline);
  background: var(--ww-paper);
}

.variation-modal #variants h4 {
  font-family: var(--font-family-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ww-ink);
}

.variation-modal #variants label {
  font-family: var(--font-family-body);
  color: var(--ww-ink);
}

.variation-modal #variants .variants_price {
  font-size: 13px;
  color: var(--color-gray-1);
}

.variation-modal .modal-header,
.variation-modal .modal-footer {
  border-color: var(--ww-hairline);
}

.size-guide-modal .modal-content {
  border-radius: 0;
  border: 1px solid var(--ww-hairline);
  background: var(--ww-paper);
}

.size-guide-modal .modal-header {
  border-bottom: 1px solid var(--ww-hairline);
}

.size-guide-modal .modal-body .fit-meta {
  border-radius: 0;
  border: 1px solid var(--ww-hairline);
  background: var(--ww-ivory);
}

.size-guide-modal .modal-body table th,
.size-guide-modal .modal-body table td {
  border-color: var(--ww-hairline);
}

.size-guide-modal .modal-body table th {
  background: var(--ww-ivory);
}

/* --------------------------------------------------------------------------
   10 · Responsive & motion guards
   -------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
  .product-single .product-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-single .product-single-default .quantity-input {
    align-self: flex-start;
  }

  .product-single .btn-add-to-cart {
    width: 100%;
    min-width: 0;
  }

  /* the row's align-items-center utility would center these — pin left */
  .product-single .product-action-row .btn-icon-group.btn-inline {
    align-self: flex-start;
  }

  .product-single .product-single-tab .nav {
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.ww-js .product-single .product-single-gallery {
    animation: none;
  }

  .product-single .variant-option-btn,
  .product-single .variant-swatch-btn,
  .product-single .product-share-row .social-link-sm a,
  .product-single .btn-icon-outlined,
  .product-single .product-single-default .quantity-input .quantity-btn,
  .product-single .slider-thumbnails2 .thumbnail-img {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   Fit-confidence & trust layer (2026 storefront pass)
   -------------------------------------------------------------------------- */

/* Rating chip near the title jumps to the Reviews tab */
.product-single .ww-rating-link {
  cursor: pointer;
}

/* Honest low-stock signal under the variant selectors */
.product-single .ww-low-stock {
  margin: -6px 0 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

/* Reassurance list under the CTA — delivery + payment facts from settings */
.product-single .ww-assurance {
  list-style: none;
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--ww-hairline);
}
.product-single .ww-assurance li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--color-gray-2);
}
.product-single .ww-assurance li + li {
  margin-top: 8px;
}
.product-single .ww-assurance i {
  font-size: 13px;
  color: var(--ww-ink);
}

/* Review summary — average + star distribution bars */
.product-single .ww-review-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  padding: 18px 0;
  border-top: 1px solid var(--ww-hairline);
  border-bottom: 1px solid var(--ww-hairline);
}
.product-single .ww-review-avg-num {
  font-size: 36px;
  line-height: 1;
  color: var(--ww-ink);
}
.product-single .ww-review-avg-of {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-gray-2);
}
.product-single .ww-review-bars {
  list-style: none;
  flex: 1;
  min-width: 220px;
  max-width: 380px;
  margin: 0;
  padding: 0;
}
.product-single .ww-review-bars li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-gray-2);
}
.product-single .ww-review-bars li + li {
  margin-top: 6px;
}
.product-single .ww-bar-label {
  width: 36px;
  white-space: nowrap;
}
.product-single .ww-bar-label i {
  font-size: 10px;
  color: #eeae0b;
}
.product-single .ww-bar-track {
  flex: 1;
  height: 4px;
  background: var(--ww-ivory);
  overflow: hidden;
}
.product-single .ww-bar-fill {
  display: block;
  height: 100%;
  background: var(--ww-ink);
}
.product-single .ww-bar-count {
  width: 22px;
  text-align: right;
}
.product-single .ww-review-empty p {
  font-size: 13.5px;
  color: var(--color-gray-2);
}

/* Sticky mobile add-to-cart bar */
.ww-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--ww-paper);
  border-top: 1px solid var(--ww-hairline);
  box-shadow: 0 -10px 30px rgba(30, 29, 35, 0.08);
  transform: translateY(102%);
  transition: transform 0.35s var(--ww-ease);
  z-index: 1040;
}
.ww-sticky-atc.is-visible {
  transform: translateY(0);
}
.ww-sticky-atc__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ww-sticky-atc__title {
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--color-gray-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ww-sticky-atc__price {
  font-size: 15px;
  color: var(--ww-ink);
}
.ww-sticky-atc__btn {
  flex-shrink: 0;
  padding: 12px 24px;
}
@media (max-width: 991.98px) {
  .ww-sticky-atc {
    display: flex;
  }
  body.ww-atc-visible .mobile-bottom-toolbar {
    transform: translateY(110%);
    transition: transform 0.3s var(--ww-ease);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ww-sticky-atc,
  body.ww-atc-visible .mobile-bottom-toolbar {
    transition: none !important;
  }
}
