
    /* ── Hide litc-export-only in editor ── */
    .litc-export-only { display: none !important; }

    /* ── Base: radio inputs hidden ── */
    .lit-carousel input[type="radio"] { display: none; }

    /* ── Slide: hidden by default ── */
    .lit-carousel-slide {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
      position: absolute;
      top: 0; left: 0;
    }
    .lit-carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 16px;
      box-sizing: border-box;
      display: block;
    }

    /* ── Thumb ── */
    .lit-carousel-thumb {
      display: flex;
      flex-shrink: 0;
      border: 2px solid #ddd;
      cursor: pointer;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      background: #eee;
      transition: border-color .15s;
      box-sizing: border-box;
    }
    .lit-carousel-thumb:hover { border-color: #999; }
    .lit-carousel-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 4px;
      box-sizing: border-box;
      display: block;
    }

    /* ── Hide scrollbar ── */
    .lit-carousel-thumbs::-webkit-scrollbar { display: none; }
    .lit-carousel-thumbs { -ms-overflow-style: none; scrollbar-width: none; }

    /* ════════════════════════════════
       NAV CAROUSEL — base + layout variants
       ════════════════════════════════ */
    .lit-product-carousel-nav {
      display: block;
      width: 100%;
      max-width: 800px;
      box-sizing: border-box;
      min-width: 0;
    }
    /* Base shared styles for all nav layout variants */
    .lit-carousel--nav {
      display: flex;
      border: 1px solid #ddd;
      width: 100%;
      box-sizing: border-box;
      min-width: 0;
    }

    /* ── HORIZONTAL LAYOUTS (top/bottom): clip overflowing thumbs ──
       For top/bottom nav, the thumb row is flex with flex-shrink:0 children,
       so many thumbs push the row's min-content past the gallery width,
       which cascades up and widens the outer column (e.g. .product-img-col).
       Setting overflow:hidden + max-width:100% makes this row a scroll
       container — flex min-width:auto resolves to 0, severing the cascade,
       and extra thumbs get clipped instead of overflowing the image. */
    .lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right))
      .lit-carousel-thumbstrip .lit-carousel-thumbs {
      max-width: 100%;
      overflow: hidden;
    }
    .lit-carousel--nav .lit-carousel-thumbstrip {
      position: relative;
      background: #fafafa;
      overflow: hidden;
    }
    .lit-carousel--nav .lit-carousel-thumbs {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
      flex-wrap: nowrap;
      transition: transform 0.3s ease;
    }
    .lit-carousel--nav .lit-carousel-thumb {
      width: 72px;
      height: 58px;
      flex-shrink: 0;
    }
    .lit-carousel--nav .lit-carousel-main-wrap {
      position: relative;
    }
    .lit-carousel--nav .lit-carousel-main {
      width: 100%;
      aspect-ratio: 1 / 1;
      flex-shrink: 0;
      overflow: hidden;
      position: relative;
      background: #f5f5f5;
    }
    /* Nav button sets — hidden by default, shown via :has() */
    .lit-carousel--nav .lit-nav {
      display: none;
      position: absolute;
      inset: 0;
      align-items: center;
      justify-content: space-between;
      pointer-events: none;
      z-index: 5;
    }
    /* Nav buttons on main image — small round, centered, floating */
    .lit-carousel--nav .lit-carousel-main-wrap .lit-nav {
      padding: 0 12px;
    }
    .lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.82);
      color: #222;
      font-size: 13px;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.18);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      flex-shrink: 0;
    }
    .lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn:hover {
      background: rgba(255,255,255,1);
      box-shadow: 0 3px 12px rgba(0,0,0,0.26);
    }

    .lit-nav-btn {
      pointer-events: all;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #e0e0e0;
      box-shadow: 0 1px 5px rgba(0,0,0,0.13);
      cursor: pointer;
      font-size: 11px;
      color: #333;
      user-select: none;
      transition: background 0.15s, box-shadow 0.15s;
      box-sizing: border-box;
      z-index: 5;
    }
    .lit-nav-btn:hover {
      background: #f5f5f5;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* ── NAV-TOP: thumbstrip on top, main image below ── */
    .lit-carousel--nav-top {
      flex-direction: column;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip {
      border-bottom: 1px solid #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      /* min-width:0 prevents flex item from expanding past parent when many thumbs overflow */
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }
    .lit-carousel--nav-top .lit-carousel-thumbs {
      flex-direction: row;
      padding: 8px 12px;
      transform: translateX(0);
    }
    .lit-carousel--nav-top .lit-carousel-main-wrap {
      width: 100%;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav {
      padding: 0 10px;
    }

    /* ── NAV-BOTTOM: thumbstrip on bottom, main image above ── */
    .lit-carousel--nav-bottom {
      flex-direction: column-reverse;
    }
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip {
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      /* min-width:0 prevents flex item from expanding past parent when many thumbs overflow */
      width: 100%;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }
    .lit-carousel--nav-bottom .lit-carousel-thumbs {
      flex-direction: row;
      padding: 8px 12px;
      transform: translateX(0);
    }
    .lit-carousel--nav-bottom .lit-carousel-main-wrap {
      width: 100%;
    }
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav {
      padding: 0 10px;
    }

    /* ── NAV-LEFT: thumbstrip on left, main image on right ── */
    .lit-carousel--nav-left {
      flex-direction: row;
      align-items: center;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip {
      border-right: 1px solid #ddd;
      width: 90px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-self: stretch;
    }
    .lit-carousel--nav-left .lit-carousel-thumbs {
      flex-direction: column;
      padding: 44px 8px;
      transform: translateY(0);
    }
    .lit-carousel--nav-left .lit-carousel-main-wrap {
      flex: 1;
      width: auto;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav {
      flex-direction: column;
      padding: 10px 0;
    }

    /* ── NAV-RIGHT: thumbstrip on right, main image on left ── */
    .lit-carousel--nav-right {
      flex-direction: row-reverse;
      align-items: center;
    }
    .lit-carousel--nav-right .lit-carousel-thumbstrip {
      border-left: 1px solid #ddd;
      width: 90px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-self: stretch;
    }
    .lit-carousel--nav-right .lit-carousel-thumbs {
      flex-direction: column;
      padding: 44px 8px;
      transform: translateY(0);
    }
    .lit-carousel--nav-right .lit-carousel-main-wrap {
      flex: 1;
      width: auto;
    }
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav {
      flex-direction: column;
      padding: 10px 0;
    }

    /* Gradient fade at edges of thumbstrip — horizontal (top/bottom layouts) */
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 52px;
      pointer-events: none;
      z-index: 4;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before {
      left: 0;
    }
    .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after {
      right: 0;
    }
    /* Gradient fade — vertical (left/right layouts) */
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      height: 52px;
      pointer-events: none;
      z-index: 4;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before {
      top: 0;
    }
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after {
      bottom: 0;
    }

    /* :has() selectors — slide + thumb + nav visibility */
    .lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(1) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(2) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(3) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(4) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(5) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(6) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(7):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(7) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(8):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(8) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(9):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(9) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(10):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(10) { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-thumb:nth-of-type(1) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-thumb:nth-of-type(2) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-thumb:nth-of-type(3) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-thumb:nth-of-type(4) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-thumb:nth-of-type(5) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-thumb:nth-of-type(6) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(7):checked) .lit-carousel-thumb:nth-of-type(7) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(8):checked) .lit-carousel-thumb:nth-of-type(8) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(9):checked) .lit-carousel-thumb:nth-of-type(9) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(10):checked) .lit-carousel-thumb:nth-of-type(10) { border-color: #333; background: #f0f0f0; }
    .lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-nav--1 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-nav--2 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-nav--3 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-nav--4 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-nav--5 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-nav--6 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(7):checked) .lit-nav--7 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(8):checked) .lit-nav--8 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(9):checked) .lit-nav--9 { display: flex; }
    .lit-carousel--nav:has(input:nth-of-type(10):checked) .lit-nav--10 { display: flex; }

    /* ── Thumb count per breakpoint (data-attribute selectors) ── */
    .lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-carousel-thumb:nth-child(n+2) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-carousel-thumb:nth-child(n+3) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-carousel-thumb:nth-child(n+4) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-carousel-thumb:nth-child(n+5) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-carousel-thumb:nth-child(n+6) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-carousel-thumb:nth-child(n+7) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="7"] .lit-carousel-thumb:nth-child(n+8) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="8"] .lit-carousel-thumb:nth-child(n+9) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="9"] .lit-carousel-thumb:nth-child(n+10) { display: none !important; }
    .lit-product-carousel-nav[data-desktop-thumbs="10"] .lit-carousel-thumb:nth-child(n+11) { display: none !important; }
    @media (max-width: 1024px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(n+2) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(n+3) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(n+4) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(n+6) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(n+7) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="7"] .lit-carousel-thumb:nth-child(n+8) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="7"] .lit-carousel-thumb:nth-child(-n+7) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="8"] .lit-carousel-thumb:nth-child(n+9) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="8"] .lit-carousel-thumb:nth-child(-n+8) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="9"] .lit-carousel-thumb:nth-child(n+10) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="9"] .lit-carousel-thumb:nth-child(-n+9) { display: flex !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="10"] .lit-carousel-thumb:nth-child(n+11) { display: none !important; }
  .lit-product-carousel-nav[data-tablet-thumbs="10"] .lit-carousel-thumb:nth-child(-n+10) { display: flex !important; }
}
    @media (max-width: 768px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(n+2) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(n+3) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(n+5) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(n+6) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(n+7) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="7"] .lit-carousel-thumb:nth-child(n+8) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="7"] .lit-carousel-thumb:nth-child(-n+7) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="8"] .lit-carousel-thumb:nth-child(n+9) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="8"] .lit-carousel-thumb:nth-child(-n+8) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="9"] .lit-carousel-thumb:nth-child(n+10) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="9"] .lit-carousel-thumb:nth-child(-n+9) { display: flex !important; }
  .lit-product-carousel-nav[data-phone-thumbs="10"] .lit-carousel-thumb:nth-child(n+11) { display: none !important; }
  .lit-product-carousel-nav[data-phone-thumbs="10"] .lit-carousel-thumb:nth-child(-n+10) { display: flex !important; }
}

    /* ── Vertical thumbstrip: rotate arrows to point up/down ── */
    .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav-btn,
    .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav-btn {
      transform: rotate(90deg);
    }

    /* :has() selectors — thumb strip scroll by count (horizontal: top/bottom layouts) */
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-78px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-390px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(7):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-546px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
    .lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-390px); }
    .lit-product-carousel-nav[data-desktop-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
    .lit-product-carousel-nav[data-desktop-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-546px); }
    .lit-product-carousel-nav[data-desktop-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
    .lit-product-carousel-nav[data-desktop-thumbs="9"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
    @media (max-width: 992px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-78px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-390px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(7):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-546px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-390px); }
  .lit-product-carousel-nav[data-tablet-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-tablet-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-546px); }
  .lit-product-carousel-nav[data-tablet-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-tablet-thumbs="9"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
}
    @media (max-width: 600px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-78px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-390px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(7):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-546px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-156px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-312px); }
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-390px); }
  .lit-product-carousel-nav[data-phone-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-468px); }
  .lit-product-carousel-nav[data-phone-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-546px); }
  .lit-product-carousel-nav[data-phone-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-624px); }
  .lit-product-carousel-nav[data-phone-thumbs="9"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-702px); }
}

    /* :has() selectors — thumb strip scroll by count (vertical: left/right layouts) */
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-64px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-320px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-448px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
    .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
    .lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-320px); }
    .lit-product-carousel-nav[data-desktop-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
    .lit-product-carousel-nav[data-desktop-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-448px); }
    .lit-product-carousel-nav[data-desktop-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
    .lit-product-carousel-nav[data-desktop-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
.lit-product-carousel-nav[data-desktop-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
    @media (max-width: 992px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-64px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-320px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-448px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-320px); }
  .lit-product-carousel-nav[data-tablet-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-tablet-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-448px); }
  .lit-product-carousel-nav[data-tablet-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-tablet-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-tablet-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
}
    @media (max-width: 600px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-64px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-320px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-448px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-128px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-256px); }
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-320px); }
  .lit-product-carousel-nav[data-phone-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-384px); }
  .lit-product-carousel-nav[data-phone-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-448px); }
  .lit-product-carousel-nav[data-phone-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-512px); }
  .lit-product-carousel-nav[data-phone-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
  .lit-product-carousel-nav[data-phone-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-576px); }
}

    /* ── Collage Grid ── */
    .lit-collage-grid {
      display: grid;
      gap: 8px;
      width: 100%;
      box-sizing: border-box;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-flow: dense;
    }
    .lit-collage-img {
      width: 100%;
      height: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
    }
    .lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-collage-grid { grid-template-columns: repeat(1, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-collage-grid { grid-template-columns: repeat(2, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-collage-grid { grid-template-columns: repeat(3, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-collage-grid { grid-template-columns: repeat(4, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-collage-grid { grid-template-columns: repeat(5, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-collage-grid { grid-template-columns: repeat(6, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="7"] .lit-collage-grid { grid-template-columns: repeat(7, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="8"] .lit-collage-grid { grid-template-columns: repeat(8, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="9"] .lit-collage-grid { grid-template-columns: repeat(9, 1fr); }
    .lit-product-carousel-nav[data-desktop-thumbs="10"] .lit-collage-grid { grid-template-columns: repeat(10, 1fr); }
    @media (max-width: 1024px) {
  .lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-collage-grid { grid-template-columns: repeat(1, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-collage-grid { grid-template-columns: repeat(2, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-collage-grid { grid-template-columns: repeat(3, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-collage-grid { grid-template-columns: repeat(4, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-collage-grid { grid-template-columns: repeat(5, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-collage-grid { grid-template-columns: repeat(6, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="7"] .lit-collage-grid { grid-template-columns: repeat(7, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="8"] .lit-collage-grid { grid-template-columns: repeat(8, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="9"] .lit-collage-grid { grid-template-columns: repeat(9, 1fr); }
  .lit-product-carousel-nav[data-tablet-thumbs="10"] .lit-collage-grid { grid-template-columns: repeat(10, 1fr); }
}
    @media (max-width: 768px) {
  .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid { grid-template-columns: repeat(1, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="2"] .lit-collage-grid { grid-template-columns: repeat(2, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="3"] .lit-collage-grid { grid-template-columns: repeat(3, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="4"] .lit-collage-grid { grid-template-columns: repeat(4, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="5"] .lit-collage-grid { grid-template-columns: repeat(5, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="6"] .lit-collage-grid { grid-template-columns: repeat(6, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="7"] .lit-collage-grid { grid-template-columns: repeat(7, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="8"] .lit-collage-grid { grid-template-columns: repeat(8, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="9"] .lit-collage-grid { grid-template-columns: repeat(9, 1fr); }
  .lit-product-carousel-nav[data-phone-thumbs="10"] .lit-collage-grid { grid-template-columns: repeat(10, 1fr); }
}

    /* ── Collage Arrangements ── */
    /* Spotlight: first image is hero (2×2). Falls back to plain grid if <2 columns. */
    .lit-collage-grid.lit-collage--spotlight > :first-child {
      grid-column: span 2;
      grid-row: span 2;
    }
    /* Featured Top: first image spans full row at top with banner aspect-ratio */
    .lit-collage-grid.lit-collage--featured-top > :first-child {
      grid-column: 1 / -1;
      aspect-ratio: 16 / 7;
    }
    /* Phone (1 column): all arrangements degrade to uniform single-column grid */
    @media (max-width: 768px) {
      .lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid > :first-child {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
      }
    }
  
* { box-sizing: border-box; } body {margin: 0;}.lit-carousel input[type="radio"]{display:none;}.lit-carousel-slide{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);mix-blend-mode:normal;}.lit-carousel-slide img{padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px;}.lit-carousel-thumb{border-top-width:1.5px;border-right-width:1.5px;border-bottom-width:1.5px;border-left-width:1.5px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(204, 204, 204);border-right-color:rgb(204, 204, 204);border-bottom-color:rgb(204, 204, 204);border-left-color:rgb(204, 204, 204);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);transition-behavior:normal;transition-duration:0.2s;transition-timing-function:ease;transition-delay:0s;transition-property:border-color;}.lit-carousel-thumb:hover{border-top-color:rgb(42, 42, 42);border-right-color:rgb(42, 42, 42);border-bottom-color:rgb(42, 42, 42);border-left-color:rgb(42, 42, 42);}.lit-carousel-thumb img{object-fit:contain;}.lit-carousel-thumbs::-webkit-scrollbar{display:none;}.lit-carousel-thumbs{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(250, 250, 250);}.lit-product-carousel-nav{display:block;width:100%;max-width:800px;box-sizing:border-box;min-width:0px;}.lit-carousel--nav{display:flex;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(221, 221, 221);border-right-color:rgb(221, 221, 221);border-bottom-color:rgb(221, 221, 221);border-left-color:rgb(221, 221, 221);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;width:100%;box-sizing:border-box;min-width:0px;}.lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right)) .lit-carousel-thumbstrip .lit-carousel-thumbs{max-width:100%;overflow-x:hidden;overflow-y:hidden;}.lit-carousel--nav .lit-carousel-thumbstrip{position:relative;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(250, 250, 250);overflow-x:hidden;overflow-y:hidden;}.lit-carousel--nav .lit-carousel-thumbs{display:flex;row-gap:6px;column-gap:6px;flex-shrink:0;flex-wrap:nowrap;transition-behavior:normal;transition-duration:0.3s;transition-timing-function:ease;transition-delay:0s;transition-property:transform;}.lit-carousel--nav .lit-carousel-thumb{width:72px;height:58px;flex-shrink:0;}.lit-carousel--nav .lit-carousel-main-wrap{position:relative;}.lit-carousel--nav .lit-carousel-main{width:100%;aspect-ratio:1 / 1;flex-shrink:0;overflow-x:hidden;overflow-y:hidden;position:relative;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);}.lit-carousel--nav .lit-nav{display:none;position:absolute;top:0px;right:0px;bottom:0px;left:0px;align-items:center;justify-content:space-between;pointer-events:none;z-index:5;}.lit-carousel--nav .lit-carousel-main-wrap .lit-nav{padding-top:0px;padding-right:12px;padding-bottom:0px;padding-left:12px;}.lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn{width:34px;height:34px;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(255, 255, 255, 0.82);color:rgb(34, 34, 34);font-size:13px;border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;box-shadow:rgba(0, 0, 0, 0.18) 0px 2px 8px;backdrop-filter:blur(4px);flex-shrink:0;}.lit-carousel--nav .lit-carousel-main-wrap .lit-nav-btn:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);box-shadow:rgba(0, 0, 0, 0.26) 0px 3px 12px;}.lit-nav-btn{pointer-events:all;display:flex;align-items:center;justify-content:center;width:28px;height:28px;flex-shrink:0;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(224, 224, 224);border-right-color:rgb(224, 224, 224);border-bottom-color:rgb(224, 224, 224);border-left-color:rgb(224, 224, 224);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;box-shadow:rgba(0, 0, 0, 0.13) 0px 1px 5px;cursor:pointer;font-size:11px;color:rgb(51, 51, 51);user-select:none;transition-behavior:normal, normal;transition-duration:0.15s, 0.15s;transition-timing-function:ease, ease;transition-delay:0s, 0s;transition-property:background, box-shadow;box-sizing:border-box;z-index:5;}.lit-nav-btn:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);box-shadow:rgba(0, 0, 0, 0.2) 0px 2px 8px;}.lit-carousel--nav-top{flex-direction:column;}.lit-carousel--nav-top .lit-carousel-thumbstrip{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);display:flex;justify-content:center;align-items:center;width:100%;min-width:0px;max-width:100%;box-sizing:border-box;}.lit-carousel--nav-top .lit-carousel-thumbs{flex-direction:row;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;transform:translateX(0px);}.lit-carousel--nav-top .lit-carousel-main-wrap{width:100%;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav{padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;}.lit-carousel--nav-bottom{flex-direction:column-reverse;}.lit-carousel--nav-bottom .lit-carousel-thumbstrip{border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);display:flex;justify-content:center;align-items:center;width:100%;min-width:0px;max-width:100%;box-sizing:border-box;}.lit-carousel--nav-bottom .lit-carousel-thumbs{flex-direction:row;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;transform:translateX(0px);}.lit-carousel--nav-bottom .lit-carousel-main-wrap{width:100%;}.lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav{padding-top:0px;padding-right:10px;padding-bottom:0px;padding-left:10px;}.lit-carousel--nav-left{flex-direction:row;align-items:center;}.lit-carousel--nav-left .lit-carousel-thumbstrip{border-right-width:1px;border-right-style:solid;border-right-color:rgb(221, 221, 221);width:90px;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:stretch;}.lit-carousel--nav-left .lit-carousel-thumbs{flex-direction:column;padding-top:44px;padding-right:8px;padding-bottom:44px;padding-left:8px;transform:translateY(0px);}.lit-carousel--nav-left .lit-carousel-main-wrap{flex-grow:1;flex-shrink:1;flex-basis:0%;width:auto;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav{flex-direction:column;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;}.lit-carousel--nav-right{flex-direction:row-reverse;align-items:center;}.lit-carousel--nav-right .lit-carousel-thumbstrip{border-left-width:1px;border-left-style:solid;border-left-color:rgb(221, 221, 221);width:90px;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;align-items:center;align-self:stretch;}.lit-carousel--nav-right .lit-carousel-thumbs{flex-direction:column;padding-top:44px;padding-right:8px;padding-bottom:44px;padding-left:8px;transform:translateY(0px);}.lit-carousel--nav-right .lit-carousel-main-wrap{flex-grow:1;flex-shrink:1;flex-basis:0%;width:auto;}.lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav{flex-direction:column;padding-top:10px;padding-right:0px;padding-bottom:10px;padding-left:0px;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after{content:"";position:absolute;top:0px;bottom:0px;width:52px;pointer-events:none;z-index:4;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::before{left:0px;}.lit-carousel--nav-top .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-bottom .lit-carousel-thumbstrip .lit-nav::after{right:0px;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after{content:"";position:absolute;left:0px;right:0px;height:52px;pointer-events:none;z-index:4;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::before, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::before{top:0px;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav::after, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav::after{bottom:0px;}.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(1){display:flex;}.lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(2){display:flex;}.lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(3){display:flex;}.lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(4){display:flex;}.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(5){display:flex;}.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(6){display:flex;}.lit-carousel--nav:has(input:nth-of-type(7):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(7){display:flex;}.lit-carousel--nav:has(input:nth-of-type(8):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(8){display:flex;}.lit-carousel--nav:has(input:nth-of-type(9):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(9){display:flex;}.lit-carousel--nav:has(input:nth-of-type(10):checked) .lit-carousel-main .lit-carousel-slide:nth-of-type(10){display:flex;}.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-carousel-thumb:nth-of-type(1){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-carousel-thumb:nth-of-type(2){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-carousel-thumb:nth-of-type(3){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-carousel-thumb:nth-of-type(4){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-carousel-thumb:nth-of-type(5){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-carousel-thumb:nth-of-type(6){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(7):checked) .lit-carousel-thumb:nth-of-type(7){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(8):checked) .lit-carousel-thumb:nth-of-type(8){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(9):checked) .lit-carousel-thumb:nth-of-type(9){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(10):checked) .lit-carousel-thumb:nth-of-type(10){border-top-color:rgb(51, 51, 51);border-right-color:rgb(51, 51, 51);border-bottom-color:rgb(51, 51, 51);border-left-color:rgb(51, 51, 51);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);}.lit-carousel--nav:has(input:nth-of-type(1):checked) .lit-nav--1{display:flex;}.lit-carousel--nav:has(input:nth-of-type(2):checked) .lit-nav--2{display:flex;}.lit-carousel--nav:has(input:nth-of-type(3):checked) .lit-nav--3{display:flex;}.lit-carousel--nav:has(input:nth-of-type(4):checked) .lit-nav--4{display:flex;}.lit-carousel--nav:has(input:nth-of-type(5):checked) .lit-nav--5{display:flex;}.lit-carousel--nav:has(input:nth-of-type(6):checked) .lit-nav--6{display:flex;}.lit-carousel--nav:has(input:nth-of-type(7):checked) .lit-nav--7{display:flex;}.lit-carousel--nav:has(input:nth-of-type(8):checked) .lit-nav--8{display:flex;}.lit-carousel--nav:has(input:nth-of-type(9):checked) .lit-nav--9{display:flex;}.lit-carousel--nav:has(input:nth-of-type(10):checked) .lit-nav--10{display:flex;}.lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="7"] .lit-carousel-thumb:nth-child(n+8){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="8"] .lit-carousel-thumb:nth-child(n+9){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="9"] .lit-carousel-thumb:nth-child(n+10){display:none !important;}.lit-product-carousel-nav[data-desktop-thumbs="10"] .lit-carousel-thumb:nth-child(n+11){display:none !important;}.lit-carousel--nav-left .lit-carousel-thumbstrip .lit-nav-btn, .lit-carousel--nav-right .lit-carousel-thumbstrip .lit-nav-btn{transform:rotate(90deg);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-78px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(7):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-546px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-desktop-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-desktop-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-546px);}.lit-product-carousel-nav[data-desktop-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-desktop-thumbs="9"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-64px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-448px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-desktop-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-desktop-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-448px);}.lit-product-carousel-nav[data-desktop-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-desktop-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-collage-grid{display:grid;row-gap:8px;column-gap:8px;width:100%;box-sizing:border-box;grid-template-columns:repeat(3, 1fr);grid-auto-flow:dense;}.lit-collage-img{width:100%;height:100%;aspect-ratio:1 / 1;object-fit:cover;display:block;}.lit-product-carousel-nav[data-desktop-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="7"] .lit-collage-grid{grid-template-columns:repeat(7, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="8"] .lit-collage-grid{grid-template-columns:repeat(8, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="9"] .lit-collage-grid{grid-template-columns:repeat(9, 1fr);}.lit-product-carousel-nav[data-desktop-thumbs="10"] .lit-collage-grid{grid-template-columns:repeat(10, 1fr);}.lit-collage-grid.lit-collage--spotlight > :first-child{grid-column-start:span 2;grid-column-end:auto;grid-row-start:span 2;grid-row-end:auto;}.lit-collage-grid.lit-collage--featured-top > :first-child{grid-column-start:1;grid-column-end:-1;aspect-ratio:16 / 7;}*{box-sizing:border-box;}body{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;font-size:14px;color:rgb(42, 42, 42);background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(245, 245, 245);line-height:1.55;}*, ::before, ::after{box-sizing:border-box;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}a{text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:inherit;}img{max-width:100%;display:block;}.util-bar{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(236, 236, 236);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(213, 213, 213);display:flex;justify-content:center;row-gap:28px;column-gap:28px;padding-top:8px;padding-right:20px;padding-bottom:8px;padding-left:20px;}.util-bar a{font-size:11px;font-weight:600;color:rgb(85, 85, 85);letter-spacing:0.04em;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:color;}.util-bar a:hover{color:rgb(42, 42, 42);}.logo-mark{margin-bottom:8px;}.store-logo{display:inline-flex;align-items:center;justify-content:center;position:relative;width:200px;height:90px;overflow-x:hidden;overflow-y:hidden;z-index:999;cursor:pointer;font-size:16px;font-weight:600;color:rgb(255, 255, 255);text-align:center;line-height:1.2;}.logo-wrap, [data-gjs-type="lit-store-logo"]{display:inline-flex;align-items:center;justify-content:center;position:relative;width:200px;height:90px;overflow-x:hidden;overflow-y:hidden;z-index:999;cursor:pointer;font-size:16px;font-weight:600;color:rgb(255, 255, 255);text-align:center;line-height:1.2;}.store-logo > img, .logo-wrap > img, [data-gjs-type="lit-store-logo"] > img, .store-logo .logo-img{width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;display:block;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}.logo-name{font-size:18px;font-weight:700;letter-spacing:0.18em;color:rgb(255, 255, 255);text-transform:uppercase;}.main-nav{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(90, 90, 90);display:flex;justify-content:center;row-gap:0px;column-gap:0px;}.main-nav a{display:block;padding-top:12px;padding-right:18px;padding-bottom:12px;padding-left:18px;font-size:11px;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;color:rgba(255, 255, 255, 0.7);border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;margin-bottom:-2px;transition-behavior:normal, normal;transition-duration:0.15s, 0.15s;transition-timing-function:ease, ease;transition-delay:0s, 0s;transition-property:color, border-color;}.main-nav a:hover{color:rgb(255, 255, 255);}.main-nav a.active{color:rgb(255, 255, 255);border-bottom-color:rgb(255, 255, 255);}.hero{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(42, 42, 42);min-height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding-top:52px;padding-right:36px;padding-bottom:52px;padding-left:36px;}.hero .logo-name{margin-bottom:12px;}.hero .store-desc{font-size:13px;line-height:1.7;color:rgba(255, 255, 255, 0.78);font-weight:400;max-width:560px;margin-top:0px;margin-right:auto;margin-bottom:0px;margin-left:auto;}.perks-bar{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);display:flex;justify-content:center;row-gap:0px;column-gap:0px;}.perk{display:flex;align-items:center;row-gap:10px;column-gap:10px;padding-top:14px;padding-right:26px;padding-bottom:14px;padding-left:26px;flex-grow:1;flex-shrink:1;flex-basis:0%;max-width:240px;}.perk-icon{width:32px;height:32px;flex-shrink:0;display:flex;align-items:center;justify-content:center;cursor:pointer;}.perk-icon :is(img, svg){width:32px;height:32px;display:block;}.perk-text .title{font-size:12px;font-weight:700;color:rgb(42, 42, 42);letter-spacing:0.03em;line-height:1.2;}.perk-text .sub{font-size:10.5px;color:rgb(102, 102, 102);font-weight:400;margin-top:2px;}.product-section{max-width:900px;margin-top:24px;margin-right:auto;margin-bottom:24px;margin-left:auto;display:flex;row-gap:0px;column-gap:0px;align-items:flex-start;}.product-img-col{flex-grow:1;flex-shrink:1;flex-basis:0px;min-width:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}.product-section > .bc-rl-col{min-height:0px;}.bc-rl-handle{flex-grow:0;flex-shrink:0;flex-basis:0px;align-self:stretch;position:relative;}.bc-rl-handle::before{content:"";position:absolute;top:0px;bottom:0px;left:-8px;width:16px;cursor:col-resize;}.bc-rl-handle::after{content:"";position:absolute;top:10%;left:50%;transform:translateX(-50%);width:2px;height:80%;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:transparent;pointer-events:none;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:background;}.bc-rl-handle.rl-resizing::after, .bc-rl-handle:hover::after{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgba(42, 42, 42, 0.5);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-desktop-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-carousel-main{height:320px;aspect-ratio:unset;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(244, 244, 244);}.product-info-col{flex-grow:1;flex-shrink:1;flex-basis:0px;min-width:0px;padding-top:12px;padding-right:12px;padding-bottom:12px;padding-left:12px;}.product-info-col h2{font-size:18px;font-weight:700;color:rgb(42, 42, 42);line-height:1.4;margin-bottom:16px;letter-spacing:-0.01em;}.product-price{font-size:22px;font-weight:700;color:rgb(42, 42, 42);margin-bottom:20px;}.item-desc-title{font-size:12px;font-weight:700;color:rgb(42, 42, 42);margin-bottom:12px;padding-bottom:8px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);text-transform:uppercase;letter-spacing:0.06em;}.item-desc-body p{font-size:13px;line-height:1.75;color:rgb(85, 85, 85);font-weight:400;margin-bottom:10px;}.tabs-wrap{max-width:900px;margin-top:0px;margin-right:auto;margin-bottom:36px;margin-left:auto;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;}.tab-frame > input[type="radio"]{display:none;}.tab-headers{display:flex;border-top-width:1px;border-right-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-left-style:solid;border-top-color:rgb(221, 221, 221);border-right-color:rgb(221, 221, 221);border-left-color:rgb(221, 221, 221);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-bottom-width:medium;border-bottom-style:none;border-bottom-color:currentcolor;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;overflow-x:hidden;overflow-y:hidden;}.tab-headers label{flex-grow:1;flex-shrink:1;flex-basis:0%;display:block;padding-top:12px;padding-right:10px;padding-bottom:12px;padding-left:10px;text-align:center;font-size:11px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;color:rgb(85, 85, 85);cursor:pointer;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(250, 250, 250);border-right-width:1px;border-right-style:solid;border-right-color:rgb(221, 221, 221);transition-behavior:normal, normal;transition-duration:0.15s, 0.15s;transition-timing-function:ease, ease;transition-delay:0s, 0s;transition-property:background, color;user-select:none;}.tab-headers label:last-child{border-right-width:medium;border-right-style:none;border-right-color:currentcolor;}.tab-headers label:hover{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(240, 240, 240);color:rgb(42, 42, 42);}.tab-contents{border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(221, 221, 221);border-right-color:rgb(221, 221, 221);border-bottom-color:rgb(221, 221, 221);border-left-color:rgb(221, 221, 221);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;}.tab-content{display:none;padding-top:18px;padding-right:20px;padding-bottom:18px;padding-left:20px;font-size:13px;line-height:1.75;color:rgb(85, 85, 85);font-weight:400;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);}.tab-frame > input#itab1:checked ~ .tab-headers label[for="itab1"], .tab-frame > input#itab2:checked ~ .tab-headers label[for="itab2"], .tab-frame > input#itab3:checked ~ .tab-headers label[for="itab3"], .tab-frame > input#itab4:checked ~ .tab-headers label[for="itab4"], .tab-frame > input#itab5:checked ~ .tab-headers label[for="itab5"]{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(42, 42, 42);color:rgb(255, 255, 255);}.tab-frame > input#itab1:checked ~ .tab-contents .tab-content:nth-child(1), .tab-frame > input#itab2:checked ~ .tab-contents .tab-content:nth-child(2), .tab-frame > input#itab3:checked ~ .tab-contents .tab-content:nth-child(3), .tab-frame > input#itab4:checked ~ .tab-contents .tab-content:nth-child(4), .tab-frame > input#itab5:checked ~ .tab-contents .tab-content:nth-child(5){display:block;}.ymyl-section{max-width:900px;margin-top:0px;margin-right:auto;margin-bottom:40px;margin-left:auto;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;}.section-title{font-size:18px;font-weight:700;color:rgb(42, 42, 42);text-align:center;letter-spacing:0.12em;text-transform:uppercase;margin-bottom:22px;}.ymyl-grid{display:grid;grid-template-columns:repeat(4, 1fr);row-gap:16px;column-gap:16px;}.ymyl-card{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(229, 229, 229);border-right-color:rgb(229, 229, 229);border-bottom-color:rgb(229, 229, 229);border-left-color:rgb(229, 229, 229);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;padding-top:14px;padding-right:14px;padding-bottom:14px;padding-left:14px;text-align:center;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:border-color;}.ymyl-card:hover{border-top-color:rgb(42, 42, 42);border-right-color:rgb(42, 42, 42);border-bottom-color:rgb(42, 42, 42);border-left-color:rgb(42, 42, 42);}.ymyl-img{aspect-ratio:1 / 1;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(250, 250, 250);margin-bottom:10px;display:flex;align-items:center;justify-content:center;overflow-x:hidden;overflow-y:hidden;}.ymyl-img img{width:100%;height:100%;object-fit:cover;}.ymyl-desc{font-size:12px;line-height:1.55;color:rgb(85, 85, 85);font-weight:400;margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow-x:hidden;overflow-y:hidden;height:36px;}.ymyl-price{font-size:14px;font-weight:700;color:rgb(42, 42, 42);letter-spacing:0.02em;}.footer-nav{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(250, 250, 250);border-top-width:1px;border-top-style:solid;border-top-color:rgb(221, 221, 221);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(221, 221, 221);display:flex;justify-content:center;row-gap:22px;column-gap:22px;padding-top:14px;padding-right:20px;padding-bottom:14px;padding-left:20px;flex-wrap:wrap;}.footer-nav a{font-size:11px;font-weight:600;color:rgb(85, 85, 85);letter-spacing:0.04em;display:inline-flex;align-items:center;row-gap:6px;column-gap:6px;transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:color;}.footer-nav a:hover{color:rgb(42, 42, 42);}.fn-dot{width:4px;height:4px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(153, 153, 153);border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;display:inline-block;}.site-footer{background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(42, 42, 42);text-align:center;padding-top:28px;padding-right:20px;padding-bottom:22px;padding-left:20px;}.footer-logo-mark{margin-bottom:4px;}.footer-logo-name{display:block;font-size:13px;font-weight:600;color:rgb(255, 255, 255);letter-spacing:0.18em;text-transform:uppercase;margin-bottom:16px;}.pay-row{display:flex;justify-content:center;align-items:center;row-gap:10px;column-gap:10px;flex-wrap:wrap;}.pay-icon{height:24px;width:auto;object-fit:contain;display:block;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;padding-top:4px;padding-right:8px;padding-bottom:4px;padding-left:8px;box-sizing:content-box;}.powered-by{display:block;width:fit-content;margin-top:12px;margin-right:auto;margin-bottom:0px;margin-left:auto;font-size:9px;color:rgb(170, 170, 170);font-weight:400;letter-spacing:0.02em;padding-right:125px;background-image:url("https://litcommerce.com/wp-content/uploads/2025/10/LitC-Logo_240x55.svg");background-position-x:right;background-position-y:center;background-repeat:no-repeat;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:initial;background-size:120px auto;line-height:27px;}.lit-carousel-main-image{background-color:rgb(255, 255, 255);mix-blend-mode:normal;}.bc-row{display:flex;flex-wrap:wrap;width:100%;box-sizing:border-box;row-gap:16px;column-gap:16px;}.bc-col{flex-grow:1;flex-shrink:1;flex-basis:0%;min-width:0px;box-sizing:border-box;}.bc-btn{display:inline-block;padding-top:10px;padding-right:24px;padding-bottom:10px;padding-left:24px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(37, 99, 235);color:rgb(255, 255, 255);border-top-width:medium;border-right-width:medium;border-bottom-width:medium;border-left-width:medium;border-top-style:none;border-right-style:none;border-bottom-style:none;border-left-style:none;border-top-color:currentcolor;border-right-color:currentcolor;border-bottom-color:currentcolor;border-left-color:currentcolor;border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:14px;font-weight:600;cursor:pointer;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;line-height:1.4;}.bc-btn:hover{opacity:0.88;}.bc-link{color:rgb(37, 99, 235);text-decoration-line:underline;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;}.bc-input{width:100%;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(209, 213, 219);border-right-color:rgb(209, 213, 219);border-bottom-color:rgb(209, 213, 219);border-left-color:rgb(209, 213, 219);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);color:rgb(17, 17, 17);box-sizing:border-box;}.bc-select{width:100%;padding-top:8px;padding-right:12px;padding-bottom:8px;padding-left:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(209, 213, 219);border-right-color:rgb(209, 213, 219);border-bottom-color:rgb(209, 213, 219);border-left-color:rgb(209, 213, 219);border-image-source:none;border-image-slice:100%;border-image-width:1;border-image-outset:0;border-image-repeat:stretch;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:14px;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(255, 255, 255);color:rgb(17, 17, 17);box-sizing:border-box;}.bc-textarea{resize:vertical;min-height:80px;}.bc-label{display:block;font-size:13px;font-weight:500;color:rgb(55, 65, 81);margin-bottom:4px;}.bc-form{display:flex;flex-direction:column;row-gap:12px;column-gap:12px;}.bc-container{width:1140px;max-width:100%;margin-left:auto;margin-right:auto;padding-left:16px;padding-right:16px;box-sizing:border-box;}.lit-promo-card{text-align:center;font-family:inherit;box-sizing:border-box;cursor:pointer;text-decoration-line:none;text-decoration-thickness:initial;text-decoration-style:initial;text-decoration-color:initial;color:inherit;}.lit-promo-card *{pointer-events:none;}.promo-grid{display:grid;grid-template-columns:repeat(4, 1fr);row-gap:14px;column-gap:14px;}.promo-card{text-align:center;display:flex;flex-direction:column;}.promo-img{width:100%;aspect-ratio:1 / 1;background-image:initial;background-position-x:initial;background-position-y:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;background-color:rgb(244, 244, 240);margin-bottom:8px;display:flex;align-items:center;justify-content:center;overflow-x:hidden;overflow-y:hidden;}.promo-img img{width:100%;height:100%;object-fit:cover;display:block;}.promo-desc{font-size:13px;color:rgb(136, 136, 136);line-height:1.6;margin-bottom:5px;font-weight:300;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow-x:hidden;overflow-y:hidden;word-break:break-word;}.promo-price{font-size:20px;font-weight:700;color:rgb(51, 51, 51);margin-top:auto;}.litc-export-only{display:none;}#izl1{background:#db650c;color:#fff;text-align:center;padding:5px 12px;}#ilrm{max-width:100%;height:auto;max-height:60px;}#i57d{display:flex;justify-content:center;margin-bottom:12px;}#ixrv5{color:#000;text-decoration:none;}#i6t8k{color:#000;text-decoration:none;}#iopcf{color:#000;text-decoration:none;}#i7e3z{color:#000;text-decoration:none;}#i8rqj{color:#000;text-decoration:none;}#iuzfv{color:#000;text-decoration:none;}#i667j{color:#000;text-decoration:none;}#i5h4o{display:flex;flex-wrap:wrap;gap:12px 28px;}#i1l33{color:#5c6570;text-decoration:none;}#ipzol{color:#5c6570;text-decoration:none;}#io2qf{padding-right:8px;color:#db650c;display:flex;align-items:center;}#ij6lz{background:#db650c;color:#fff;padding:5px 13px;border-radius:5px;text-decoration:none;font-weight:700;display:flex;align-items:center;}#io4sb{display:flex;flex-wrap:wrap;gap:16px;align-items:center;}#i4lu{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px 24px;padding:0 12px 10px;}#iejk{background:#f4f5f6;padding:14px 28px 0;}#imvzk{color:#db650c;display:flex;align-items:center;}#il17i{display:flex;gap:12px;min-width:190px;}#iympg{color:#db650c;display:flex;align-items:center;}#iwtvr{display:flex;gap:12px;min-width:190px;}#i3aoi{color:#db650c;display:flex;align-items:center;}#ix0f1{display:flex;gap:12px;min-width:190px;}#i5mkh{color:#db650c;display:flex;align-items:center;}#itlu7{display:flex;gap:12px;min-width:190px;}#i80e4{display:flex;flex-wrap:wrap;justify-content:space-around;gap:16px;border-top:1px solid #d8dce0;padding:14px 28px;}#irjll{order:1!important;border:1px solid #d5d9dd;border-radius:5px;text-align:center;min-height:800px;display:flex;align-items:center;justify-content:center;}#ikxku{background:#db650c;color:#fff;padding:10px 14px;font-weight:700;font-size:15px;}#izmnb{margin:0;}#ix5om{padding:16px 18px 18px;color:#333;line-height:1.65;box-sizing:border-box;}#i55u4{margin:0;padding:0;}#ie6wu{width:100%;border:1px solid #d7dadd;border-radius:6px;overflow:hidden;background:#fff;box-sizing:border-box;}#itjn4{margin:0;font-size:15px;font-weight:700;color:#fff;}#i8e48{background:#db650c;color:#fff;padding:10px 14px;}#i8uhi{margin:0;}#iftrl{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#i8r6t{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ig7zi{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#ipgi1{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#i2o95c{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ituz4a{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i2cqtj{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#ik805j{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i5jpbf{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i9nvxc{display:flex;flex-wrap:wrap;}#io76e4{margin:0;font-size:15px;font-weight:700;color:#fff;}#icm59j{background:#db650c;color:#fff;padding:10px 14px;}#is2fu6{margin:0;}#ias9lz{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#iby6ce{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i1s5op{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#irz9gy{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#idbg7i{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i6yl0q{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#iux84j{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#ir721g{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i092rs{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i09gto{display:flex;flex-wrap:wrap;}#iq6rfu{margin:0;font-size:15px;font-weight:700;color:#fff;}#ik3d9j{background:#db650c;color:#fff;padding:10px 14px;}#ic96md{margin:0;}#ibsfzg{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#icgk1e{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ipiyov{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i3q93o{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#i4cdrb{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i8ke7x{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#ipfb2h{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#i1hrzq{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i8ftv6{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#ixz4nd{display:flex;flex-wrap:wrap;}#i0jz6p{margin:0;font-size:15px;font-weight:700;color:#fff;}#i232ev{background:#db650c;color:#fff;padding:10px 14px;}#ixwmxe{margin:0;}#i68yl2{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#iwkvt9{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i2n0at{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#iau6xo{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#ibmwsq{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#in1ix9{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i59vjd{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#i1997i{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ijub7k{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#idqeus{display:flex;flex-wrap:wrap;}#i3zph{border:1px solid #d7dadd;border-radius:6px;overflow:hidden;background:#fff;box-sizing:border-box;}#iu2gw{order:4!important;flex:1 1 460px;min-width:0;width:100%;box-sizing:border-box;}#iegiv{order:3!important;display:flex;flex-direction:column;gap:14px;padding-bottom:14px;box-sizing:border-box;margin-top:20px;}#ippfq{flex:1 1 460px;min-width:0;}#i789rm{background:#003a75;color:#fff;padding:5px 8px;font-weight:700;}#i02uvj{background:#237400;color:#fff;padding:5px 8px;font-weight:700;}#igghhg{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#izh7bb{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#ii3oc9{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#isygsh{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#iruyiw{display:flex;flex-wrap:wrap;gap:3px;margin:14px 0;}#i9fkor{margin:10px 0;}#iy1pph{margin:10px 0 12px;}#ia78uh{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#i9s4nm{text-align:right;}#im00jl{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#i8ins3{text-align:right;}#irmhrm{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#i4rk2k{text-align:right;}#ius9gv{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#ie1imb{text-align:right;}#iklr2t{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#ijf19i{text-align:right;}#ixbw5n{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#iidnmx{text-align:right;}#iq9e5s{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;}#iydgxe{border-top:1px solid #c9cdd0;border-bottom:1px solid #c9cdd0;margin-bottom:20px;}#ixmihl{font-size:15px;font-weight:700;color:#6f5b16;margin-bottom:8px;}#ilnc0e{margin:0;color:#4f4a32;line-height:1.5;}#ii2fny{background:#fff9d6;border:1px solid #e8d98a;border-left:5px solid #d6b84a;border-radius:5px;padding:14px 16px;margin-bottom:20px;box-sizing:border-box;}#i98gdm{background:#db650c;color:#fff;padding:7px;font-weight:700;}#ip08dj{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#ipiba1{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#i4qdcr{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#i68q38{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#i1hqpi{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;text-align:center;}#iiwaxa{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#io3zg4{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#ivzheu{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#ir25dd{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#ie2skn{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;text-align:center;}#izyj1f{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#i1sj8z{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#idqve3{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;text-align:center;}#i41g6c{padding:8px;}#irsjox{border:1px solid #d3d6d8;border-radius:4px;overflow:hidden;}#ipb0va{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#imtma1{margin-bottom:15px;}#i2xg72{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ib1sbj{margin-bottom:15px;}#igxlea{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ixrkhh{margin-bottom:15px;}#i8if4k{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i31whl{margin-bottom:15px;}#ix9jnl{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ig1w4b{margin-bottom:15px;}#idjuqq{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iu1d5y{margin-bottom:15px;}#i9v1zw{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i2sigl{margin-bottom:15px;}#iy0eju{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i93uwq{margin-bottom:15px;}#ilm4vj{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ifpx73{margin-bottom:15px;}#ire31z{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ib51x9{margin-bottom:15px;}#idahhj{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ivmond{margin-bottom:15px;}#i0ntai{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#isa5i8{margin-bottom:15px;}#i5jqmm{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iipfzy{margin-bottom:15px;}#ibg7oy{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iqnc2e{margin-bottom:15px;}#inlncl{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#im7idh{margin-bottom:15px;}#i743as{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ippszv{margin-bottom:15px;}#i1hdnf{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#isg34t{margin-bottom:15px;}#i9p75g{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iktikk{margin-bottom:15px;}#i283tp{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#izrvrf{margin-bottom:15px;}#ideubf{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i7y845{margin-bottom:15px;}#iq62cf{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i81qcp{margin-bottom:15px;}#ivicsy{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ixog1v{margin-bottom:15px;}#i7z7e4{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ipfvrx{margin-bottom:15px;}#iyqquk{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i2ycpo{margin-bottom:15px;}#ibnx6l{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ibz5s2{margin-bottom:15px;}#in62d9{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i0lhzh{margin-bottom:15px;}#iqywd6{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iql25l{margin-bottom:15px;}#isvull{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iq7mdk{margin-bottom:15px;}#i8wgpg{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ixvi6g{margin-bottom:15px;}#i1qy1h{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i7ryjk{margin-bottom:15px;}#ielvel{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i34ixp{margin-bottom:15px;}#i47bbh{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i0o87q{margin-bottom:15px;}#i3ptfl{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#if3bjq{margin-bottom:15px;}#iuix0g{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ii8nah{margin-bottom:15px;}#ihg5ps{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#if9g7w{margin-bottom:15px;}#i8usz2{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i0k1mn{margin-bottom:15px;}#iux58n{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#in18yf{margin-bottom:15px;}#i4664g{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ikzf9i{margin-bottom:15px;}#i8he7l{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ihg6sp{margin-bottom:15px;}#ifcykn{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#if8y9b{margin-bottom:15px;}#i10evb{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i73ihj{margin-bottom:15px;}#i18w9k{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#izau0a{margin-bottom:15px;}#is5ykb{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#imlfgl{margin-bottom:15px;}#i7jycg{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#id8h1j{margin-bottom:15px;}#iihl91{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ij0jz6{margin-bottom:15px;}#ipruyc{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iak6a9{margin-bottom:15px;}#ihe15p{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iko5q3{margin-bottom:15px;}#ifzqqm{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#irpc1p{margin-bottom:15px;}#ivqcgu{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iookuw{margin-bottom:15px;}#io097k{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ik46ax{margin-bottom:15px;}#irwszk{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iw1g0y{margin-bottom:15px;}#iiyho2{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#il9yof{margin-bottom:15px;}#id7emi{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#izymav{margin-bottom:15px;}#iaigti{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ixd4nb{margin-bottom:15px;}#ipxy2v{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i0vibg{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i7ghgo{margin-bottom:15px;}#imyql1{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i645bn{margin-bottom:15px;}#ivbbx2{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iqixtu{margin-bottom:15px;}#im7sso{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i2h73t{margin-bottom:15px;}#i7scqj{display:flex;flex-wrap:wrap;gap:5px;border-top:1px solid #c9cdd0;padding-top:14px;margin-top:12px;}#ijgpyy{order:2!important;flex:1 1 460px;min-width:0;padding-left:18px;box-sizing:border-box;}#ike52{display:flex;flex-wrap:wrap;gap:20px;padding:12px 28px 0;padding-bottom:20px;align-items:flex-start;border-top:1px solid #d8dce0;border-bottom:1px solid #d8dce0;}#iy41va{display:inline;color:#dc5e08;}#iz1fl4{margin:0 0 27px;font-weight:700;font-size:30px;}#ii5mh8{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#ik1nc8{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#indvx2{margin-bottom:6px;font-weight:700;}#ibf54k{max-width:335px;color:#555c65;}#imzxcy{margin-bottom:6px;font-weight:700;}#ibx0jh{max-width:335px;color:#555c65;}#id8kbb{margin-bottom:6px;font-weight:700;}#ic1ynm{max-width:335px;color:#555c65;}#ivc40f{margin-bottom:6px;font-weight:700;}#iiav3m{max-width:335px;color:#555c65;}#ig1j7d{margin-bottom:6px;font-weight:700;}#i2p4x6{max-width:335px;color:#555c65;}#iqjedl{margin-bottom:6px;font-weight:700;}#if8jps{max-width:335px;color:#555c65;}#irzry5{margin-bottom:6px;font-weight:700;}#i5zt5k{max-width:335px;color:#555c65;}#ii13b7{margin-bottom:6px;font-weight:700;}#iq1f2h{max-width:335px;color:#555c65;}#iudr58{margin-bottom:6px;font-weight:700;}#ifsc57{max-width:335px;color:#555c65;}#i6vk8i{margin-bottom:6px;font-weight:700;}#ivsesz{max-width:335px;color:#555c65;}#iuporb{margin-bottom:6px;font-weight:700;}#iibkfb{max-width:335px;color:#555c65;}#i5nj5j{margin-bottom:6px;font-weight:700;}#ivc7rc{max-width:335px;color:#555c65;}#iz2uu6{margin-bottom:6px;font-weight:700;}#izccrw{max-width:335px;color:#555c65;}#ieeyqi{margin-bottom:6px;font-weight:700;}#ib9zcu{max-width:335px;color:#555c65;}#i8wswh{margin-bottom:6px;font-weight:700;}#icy1bj{max-width:335px;color:#555c65;}#iko5ul{margin-bottom:6px;font-weight:700;}#ipswqi{max-width:335px;color:#555c65;}#i0cbjc{margin-bottom:6px;font-weight:700;}#iyfuha{max-width:335px;color:#555c65;}#iid91m{margin-bottom:6px;font-weight:700;}#i0x4xf{max-width:335px;color:#555c65;}#i0otb1{margin-bottom:6px;font-weight:700;}#i74e4s{max-width:335px;color:#555c65;}#ivy5ks{margin-bottom:6px;font-weight:700;}#i6d8qt{max-width:335px;color:#555c65;}#ik8qas{margin-bottom:6px;font-weight:700;}#ibm6pg{max-width:335px;color:#555c65;}#ivpefx{margin-bottom:6px;font-weight:700;}#ixk5xo{max-width:335px;color:#555c65;}#i1cyx7{margin-bottom:6px;font-weight:700;}#isrkmv{max-width:335px;color:#555c65;}#iv50ny{margin-bottom:6px;font-weight:700;}#i8mhch{max-width:335px;color:#555c65;}#iqx5an{margin-bottom:6px;font-weight:700;}#iks5r6{max-width:335px;color:#555c65;}#iuxwhy{margin-bottom:6px;font-weight:700;}#ic7t6k{max-width:335px;color:#555c65;}#iptmur{margin-bottom:6px;font-weight:700;}#icoqdz{max-width:335px;color:#555c65;}#ijqkfj{margin-bottom:6px;font-weight:700;}#ipwc7g{max-width:335px;color:#555c65;}#ijffsf{margin-bottom:6px;font-weight:700;}#ijaqf5{max-width:335px;color:#555c65;}#iuq0pj{margin-bottom:6px;font-weight:700;}#i78cuj{max-width:335px;color:#555c65;}#i2v92i{margin-bottom:6px;font-weight:700;}#ic2rmk{max-width:335px;color:#555c65;}#i2qxlj{margin-bottom:6px;font-weight:700;}#ilr626{max-width:335px;color:#555c65;}#i9xnu4{margin-bottom:6px;font-weight:700;}#i3upsj{max-width:335px;color:#555c65;}#ix0r9v{margin-bottom:6px;font-weight:700;}#ifka3m{max-width:335px;color:#555c65;}#isqes6{margin-bottom:6px;font-weight:700;}#i3gtho{max-width:335px;color:#555c65;}#ig6m6j{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#i5kfmi{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i2rl49{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#ie71d9{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#iw55x2{margin-bottom:6px;font-weight:700;}#idib3j{max-width:335px;color:#555c65;}#iawftg{margin-bottom:6px;font-weight:700;}#ixcqze{max-width:335px;color:#555c65;}#i8pjyf{margin-bottom:6px;font-weight:700;}#ilk8df{max-width:335px;color:#555c65;}#i42p2v{margin-bottom:6px;font-weight:700;}#iejnf2{max-width:335px;color:#555c65;}#iz1hhr{margin-bottom:6px;font-weight:700;}#ifgt4g{max-width:335px;color:#555c65;}#i5fn57{margin-bottom:6px;font-weight:700;}#ixupsw{max-width:335px;color:#555c65;}#i7p4ug{margin-bottom:6px;font-weight:700;}#idgz9f{max-width:335px;color:#555c65;}#i227g6{margin-bottom:6px;font-weight:700;}#ihifp3{max-width:335px;color:#555c65;}#idmok7{margin-bottom:6px;font-weight:700;}#iqlp08{max-width:335px;color:#555c65;}#ijnz4l{margin-bottom:6px;font-weight:700;}#iq1f98{max-width:335px;color:#555c65;}#ipklbh{margin-bottom:6px;font-weight:700;}#ie5m4i{max-width:335px;color:#555c65;}#izc9vx{margin-bottom:6px;font-weight:700;}#iiimjd{max-width:335px;color:#555c65;}#izm293{margin-bottom:6px;font-weight:700;}#it6ou1{max-width:335px;color:#555c65;}#ioddl8{margin-bottom:6px;font-weight:700;}#i7igf3{max-width:335px;color:#555c65;}#ij4dxe{margin-bottom:6px;font-weight:700;}#iiml6g{max-width:335px;color:#555c65;}#ijmcxk{margin-bottom:6px;font-weight:700;}#i3asnp{max-width:335px;color:#555c65;}#irt2bj{margin-bottom:6px;font-weight:700;}#i5n2xd{max-width:335px;color:#555c65;}#iozsxp{margin-bottom:6px;font-weight:700;}#iq967r{max-width:335px;color:#555c65;}#iuud6l{margin-bottom:6px;font-weight:700;}#iw6qji{max-width:335px;color:#555c65;}#itvuth{margin-bottom:6px;font-weight:700;}#ib27f9{max-width:335px;color:#555c65;}#ietbyj{margin-bottom:6px;font-weight:700;}#iyukej{max-width:335px;color:#555c65;}#ic486c{margin-bottom:6px;font-weight:700;}#iyvx5i{max-width:335px;color:#555c65;}#i4x4dx{margin-bottom:6px;font-weight:700;}#i7pxgj{max-width:335px;color:#555c65;}#iwxqiv{margin-bottom:6px;font-weight:700;}#i5clti{max-width:335px;color:#555c65;}#ilbqmz{margin-bottom:6px;font-weight:700;}#iadihs{max-width:335px;color:#555c65;}#it6iyw{margin-bottom:6px;font-weight:700;}#ih9w97{max-width:335px;color:#555c65;}#igfg4d{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#igbbtg{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i6ktrh{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#iqg3rt{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#i4gxyf{margin-bottom:6px;font-weight:700;}#ivmqe3{max-width:335px;color:#555c65;}#ieft0h{margin-bottom:6px;font-weight:700;}#iv2qzp{max-width:335px;color:#555c65;}#iblcwm{margin-bottom:6px;font-weight:700;}#ipc2av{max-width:335px;color:#555c65;}#io227k{margin-bottom:6px;font-weight:700;}#iyd4ww{max-width:335px;color:#555c65;}#ioro3n{margin-bottom:6px;font-weight:700;}#irac4q{max-width:335px;color:#555c65;}#ixvpow{margin-bottom:6px;font-weight:700;}#i5q8ry{max-width:335px;color:#555c65;}#i6a5o6{margin-bottom:6px;font-weight:700;}#il4p3u{max-width:335px;color:#555c65;}#iilwc7{margin-bottom:6px;font-weight:700;}#irhqdt{max-width:335px;color:#555c65;}#its2eg{margin-bottom:6px;font-weight:700;}#ik8mtt{max-width:335px;color:#555c65;}#iznga7z{margin-bottom:6px;font-weight:700;}#ipuh9xj{max-width:335px;color:#555c65;}#i64mxe2{margin-bottom:6px;font-weight:700;}#iekxk7a{max-width:335px;color:#555c65;}#ingc11h{margin-bottom:6px;font-weight:700;}#i0saz35{max-width:335px;color:#555c65;}#itm19n{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#igd3kq{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#ii1qdgi{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#idielow{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#izriwgg{margin-bottom:6px;font-weight:700;}#icjing5{max-width:335px;color:#555c65;}#if90o7j{margin-bottom:6px;font-weight:700;}#ijiejwo{max-width:335px;color:#555c65;}#id9nzi7{margin-bottom:6px;font-weight:700;}#iw6cs1j{max-width:335px;color:#555c65;}#i0se6ea{margin-bottom:6px;font-weight:700;}#iwj8lzj{max-width:335px;color:#555c65;}#icccjkh{margin-bottom:6px;font-weight:700;}#iwzq23i{max-width:335px;color:#555c65;}#icng0th{margin-bottom:6px;font-weight:700;}#iral9cg{max-width:335px;color:#555c65;}#i13jk8v{margin-bottom:6px;font-weight:700;}#iuiifso{max-width:335px;color:#555c65;}#ip3c38s{margin-bottom:6px;font-weight:700;}#i2t3h5h{max-width:335px;color:#555c65;}#imf3m22{margin-bottom:6px;font-weight:700;}#im1qwmh{max-width:335px;color:#555c65;}#ik1wiy1{margin-bottom:6px;font-weight:700;}#ifycjzv{max-width:335px;color:#555c65;}#inda36j{margin-bottom:6px;font-weight:700;}#i0z1jig{max-width:335px;color:#555c65;}#iam0gnm{margin-bottom:6px;font-weight:700;}#ixak1zu{max-width:335px;color:#555c65;}#i71mbal{margin-bottom:6px;font-weight:700;}#iuyzyvk{max-width:335px;color:#555c65;}#ivb8cjd{margin-bottom:6px;font-weight:700;}#izypmqu{max-width:335px;color:#555c65;}#is4mil6{margin-bottom:6px;font-weight:700;}#iym3xg5{max-width:335px;color:#555c65;}#iye203m{margin-bottom:6px;font-weight:700;}#i79tn1j{max-width:335px;color:#555c65;}#it56d7w{margin-bottom:6px;font-weight:700;}#il1afaq{max-width:335px;color:#555c65;}#iqh38bf{margin-bottom:6px;font-weight:700;}#ihtyg7p{max-width:335px;color:#555c65;}#iowcxr4{margin-bottom:6px;font-weight:700;}#if8inzl{max-width:335px;color:#555c65;}#iduj8nd{margin-bottom:6px;font-weight:700;}#i87wuqy{max-width:335px;color:#555c65;}#iju4q9t{margin-bottom:6px;font-weight:700;}#iertrls{max-width:335px;color:#555c65;}#ifxy3fh{margin-bottom:6px;font-weight:700;}#ij8992n{max-width:335px;color:#555c65;}#i08m316{margin-bottom:6px;font-weight:700;}#ier2gvg{max-width:335px;color:#555c65;}#imuddqx{margin-bottom:6px;font-weight:700;}#i1ky7uc{max-width:335px;color:#555c65;}#it8yrd5{margin-bottom:6px;font-weight:700;}#is6986i{max-width:335px;color:#555c65;}#iadni2u{margin-bottom:6px;font-weight:700;}#ifjgabl{max-width:335px;color:#555c65;}#i30zu5h{margin-bottom:6px;font-weight:700;}#ilb8mdh{max-width:335px;color:#555c65;}#inv3a8m{margin-bottom:6px;font-weight:700;}#i3uae3y{max-width:335px;color:#555c65;}#ikawgom{margin-bottom:6px;font-weight:700;}#ia4uczg{max-width:335px;color:#555c65;}#ioyjy08{margin-bottom:6px;font-weight:700;}#i7t6tsk{max-width:335px;color:#555c65;}#icnosnm{margin-bottom:6px;font-weight:700;}#i4gz8yq{max-width:335px;color:#555c65;}#ivce7xs{margin-bottom:6px;font-weight:700;}#idf03i4{max-width:335px;color:#555c65;}#i7jxjjf{margin-bottom:6px;font-weight:700;}#irnniof{max-width:335px;color:#555c65;}#ir8t5xe{margin-bottom:6px;font-weight:700;}#iplyvc8{max-width:335px;color:#555c65;}#ig50x34{margin-bottom:6px;font-weight:700;}#ie7c7u1{max-width:335px;color:#555c65;}#icj5qid{margin-bottom:6px;font-weight:700;}#iwbiy3n{max-width:335px;color:#555c65;}#i924cfj{margin-bottom:6px;font-weight:700;}#ip8xvyg{max-width:335px;color:#555c65;}#ilrk1kk{margin-bottom:6px;font-weight:700;}#ieosoeb{max-width:335px;color:#555c65;}#i86le3k{margin-bottom:6px;font-weight:700;}#ijmj5pr{max-width:335px;color:#555c65;}#ifwpjyv{margin-bottom:6px;font-weight:700;}#i4n5nzj{max-width:335px;color:#555c65;}#ik6p045{margin-bottom:6px;font-weight:700;}#ij4g4a8{max-width:335px;color:#555c65;}#i62obra{margin-bottom:6px;font-weight:700;}#iwm45y5{max-width:335px;color:#555c65;}#ixdtl51{margin-bottom:6px;font-weight:700;}#ivwi6yh{max-width:335px;color:#555c65;}#ip4nv1b{margin-bottom:6px;font-weight:700;}#idvzq61{max-width:335px;color:#555c65;}#ijeqd2q{margin-bottom:6px;font-weight:700;}#icrgk8m{max-width:335px;color:#555c65;}#i81reqq{margin-bottom:6px;font-weight:700;}#ilx9xex{max-width:335px;color:#555c65;}#ie0exuy{margin-bottom:6px;font-weight:700;}#i2ebh3m{max-width:335px;color:#555c65;}#i6mlier{margin-bottom:6px;font-weight:700;}#ir3lg7a{max-width:335px;color:#555c65;}#ijs91xk{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#i8mnh0t{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i1k444z{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#iy3t022{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#ivexcax{margin-bottom:6px;font-weight:700;}#ixiyh6f{max-width:335px;color:#555c65;}#idglu03{margin-bottom:6px;font-weight:700;}#iz1a7k9{max-width:335px;color:#555c65;}#ioe25ys{margin-bottom:6px;font-weight:700;}#i8817mf{max-width:335px;color:#555c65;}#icb5z4l{margin-bottom:6px;font-weight:700;}#i1bda5a{max-width:335px;color:#555c65;}#i8vtj2n{margin-bottom:6px;font-weight:700;}#ieqvu8e{max-width:335px;color:#555c65;}#iw9d2so{margin-bottom:6px;font-weight:700;}#iontlzm{max-width:335px;color:#555c65;}#ih8lxul{margin-bottom:6px;font-weight:700;}#ikk1d9v{max-width:335px;color:#555c65;}#iopjk7b{margin-bottom:6px;font-weight:700;}#iev8k39{max-width:335px;color:#555c65;}#ikwaoue{margin-bottom:6px;font-weight:700;}#il27w2y{max-width:335px;color:#555c65;}#ijhzmcl{margin-bottom:6px;font-weight:700;}#ifzioqh{max-width:335px;color:#555c65;}#ivgj8hi{margin-bottom:6px;font-weight:700;}#icg713g{max-width:335px;color:#555c65;}#i7bilwx{margin-bottom:6px;font-weight:700;}#itvb31y{max-width:335px;color:#555c65;}#i67fwft{margin-bottom:6px;font-weight:700;}#i3py3bk{max-width:335px;color:#555c65;}#iervyfz{margin-bottom:6px;font-weight:700;}#iisjofc{max-width:335px;color:#555c65;}#i9xoghp{margin-bottom:6px;font-weight:700;}#i9lnbdk{max-width:335px;color:#555c65;}#ieloi3g{margin-bottom:6px;font-weight:700;}#iowgcit{max-width:335px;color:#555c65;}#iq1gls7{margin-bottom:6px;font-weight:700;}#iwjm15s{max-width:335px;color:#555c65;}#ikeu3jf{margin-bottom:6px;font-weight:700;}#iusm6di{max-width:335px;color:#555c65;}#ihpmjgf{margin-bottom:6px;font-weight:700;}#i7kandv{max-width:335px;color:#555c65;}#i0oi7hg{margin-bottom:6px;font-weight:700;}#i7by2gk{max-width:335px;color:#555c65;}#iayt5go{margin-bottom:6px;font-weight:700;}#it3iei8{max-width:335px;color:#555c65;}#i1xe01z{margin-bottom:6px;font-weight:700;}#iqrdcm3{max-width:335px;color:#555c65;}#i93twoi{margin-bottom:6px;font-weight:700;}#i2o0yz6{max-width:335px;color:#555c65;}#i3exjve{margin-bottom:6px;font-weight:700;}#ij3u20p{max-width:335px;color:#555c65;}#ie30y9g{margin-bottom:6px;font-weight:700;}#ig4mu0y{max-width:335px;color:#555c65;}#i8eoafu{margin-bottom:6px;font-weight:700;}#imyy60x{max-width:335px;color:#555c65;}#iwiqenm{margin-bottom:6px;font-weight:700;}#ih41cfo{max-width:335px;color:#555c65;}#ihidqrj{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#i95nre5{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i71rwl7{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#i64o75o{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#i4bq9rj{margin-bottom:6px;font-weight:700;}#iyxr5ga{max-width:335px;color:#555c65;}#ilr1zti{margin-bottom:6px;font-weight:700;}#if6inl4{max-width:335px;color:#555c65;}#ipyf6zo{margin-bottom:6px;font-weight:700;}#ir2a2hd{max-width:335px;color:#555c65;}#i320vbx{margin-bottom:6px;font-weight:700;}#i7quseh{max-width:335px;color:#555c65;}#izvw67c{margin-bottom:6px;font-weight:700;}#i7e3u6y{max-width:335px;color:#555c65;}#ie6eg4i{margin-bottom:6px;font-weight:700;}#iobg5l8{max-width:335px;color:#555c65;}#ifnbjuv{margin-bottom:6px;font-weight:700;}#i8pav5f{max-width:335px;color:#555c65;}#i4qoc85{margin-bottom:6px;font-weight:700;}#i1d8um5{max-width:335px;color:#555c65;}#ifzjvcl{margin-bottom:6px;font-weight:700;}#iezefs8{max-width:335px;color:#555c65;}#idcoo62{margin-bottom:6px;font-weight:700;}#it3axnf{max-width:335px;color:#555c65;}#i7jn57a{margin-bottom:6px;font-weight:700;}#ifcu1ok{max-width:335px;color:#555c65;}#iafp58o{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#i6m00gn{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i53xab{margin-top:20px;box-sizing:border-box;width:100%;max-width:75%;margin:0 auto;padding:8px 11px 19px;color:#17212b;display:flex;flex-direction:column;flex-wrap:nowrap;}#i8uwt0k{margin-top:0;}#ipscd7i{width:100%;max-width:300px;height:300px;object-fit:contain;}#iq8cu8a{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#i07tsat{width:100%;max-width:300px;height:300px;object-fit:contain;}#i5y9fqf{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#i6t1ctj{width:100%;max-width:300px;height:300px;object-fit:contain;}#iedfsnr{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#iugrkih{width:100%;max-width:300px;height:300px;object-fit:contain;}#i7rbibd{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#ivt4dwv{width:100%;max-width:300px;height:300px;object-fit:contain;}#i63r4jd{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#i6fbyzj{display:flex;flex-wrap:wrap;justify-content:space-between;gap:24px;}#ing3aab{border-top:1px solid #cfd2d4;margin:0 28px;padding:22px 18px 14px;}#in9rdqv{background:#db650c;color:#fff;padding:11px 15px;font-size:16px;font-weight:700;letter-spacing:0.01em;}#iwl6ntx{margin:0 0 14px;}#i2k1nlj{margin:0;}#ibh17mi{flex:1 1 180px;background:#f7f8f9;border:1px solid #e1e3e5;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#ie0qoa8{margin:0;}#i9ceux8{flex:1 1 180px;background:#f7f8f9;border:1px solid #e1e3e5;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#ij7gjkr{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 16px;}#ipxwkrv{margin:0 0 14px;}#ifsoytu{margin:0 0 14px;}#izi3225{margin:0;}#i6fomsl{background:#fff7d6;border:1px solid #eadb91;border-left:4px solid #d6b84a;border-radius:4px;padding:11px 13px;margin:0 0 14px;}#iitzcfl{margin:0;}#indnk2m{padding:16px 18px;color:#444;line-height:1.6;}#iyxsbuk{width:100%;min-width:0;border:1px solid #d7dadd;border-radius:7px;overflow:hidden;background:#fff;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,0.05);}#idfogvi{background:#db650c;color:#fff;padding:11px 15px;font-size:16px;font-weight:700;letter-spacing:0.01em;}#iixuj4v{margin:0;}#ietlp4m{background:#f7f8f9;border:1px solid #e1e3e5;border-radius:5px;padding:11px 13px;margin-bottom:14px;}#izcxytq{margin:0 0 14px;}#i9ch9tf{margin:0;}#i9lph6l{padding:16px 18px;color:#444;line-height:1.6;}#izdritu{width:100%;border:1px solid #d7dadd;border-radius:7px;overflow:hidden;background:#fff;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,0.05);}#iqager3{flex:1 1 460px;min-width:0;display:flex;flex-direction:column;gap:18px;}#i4mk1je{background:#db650c;color:#fff;padding:11px 15px;font-size:16px;font-weight:700;letter-spacing:0.01em;}#ilf3qv1{font-size:15px;font-weight:700;color:#66551a;margin-bottom:9px;}#imd1pzp{margin:0 0 9px;line-height:1.55;color:#4b4735;}#iimwdg8{margin:0 0 9px;line-height:1.55;color:#4b4735;}#iuohly6{margin:0 0 9px;line-height:1.55;color:#4b4735;}#ie8vmb8{margin:0;line-height:1.55;color:#4b4735;}#i73ghri{margin:16px;background:#fff7d6;border:1px solid #eadb91;border-left:5px solid #d6b84a;border-radius:5px;padding:15px 16px;box-sizing:border-box;}#iupimwj{margin:0;line-height:1.6;color:#444;}#i9pom6q{padding:0 18px 17px;}#iywkaak{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#ity37yo{background:#f5f6f7;border:1px solid #e4e6e8;border-radius:5px;padding:9px 11px;margin-bottom:12px;font-weight:700;color:#444;}#ibcsos6{color:#db650c;font-weight:700;text-decoration:underline;}#i1ur43r{margin-bottom:8px;}#ie2a65o{margin-bottom:8px;}#ifme9ef{margin-bottom:8px;}#imv01xb{margin-bottom:8px;}#isoik6c{margin:0;padding-left:22px;line-height:1.6;color:#444;}#ifi6b8k{border-top:1px solid #e1e3e5;padding:18px;}#i7puha3{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#ijtwxcy{color:#db650c;font-weight:700;text-decoration:underline;}#i78up4s{margin-bottom:8px;}#isdc37m{margin-bottom:8px;}#icxad8o{font-weight:700;margin-bottom:4px;color:#333;}#ipk5c5f{flex:1 1 180px;background:#f7f8f9;border:1px solid #dedfe1;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#ifhpwz1{font-weight:700;margin-bottom:4px;color:#333;}#iwh0xwe{flex:1 1 180px;background:#f7f8f9;border:1px solid #dedfe1;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#iuysd8l{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;}#iwfj5yr{margin-top:10px;color:#666;font-size:13px;}#iaj2bol{margin:0;padding-left:22px;line-height:1.6;color:#444;}#it2ba57{border-top:1px solid #e1e3e5;padding:18px;}#i7yt7j8{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#i5j1msq{margin-bottom:8px;}#iyuxfzf{margin:0;padding-left:22px;line-height:1.6;color:#444;}#ir9zh5p{border-top:1px solid #e1e3e5;padding:18px;}#ihahe6i{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#i8n2ohf{margin-bottom:8px;}#iynfre5{margin:0;padding-left:22px;line-height:1.6;color:#444;}#iy9jq6w{border-top:1px solid #e1e3e5;padding:18px;}#ihc52zp{color:#db650c;font-weight:700;text-decoration:underline;}#i345dxs{border-top:1px solid #e1e3e5;background:#f7f8f9;padding:15px 18px;line-height:1.6;color:#444;}#ixjnvfz{border:1px solid #d7dadd;border-radius:7px;overflow:hidden;background:#fff;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,0.05);}#i6wyrwc{flex:1 1 460px;min-width:0;display:flex;flex-direction:column;}#ifj7nw5{display:flex;flex-wrap:wrap;gap:20px;border-top:1px solid #cfd2d4;margin:0 28px;padding:24px 18px 32px;align-items:flex-start;box-sizing:border-box;}#iew7hof{margin:0 0 7px;line-height:20px;font-weight:400;}#iuckeaq{color:#e86b13;text-decoration:underline;}#iuzjvw7{display:inline;color:#e86b13;}#ig8qwn8{line-height:18px;font-weight:600;}#irxodab{box-sizing:border-box;flex:1 1 390px;max-width:390px;}#irraos3{margin:0 0 7px;line-height:20px;}#iyyoznk{color:#ee6d12;text-decoration:underline;}#i1deltd{color:#ee6d12;text-decoration:underline;}#i0th94u{color:#ee6d12;text-decoration:underline;}#i5q8nmx{color:#ee6d12;text-decoration:underline;}#iq6lz4a{color:#ee6d12;text-decoration:underline;}#itwpv5s{color:#ee6d12;text-decoration:underline;}#iun6loc{color:#ee6d12;text-decoration:underline;}#istsl2h{color:#ee6d12;line-height:19px;}#izl9ks2{box-sizing:border-box;flex:0 0 170px;text-align:center;}#immz1ck{max-width:100%;height:auto;max-height:60px;}#isytqtk{display:flex;justify-content:center;margin-bottom:12px;}#ipxmnfc{margin:0 0 0;font-size:0;line-height:1;white-space:nowrap;}#i6kq2ik{margin-top:-2px;}#idk4r9o{color:#ee6d12;text-decoration:underline;}#im3f0dg{color:#ee6d12;text-decoration:underline;}#in7bjzq{display:flex;justify-content:flex-end;gap:20px;margin-top:6px;color:#ee6d12;font-size:14px;line-height:18px;}#iuugqak{margin-top:3px;}#iy3qjhv{margin-top:13px;}#ik1w5mu{margin-top:13px;}#i09ky1o{box-sizing:border-box;flex:1 1 420px;max-width:440px;text-align:right;}#ij7y3u5{display:flex;justify-content:space-between;gap:55px;width:100%;flex-wrap:wrap;box-sizing:border-box;}#ip5cka7{box-sizing:border-box;width:100%;min-height:252px;padding:19px 40px;background:#292a2a;color:#fff;font-family:Arial,Helvetica,sans-serif;}#ikdg{max-width:100%;max-width:100%;margin:0 auto;color:#111;background:#fff;font-family:Lucida Sans Unicode,Lucida Grande,sans-serif;font-size:medium;font-weight:400;letter-spacing:normal;line-height:normal;}#imtd4z9{width:742px;max-width:100%;}#if170cd{height:723px;aspect-ratio:unset;}#ixqhb71{height:723px;aspect-ratio:unset;}@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="7"] .lit-carousel-thumb:nth-child(n+8){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="7"] .lit-carousel-thumb:nth-child(-n+7){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="8"] .lit-carousel-thumb:nth-child(n+9){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="8"] .lit-carousel-thumb:nth-child(-n+8){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="9"] .lit-carousel-thumb:nth-child(n+10){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="9"] .lit-carousel-thumb:nth-child(-n+9){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="10"] .lit-carousel-thumb:nth-child(n+11){display:none !important;}.lit-product-carousel-nav[data-tablet-thumbs="10"] .lit-carousel-thumb:nth-child(-n+10){display:flex !important;}.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="7"] .lit-collage-grid{grid-template-columns:repeat(7, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="8"] .lit-collage-grid{grid-template-columns:repeat(8, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="9"] .lit-collage-grid{grid-template-columns:repeat(9, 1fr);}.lit-product-carousel-nav[data-tablet-thumbs="10"] .lit-collage-grid{grid-template-columns:repeat(10, 1fr);}}@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-78px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(7):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-546px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-tablet-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-tablet-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-546px);}.lit-product-carousel-nav[data-tablet-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-tablet-thumbs="9"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-64px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-448px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-tablet-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-tablet-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-448px);}.lit-product-carousel-nav[data-tablet-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-tablet-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-tablet-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}}@media (min-width: 992px){.lit-hide-desktop{display:none !important;}}@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(n+6){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-carousel-thumb:nth-child(-n+5){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(n+7){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-carousel-thumb:nth-child(-n+6){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="7"] .lit-carousel-thumb:nth-child(n+8){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="7"] .lit-carousel-thumb:nth-child(-n+7){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="8"] .lit-carousel-thumb:nth-child(n+9){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="8"] .lit-carousel-thumb:nth-child(-n+8){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="9"] .lit-carousel-thumb:nth-child(n+10){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="9"] .lit-carousel-thumb:nth-child(-n+9){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="10"] .lit-carousel-thumb:nth-child(n+11){display:none !important;}.lit-product-carousel-nav[data-phone-thumbs="10"] .lit-carousel-thumb:nth-child(-n+10){display:flex !important;}.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="5"] .lit-collage-grid{grid-template-columns:repeat(5, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="6"] .lit-collage-grid{grid-template-columns:repeat(6, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="7"] .lit-collage-grid{grid-template-columns:repeat(7, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="8"] .lit-collage-grid{grid-template-columns:repeat(8, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="9"] .lit-collage-grid{grid-template-columns:repeat(9, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="10"] .lit-collage-grid{grid-template-columns:repeat(10, 1fr);}.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid > :first-child{grid-column-start:auto;grid-column-end:auto;grid-row-start:auto;grid-row-end:auto;aspect-ratio:1 / 1;}.main-div{padding-top:12px;padding-right:14px;padding-bottom:12px;padding-left:14px;}}@media (min-width: 768px) and (max-width: 991px){.lit-hide-tablet{display:none !important;}}@media (max-width: 767px){.lit-hide-mobile{display:none !important;}}@media (max-width: 720px){.util-bar{row-gap:14px;column-gap:14px;flex-wrap:wrap;}.main-nav{flex-wrap:wrap;}.main-nav a{padding-top:10px;padding-right:12px;padding-bottom:10px;padding-left:12px;}.hero{padding-top:36px;padding-right:20px;padding-bottom:36px;padding-left:20px;min-height:240px;}.hero h1{font-size:22px;}.perks-bar{flex-wrap:wrap;}.perk{max-width:none;flex-grow:1;flex-shrink:1;flex-basis:50%;padding-top:12px;padding-right:16px;padding-bottom:12px;padding-left:16px;}.product-section{flex-direction:column;padding-top:0px;padding-right:20px;padding-bottom:0px;padding-left:20px;}.product-img-col{width:100%;flex-grow:1;flex-shrink:1;flex-basis:auto;}.product-info-col{width:100%;flex-grow:1;flex-shrink:1;flex-basis:auto;}.bc-rl-handle{display:none;}.ymyl-grid{grid-template-columns:repeat(2, 1fr);}.tab-headers label{font-size:10px;padding-top:10px;padding-right:6px;padding-bottom:10px;padding-left:6px;}.footer-nav{row-gap:14px;column-gap:14px;}}@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-78px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(7):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-546px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-156px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-390px);}.lit-product-carousel-nav[data-phone-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-468px);}.lit-product-carousel-nav[data-phone-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-546px);}.lit-product-carousel-nav[data-phone-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-624px);}.lit-product-carousel-nav[data-phone-thumbs="9"]:is(:has(input:nth-of-type(10):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-702px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(2):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-64px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(3):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(7):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-448px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="1"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(3):checked), :has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-128px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked), :has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="5"]:is(:has(input:nth-of-type(6):checked), :has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-320px);}.lit-product-carousel-nav[data-phone-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="6"]:is(:has(input:nth-of-type(7):checked), :has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-384px);}.lit-product-carousel-nav[data-phone-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="7"]:is(:has(input:nth-of-type(8):checked), :has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-448px);}.lit-product-carousel-nav[data-phone-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="8"]:is(:has(input:nth-of-type(9):checked), :has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-512px);}.lit-product-carousel-nav[data-phone-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="9"]:is(:has(input:nth-of-type(10):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-576px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-312px);}.lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="2"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}.lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="3"]:is(:has(input:nth-of-type(4):checked), :has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}.lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav[data-phone-thumbs="4"]:is(:has(input:nth-of-type(5):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-256px);}}