/**
 * Leather 1X — Product Detail styles
 * Dark theme, gold accents, sticky purchase bar, mobile bottom bar
 */

/* ── Product Wrap ───────────────────────────────────────────── */
.l1x-product-wrap {
  width: min(100% - 32px, var(--container, 1360px));
  margin: 0 auto;
  padding: 24px 0 80px;
}

/* ── Back Link ──────────────────────────────────────────────── */
.l1x-product-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.l1x-product-back:hover {
  color: var(--gold);
}

/* ── Product Detail Layout ──────────────────────────────────── */
.l1x-product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Gallery ────────────────────────────────────────────────── */
.l1x-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 110px;
}

.l1x-product-gallery__main {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201,169,106,0.12);
  background: rgba(255,255,255,0.02);
  aspect-ratio: 1;
}

.l1x-product-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.l1x-product-gallery__img.is-switching {
  opacity: 0.4;
}

.l1x-product-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,106,0.20) transparent;
}

.l1x-product-gallery__thumbs::-webkit-scrollbar {
  height: 4px;
}

.l1x-product-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(201,169,106,0.20);
  border-radius: 4px;
}

.l1x-product-gallery__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.l1x-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.l1x-product-gallery__thumb:hover {
  border-color: rgba(201,169,106,0.30);
  transform: translateY(-2px);
}

.l1x-product-gallery__thumb.is-active {
  border-color: var(--gold);
}

/* ── Info Column ────────────────────────────────────────────── */
.l1x-product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── 1. Top Line — Stars + Category ─────────────────────────── */
.l1x-product-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stars */
.l1x-product-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.l1x-product-stars .l1x-star {
  flex-shrink: 0;
}

.l1x-product-stars__count {
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: 4px;
}

/* Category Pill */
.l1x-product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,106,0.16);
  background: rgba(201,169,106,0.04);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  width: fit-content;
}

.l1x-product-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 2. Title ───────────────────────────────────────────────── */
.l1x-product-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

/* ── 3. Short Description (clamped) ─────────────────────────── */
.l1x-product-short {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.l1x-product-short p {
  margin: 0;
}

.l1x-product-short p + p {
  margin-top: 6px;
}

.l1x-product-short.is-expanded {
  -webkit-line-clamp: unset !important;
  display: block;
}

/* ── Read More Button ───────────────────────────────────────── */
.l1x-product-readmore {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
  align-self: flex-start;
  margin-top: -8px;
}

.l1x-product-readmore:hover {
  opacity: 0.7;
}

/* ── 4. Purchase Bar (sticky on desktop) ────────────────────── */
.l1x-product-purchase-bar {
  position: sticky;
  top: 100px;
  z-index: 10;
  background: var(--bg, #111);
  padding: 20px 0;
  border-top: 1px solid rgba(201,169,106,0.10);
  border-bottom: 1px solid rgba(201,169,106,0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l1x-product-purchase-bar__row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.l1x-product-purchase-bar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* Price */
.l1x-product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.l1x-product-price del {
  color: var(--muted);
  font-weight: 400;
  font-size: 1rem;
}

.l1x-product-price ins {
  text-decoration: none;
  color: var(--gold);
}

.l1x-product-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Stock Badge */
.l1x-product-stock {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
}

.l1x-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.l1x-stock-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.l1x-stock-badge--in {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.l1x-stock-badge--in::before {
  background: #4ade80;
}

.l1x-stock-badge--low {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.l1x-stock-badge--low::before {
  background: #fbbf24;
}

.l1x-stock-badge--out {
  color: #f87171;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.l1x-stock-badge--out::before {
  background: #f87171;
}

/* Qty control */
.l1x-product-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l1x-product-qty__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.l1x-product-qty__control {
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(201,169,106,0.18);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.l1x-product-qty__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
  font-family: inherit;
}

.l1x-product-qty__btn:hover:not(:disabled) {
  background: rgba(201,169,106,0.10);
}

.l1x-product-qty__btn:disabled {
  color: rgba(255,255,255,0.20);
  cursor: not-allowed;
}

.l1x-product-qty__value {
  width: 32px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

/* Add to cart button */
.l1x-product-atc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  border: 1px solid rgba(201,169,106,0.30);
  background: linear-gradient(180deg, rgba(138,63,24,0.96), rgba(90,38,12,0.96));
  color: rgba(255,255,255,0.94);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.l1x-product-atc:hover {
  transform: translateY(-1px);
  border-color: rgba(201,169,106,0.50);
  box-shadow: 0 8px 24px rgba(138,63,24,0.3);
}

.l1x-product-atc.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.l1x-product-atc--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.l1x-product-atc:disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.l1x-product-atc.is-shake {
  animation: l1x-shake 0.5s ease;
}

@keyframes l1x-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}

/* CTA line */
.l1x-product-cta-line {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

/* ── 5. Long Description (clamped) ──────────────────────────── */
.l1x-product-long {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.l1x-product-long p {
  margin: 0;
}

.l1x-product-long p + p {
  margin-top: 10px;
}

.l1x-product-long.is-expanded {
  -webkit-line-clamp: unset !important;
  display: block;
}

/* ── 6. Bullets ─────────────────────────────────────────────── */
.l1x-product-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.l1x-product-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.l1x-product-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 7. Product Tags ────────────────────────────────────────── */
.l1x-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.l1x-product-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,106,0.30);
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.l1x-product-tag:hover {
  background: rgba(201,169,106,0.08);
  border-color: rgba(201,169,106,0.50);
  transform: translateY(-1px);
}

/* ── Breadcrumbs (Rank Math) ───────────────────────────────── */
.l1x-product-breadcrumbs {
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.l1x-product-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.l1x-product-breadcrumbs a:hover {
  color: var(--gold);
}

.l1x-product-breadcrumbs .separator {
  margin: 0 6px;
  opacity: 0.5;
}

.l1x-product-breadcrumbs .last {
  color: var(--gold);
}

/* ── Variation Selectors ───────────────────────────────────── */
.l1x-product-variations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l1x-variation-group__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.l1x-variation-group__selected {
  color: var(--gold);
  font-weight: 600;
}

.l1x-variation-group__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.l1x-variation-group__pills button.l1x-variation-pill,
.l1x-variation-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--text) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  line-height: 1.3 !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.l1x-variation-group__pills button.l1x-variation-pill:hover:not(:disabled),
.l1x-variation-pill:hover:not(:disabled) {
  border-color: rgba(201, 169, 106, 0.35) !important;
  background: rgba(201, 169, 106, 0.06) !important;
  transform: translateY(-1px);
}

.l1x-variation-group__pills button.l1x-variation-pill.is-active,
.l1x-variation-pill.is-active {
  border-color: var(--gold) !important;
  background: rgba(201, 169, 106, 0.12) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.l1x-variation-pill.is-unavailable {
  opacity: 0.25;
  pointer-events: none;
  text-decoration: line-through;
}

.l1x-variation-pill.is-out-of-stock {
  opacity: 0.4;
  text-decoration: line-through;
  border-style: dashed;
}

.l1x-variation-pill:disabled {
  cursor: not-allowed;
}

.l1x-variation-clear {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.l1x-variation-clear:hover {
  opacity: 0.7;
}

/* ── Related Products ──────────────────────────────────────── */
.l1x-related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 106, 0.10);
}

.l1x-related__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.l1x-related__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 106, 0.20) transparent;
}

.l1x-related__scroll::-webkit-scrollbar {
  height: 4px;
}

.l1x-related__scroll::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 106, 0.20);
  border-radius: 4px;
}

.l1x-related__card {
  flex: 0 0 200px;
  text-decoration: none;
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 106, 0.10);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.l1x-related__card:hover {
  border-color: rgba(201, 169, 106, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.l1x-related__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.l1x-related__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.l1x-related__card:hover .l1x-related__img {
  transform: scale(1.05);
}

.l1x-related__info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l1x-related__name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.l1x-related__price {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
}

.l1x-related__price del {
  color: var(--muted);
  font-weight: 400;
}

.l1x-related__price ins {
  text-decoration: none;
}

/* ── Mobile Sticky Bottom Bar ──────────────────────────────── */
.l1x-mobile-sticky-bar {
  display: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .l1x-product-detail {
    gap: 32px;
  }

  .l1x-product-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .l1x-product-wrap {
    padding: 12px 0 90px;
  }

  .l1x-product-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .l1x-product-gallery {
    position: static;
  }

  .l1x-product-gallery__main {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .l1x-product-gallery__thumbs {
    gap: 6px;
    padding: 2px 0;
  }

  .l1x-product-gallery__thumb {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  .l1x-product-info {
    gap: 10px;
  }

  .l1x-product-topline {
    gap: 10px;
  }

  .l1x-product-title {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .l1x-product-price {
    font-size: 1.2rem;
  }

  .l1x-product-purchase-bar {
    position: static;
    padding: 14px 0;
    gap: 12px;
  }

  .l1x-product-purchase-bar__row {
    gap: 10px;
  }

  .l1x-product-purchase-bar__actions {
    display: none;
  }

  .l1x-product-note {
    font-size: 0.78rem;
  }

  .l1x-product-long {
    font-size: 0.85rem;
  }

  .l1x-product-bullets li {
    font-size: 0.84rem;
  }

  .l1x-product-cta-line {
    font-size: 0.76rem;
  }

  .l1x-related {
    margin-top: 32px;
    padding-top: 24px;
  }

  .l1x-related__title {
    font-size: 1.15rem;
    margin-bottom: 14px;
  }

  .l1x-related__card {
    flex: 0 0 150px;
  }

  /* Mobile bottom bar */
  .l1x-mobile-sticky-bar {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(17, 17, 17, 0.96);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    border-top: 1px solid rgba(201,169,106,0.15);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  }

  /* Variation pills row */
  .l1x-mobile-sticky-bar__vars {
    display: flex;
    gap: 6px;
    padding: 8px 14px 0;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: wrap;
  }

  .l1x-mobile-sticky-bar__vars::-webkit-scrollbar {
    display: none;
  }

  .l1x-mobile-var-group {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .l1x-mobile-var-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }

  .l1x-mobile-var-pill.is-active {
    border-color: var(--gold);
    background: rgba(201,169,106,0.12);
    color: var(--gold);
    font-weight: 700;
  }

  .l1x-mobile-var-pill.is-unavailable {
    opacity: 0.25;
    pointer-events: none;
    text-decoration: line-through;
  }

  .l1x-mobile-var-pill.is-out-of-stock {
    opacity: 0.4;
    text-decoration: line-through;
    border-style: dashed;
  }

  .l1x-mobile-var-pill:disabled {
    cursor: not-allowed;
  }

  /* Bottom row: price + qty + ATC */
  .l1x-mobile-sticky-bar__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .l1x-mobile-sticky-bar__price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0;
    min-width: 0;
  }

  .l1x-mobile-sticky-bar__price del {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
  }

  .l1x-mobile-sticky-bar__price ins {
    text-decoration: none;
    color: var(--gold);
  }

  .l1x-mobile-sticky-bar__right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .l1x-product-qty--mobile .l1x-product-qty__control {
    border-radius: 999px;
  }

  .l1x-product-qty--mobile .l1x-product-qty__btn {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .l1x-product-qty--mobile .l1x-product-qty__value {
    width: 22px;
    font-size: 0.82rem;
  }

  .l1x-product-atc--mobile {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  /* Push chat bubble above the mobile bar */
  .l1x-chat-bubble {
    bottom: 110px !important;
  }

  .l1x-chat-panel {
    bottom: 170px !important;
  }
}

@media (max-width: 480px) {
  .l1x-product-wrap {
    width: min(100% - 16px, var(--container));
    padding: 8px 0 120px;
  }

  .l1x-product-detail {
    gap: 10px;
  }

  .l1x-product-gallery__main {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
  }

  .l1x-product-gallery__thumb {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
  }

  .l1x-product-title {
    font-size: 1.15rem;
  }

  .l1x-product-price {
    font-size: 1.1rem;
  }

  .l1x-variation-pill {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .l1x-product-tag {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .l1x-related__card {
    flex: 0 0 130px;
  }

  .l1x-related__title {
    font-size: 1.05rem;
  }

  .l1x-product-stars .l1x-star {
    width: 14px;
    height: 14px;
  }

  .l1x-product-stars__count {
    font-size: 0.76rem;
  }

  .l1x-product-pill {
    padding: 4px 10px;
    font-size: 0.68rem;
  }

  .l1x-product-short {
    font-size: 0.85rem;
  }

  .l1x-product-readmore {
    font-size: 0.78rem;
  }

  .l1x-mobile-var-pill {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .l1x-mobile-sticky-bar__vars {
    padding: 6px 12px 0;
    gap: 5px;
  }

  .l1x-mobile-sticky-bar__bottom {
    padding: 6px 12px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
  }

  .l1x-chat-bubble {
    bottom: 120px !important;
  }

  .l1x-chat-panel {
    bottom: 180px !important;
  }
}
