
    /* ── 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;}#ixc6{background:#db650c;color:#fff;text-align:center;padding:5px 12px;}#i64n{max-width:100%;height:auto;max-height:60px;}#im5u{display:flex;justify-content:center;margin-bottom:12px;}#ilgcz{color:#000;text-decoration:none;}#iyvyq{color:#000;text-decoration:none;}#i4p8o{color:#000;text-decoration:none;}#i5ufl{color:#000;text-decoration:none;}#iil51{color:#000;text-decoration:none;}#idtv4{color:#000;text-decoration:none;}#i12ow{color:#000;text-decoration:none;}#ix22k{display:flex;flex-wrap:wrap;gap:12px 28px;}#iszme{color:#5c6570;text-decoration:none;}#igmhp{color:#5c6570;text-decoration:none;}#iy7co{padding-right:8px;color:#db650c;display:flex;align-items:center;}#ixo9q{background:#db650c;color:#fff;padding:5px 13px;border-radius:5px;text-decoration:none;font-weight:700;display:flex;align-items:center;}#i2bbt{display:flex;flex-wrap:wrap;gap:16px;align-items:center;}#iycl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px 24px;padding:0 12px 10px;}#iwxw{background:#f4f5f6;padding:14px 28px 0;}#i3ppv{color:#db650c;display:flex;align-items:center;}#ijtjl{display:flex;gap:12px;min-width:190px;}#isdln{color:#db650c;display:flex;align-items:center;}#iowcw{display:flex;gap:12px;min-width:190px;}#iv6ok{color:#db650c;display:flex;align-items:center;}#i2bce{display:flex;gap:12px;min-width:190px;}#i3gxk{color:#db650c;display:flex;align-items:center;}#i9yzj{display:flex;gap:12px;min-width:190px;}#ihzhi{display:flex;flex-wrap:wrap;justify-content:space-around;gap:16px;border-top:1px solid #d8dce0;padding:14px 28px;}#ild81{order:1!important;border:1px solid #d5d9dd;border-radius:5px;text-align:center;min-height:800px;display:flex;align-items:center;justify-content:center;}#isrg8{background:#db650c;color:#fff;padding:10px 14px;font-weight:700;font-size:15px;}#iwtz7{margin:0;}#i2i9e{padding:16px 18px 18px;color:#333;line-height:1.65;box-sizing:border-box;}#i5pj1{margin:0;padding:0;}#i3ayw{width:100%;border:1px solid #d7dadd;border-radius:6px;overflow:hidden;background:#fff;box-sizing:border-box;}#irid8{margin:0;font-size:15px;font-weight:700;color:#fff;}#i8q5j{background:#db650c;color:#fff;padding:10px 14px;}#i6bp7{margin:0;}#iu0a4{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#i12ci{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i4ktd{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#iova4{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#iipy3q{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#iws2jg{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i35lag{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#ix2zhj{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#issepj{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#iyu30q{display:flex;flex-wrap:wrap;}#iuzkpx{margin:0;font-size:15px;font-weight:700;color:#fff;}#iqai7o{background:#db650c;color:#fff;padding:10px 14px;}#i258ze{margin:0;}#i63aoj{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#i6il4h{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#iipze5{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#ill32u{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#i8uauv{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ifposu{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i9iamy{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#iuzhzl{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#int78b{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#idq4p3{display:flex;flex-wrap:wrap;}#ip1gi8{margin:0;font-size:15px;font-weight:700;color:#fff;}#ixq3g9{background:#db650c;color:#fff;padding:10px 14px;}#iuhpnj{margin:0;}#illafn{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#i7e50u{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ilhcm8{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#ilqlk2{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#iq1yrx{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#irfshi{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#isf0b5{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#i87xyf{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#i75bmu{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#iujhoe{display:flex;flex-wrap:wrap;}#i5q208{margin:0;font-size:15px;font-weight:700;color:#fff;}#iippbl{background:#db650c;color:#fff;padding:10px 14px;}#i12izn{margin:0;}#icsdae{padding:14px 18px;border-bottom:1px solid #e2e4e6;color:#444;line-height:1.6;}#ifafvv{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#iu04mg{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#ilj9a4{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#ii3mwl{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#iun869{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#iuauzu{display:flex;flex-wrap:wrap;border-bottom:1px solid #e2e4e6;}#ik1z89{flex:0 0 150px;box-sizing:border-box;background:#f5f6f7;padding:14px 16px;font-weight:700;color:#db650c;}#ilgz34{flex:1 1 320px;min-width:0;padding:14px 16px;box-sizing:border-box;color:#444;line-height:1.6;}#i4q2sd{display:flex;flex-wrap:wrap;}#i1dzr{border:1px solid #d7dadd;border-radius:6px;overflow:hidden;background:#fff;box-sizing:border-box;}#ilvjx{order:4!important;flex:1 1 460px;min-width:0;width:100%;box-sizing:border-box;}#i8puk{order:3!important;display:flex;flex-direction:column;gap:14px;padding-bottom:14px;box-sizing:border-box;margin-top:20px;}#icf33{flex:1 1 460px;min-width:0;}#iaisow{background:#003a75;color:#fff;padding:5px 8px;font-weight:700;}#iawa2j{background:#237400;color:#fff;padding:5px 8px;font-weight:700;}#icwaxn{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#i6jyia{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#i8ot6b{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#igq5gk{background:#d36400;color:#fff;padding:5px 8px;font-weight:700;}#i6ka4t{display:flex;flex-wrap:wrap;gap:3px;margin:14px 0;}#iazgkk{margin:10px 0;}#i5ur9d{margin:10px 0 12px;}#icfmmz{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#i5d0ye{text-align:right;}#ic18vk{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#iebewx{text-align:right;}#irm1kt{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#iuct28{text-align:right;}#i243rq{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#i5k1a7{text-align:right;}#itsg1b{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#i9hl6g{text-align:right;}#i7yfty{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;border-bottom:1px dashed #d4d4d4;}#icc5wk{text-align:right;}#imugij{display:flex;justify-content:space-between;gap:20px;padding:14px 10px;}#irz9t4{border-top:1px solid #c9cdd0;border-bottom:1px solid #c9cdd0;margin-bottom:20px;}#i0dc67{font-size:15px;font-weight:700;color:#6f5b16;margin-bottom:8px;}#i2ei6g{margin:0;color:#4f4a32;line-height:1.5;}#ixz216{background:#fff9d6;border:1px solid #e8d98a;border-left:5px solid #d6b84a;border-radius:5px;padding:14px 16px;margin-bottom:20px;box-sizing:border-box;}#ib33dn{background:#db650c;color:#fff;padding:7px;font-weight:700;}#ijpzoh{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#i3v4lq{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#iabydr{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#irolyz{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#i00jfg{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;text-align:center;}#ibwzah{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#ixtzoh{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#ip2mry{max-width:120px;width:100%;height:auto;border-radius:5px;border:2px solid #d3d6d8;padding:2px;margin-bottom:10px;}#icxc3k{flex:1 1 180px;display:flex;flex-direction:column;align-items:center;margin:10px 0;}#i42bcn{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;text-align:center;}#i8jtvi{padding:8px;}#i9bmn7{border:1px solid #d3d6d8;border-radius:4px;overflow:hidden;}#iuospf{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iro9qp{margin-bottom:15px;}#izjrfd{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ifm46j{margin-bottom:15px;}#inclut{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#izzt0b{margin-bottom:15px;}#iuoypj{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ih69xv{margin-bottom:15px;}#i0wmpm{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ij9rwy{margin-bottom:15px;}#ifr1ql{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#isp8xl{margin-bottom:15px;}#ipj2xl{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i9bmvt{margin-bottom:15px;}#iqh5aa{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iuoamf{margin-bottom:15px;}#i59juh{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ibu3ko{margin-bottom:15px;}#iyg53z{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iwfyek{margin-bottom:15px;}#ise0qz{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#idfo78{margin-bottom:15px;}#i0a8pg{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ixjcx7{margin-bottom:15px;}#i6s4xr{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ibs3ct{margin-bottom:15px;}#iniwic{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ilryd2{margin-bottom:15px;}#i6ahd3{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iozgzw{margin-bottom:15px;}#i45kug{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i84nkz{margin-bottom:15px;}#idt7vc{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#imuny4{margin-bottom:15px;}#ico9gj{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i3d9bm{margin-bottom:15px;}#insxtc{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ibjh94{margin-bottom:15px;}#ivawqu{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ia6zuj{margin-bottom:15px;}#iydklg{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i0d5i2{margin-bottom:15px;}#isr995{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iozf88{margin-bottom:15px;}#ijgtc2{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#in7l9j{margin-bottom:15px;}#i95ybh{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ifuiri{margin-bottom:15px;}#il5qea{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i3grf7{margin-bottom:15px;}#ixfvcl{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iw65xv{margin-bottom:15px;}#i4hc7h{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iwrjzf{margin-bottom:15px;}#ih0c25{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ifqiz3{margin-bottom:15px;}#id9ufl{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iu6thj{margin-bottom:15px;}#ic57gt{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ici3e9{margin-bottom:15px;}#ix7a5l{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i16m4c{margin-bottom:15px;}#ik7j8i{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i9nouc{margin-bottom:15px;}#ijpzdk{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i57r3h{margin-bottom:15px;}#is6lny{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#idsbnx{margin-bottom:15px;}#i0blcc{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i13y6h{margin-bottom:15px;}#i6u86o{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i82tme{margin-bottom:15px;}#i0n1tx{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#irbafe{margin-bottom:15px;}#isegtb{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#igfacg{margin-bottom:15px;}#i6unm8{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ipeuk2{margin-bottom:15px;}#i5n7h5{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ivzc8k{margin-bottom:15px;}#i7fvcd{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ip5q1y{margin-bottom:15px;}#ip3ba5{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ijwfan{margin-bottom:15px;}#it0ejt{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i3puna{margin-bottom:15px;}#igxac7{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iqj7d1{margin-bottom:15px;}#i46nmb{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i05w3c{margin-bottom:15px;}#iq8dvk{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iqcapy{margin-bottom:15px;}#iyl1gn{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i49vxf{margin-bottom:15px;}#i7cdvr{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#is8a0p{margin-bottom:15px;}#ie3kf2{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iuhpzi{margin-bottom:15px;}#iy8ly6{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#if1ebf{margin-bottom:15px;}#i1j0nr{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i7qhtt{margin-bottom:15px;}#ida5xa{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iav3hk{margin-bottom:15px;}#iz5or1{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i5b5i4{margin-bottom:15px;}#igx17b{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#imly73{margin-bottom:15px;}#idmdvi{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iw4sbr{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#iurdlj{margin-bottom:15px;}#innp8b{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i8r0ct{margin-bottom:15px;}#i0ofem{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#i6w65l{margin-bottom:15px;}#iyg1qf{background:#737d87;color:#fff;padding:7px 11px;border-radius:5px;}#ienq9t{margin-bottom:15px;}#iv61m9{display:flex;flex-wrap:wrap;gap:5px;border-top:1px solid #c9cdd0;padding-top:14px;margin-top:12px;}#ipwglj{order:2!important;flex:1 1 460px;min-width:0;padding-left:18px;box-sizing:border-box;}#il78j{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;}#iauxpu{display:inline;color:#dc5e08;}#ifrong{margin:0 0 27px;font-weight:700;font-size:30px;}#izzmd6{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#iyojmf{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#ixgbr5{margin-bottom:6px;font-weight:700;}#ig2wk1{max-width:335px;color:#555c65;}#ir7g7g{margin-bottom:6px;font-weight:700;}#iyip0f{max-width:335px;color:#555c65;}#ilury7{margin-bottom:6px;font-weight:700;}#i8pbhh{max-width:335px;color:#555c65;}#irbu5j{margin-bottom:6px;font-weight:700;}#i5z1dm{max-width:335px;color:#555c65;}#ihs083{margin-bottom:6px;font-weight:700;}#i6j3sj{max-width:335px;color:#555c65;}#ive9tn{margin-bottom:6px;font-weight:700;}#iklixo{max-width:335px;color:#555c65;}#ijhck9{margin-bottom:6px;font-weight:700;}#i9ch7i{max-width:335px;color:#555c65;}#i8damx{margin-bottom:6px;font-weight:700;}#ib9491{max-width:335px;color:#555c65;}#iyjabl{margin-bottom:6px;font-weight:700;}#icitt1{max-width:335px;color:#555c65;}#igd59n{margin-bottom:6px;font-weight:700;}#ih1mas{max-width:335px;color:#555c65;}#ian9gl{margin-bottom:6px;font-weight:700;}#itts1f{max-width:335px;color:#555c65;}#i8005o{margin-bottom:6px;font-weight:700;}#iuhv1q{max-width:335px;color:#555c65;}#i4llav{margin-bottom:6px;font-weight:700;}#iwvwjk{max-width:335px;color:#555c65;}#i06erj{margin-bottom:6px;font-weight:700;}#i8ptqi{max-width:335px;color:#555c65;}#ivnklp{margin-bottom:6px;font-weight:700;}#ilde6d{max-width:335px;color:#555c65;}#iz9p9s{margin-bottom:6px;font-weight:700;}#imvrch{max-width:335px;color:#555c65;}#imst5z{margin-bottom:6px;font-weight:700;}#i2w4kr{max-width:335px;color:#555c65;}#ibdj8f{margin-bottom:6px;font-weight:700;}#ij0fse{max-width:335px;color:#555c65;}#in0lf9{margin-bottom:6px;font-weight:700;}#iccs65{max-width:335px;color:#555c65;}#i1dew4{margin-bottom:6px;font-weight:700;}#iwsq8g{max-width:335px;color:#555c65;}#ispbqe{margin-bottom:6px;font-weight:700;}#iovub2{max-width:335px;color:#555c65;}#izcfdz{margin-bottom:6px;font-weight:700;}#i9qsua{max-width:335px;color:#555c65;}#ifgyog{margin-bottom:6px;font-weight:700;}#i8bw1t{max-width:335px;color:#555c65;}#i1rrod{margin-bottom:6px;font-weight:700;}#injv3d{max-width:335px;color:#555c65;}#iac9sb{margin-bottom:6px;font-weight:700;}#i69pwm{max-width:335px;color:#555c65;}#i3o8zn{margin-bottom:6px;font-weight:700;}#ityl8v{max-width:335px;color:#555c65;}#iz8kch{margin-bottom:6px;font-weight:700;}#i0uyqp{max-width:335px;color:#555c65;}#iawaze{margin-bottom:6px;font-weight:700;}#iv5cue{max-width:335px;color:#555c65;}#iud85f{margin-bottom:6px;font-weight:700;}#ioyxc6{max-width:335px;color:#555c65;}#ilqqd2{margin-bottom:6px;font-weight:700;}#ijuc2l{max-width:335px;color:#555c65;}#ilsm8u{margin-bottom:6px;font-weight:700;}#ila8rk{max-width:335px;color:#555c65;}#i72nqg{margin-bottom:6px;font-weight:700;}#i2wulh{max-width:335px;color:#555c65;}#ihheh5{margin-bottom:6px;font-weight:700;}#iydnyl{max-width:335px;color:#555c65;}#i528lu{margin-bottom:6px;font-weight:700;}#i0iq2l{max-width:335px;color:#555c65;}#iuwnly{margin-bottom:6px;font-weight:700;}#ifcrfx{max-width:335px;color:#555c65;}#iqdhyw{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#iop6gl{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#ilr9zv{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#igq6id{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#iwneah{margin-bottom:6px;font-weight:700;}#ir84vl{max-width:335px;color:#555c65;}#i0mrrz{margin-bottom:6px;font-weight:700;}#i1ls6k{max-width:335px;color:#555c65;}#iq65no{margin-bottom:6px;font-weight:700;}#igq8a8{max-width:335px;color:#555c65;}#i8y314{margin-bottom:6px;font-weight:700;}#iu5nos{max-width:335px;color:#555c65;}#ibw10o{margin-bottom:6px;font-weight:700;}#iexean{max-width:335px;color:#555c65;}#igll0l{margin-bottom:6px;font-weight:700;}#ir93tm{max-width:335px;color:#555c65;}#ivq65y{margin-bottom:6px;font-weight:700;}#ikckwg{max-width:335px;color:#555c65;}#iaxgje{margin-bottom:6px;font-weight:700;}#ivemb8{max-width:335px;color:#555c65;}#iqxaaf{margin-bottom:6px;font-weight:700;}#i8wzdn{max-width:335px;color:#555c65;}#itj4x9{margin-bottom:6px;font-weight:700;}#izd0ej{max-width:335px;color:#555c65;}#ix6wji{margin-bottom:6px;font-weight:700;}#i3cpct{max-width:335px;color:#555c65;}#iaxuej{margin-bottom:6px;font-weight:700;}#ivnzqy{max-width:335px;color:#555c65;}#iakb0e{margin-bottom:6px;font-weight:700;}#iz5cbw{max-width:335px;color:#555c65;}#ink8ky{margin-bottom:6px;font-weight:700;}#i9txli{max-width:335px;color:#555c65;}#ih907p{margin-bottom:6px;font-weight:700;}#irfpxe{max-width:335px;color:#555c65;}#il6559{margin-bottom:6px;font-weight:700;}#ii4np4{max-width:335px;color:#555c65;}#ititlh{margin-bottom:6px;font-weight:700;}#ikxisd{max-width:335px;color:#555c65;}#itk1ij{margin-bottom:6px;font-weight:700;}#iyxra8{max-width:335px;color:#555c65;}#idb26y{margin-bottom:6px;font-weight:700;}#isz0za{max-width:335px;color:#555c65;}#if4p4w{margin-bottom:6px;font-weight:700;}#i2wgyi{max-width:335px;color:#555c65;}#iugd3m{margin-bottom:6px;font-weight:700;}#ihkqut{max-width:335px;color:#555c65;}#i056ca{margin-bottom:6px;font-weight:700;}#ikg0oh{max-width:335px;color:#555c65;}#iy7l86{margin-bottom:6px;font-weight:700;}#i5y829{max-width:335px;color:#555c65;}#itnyq2{margin-bottom:6px;font-weight:700;}#iitybe{max-width:335px;color:#555c65;}#idfwkl{margin-bottom:6px;font-weight:700;}#ik9iwk{max-width:335px;color:#555c65;}#irnb1t{margin-bottom:6px;font-weight:700;}#iib3hm{max-width:335px;color:#555c65;}#i7ev6a{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#ijzsn9{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#ijoyrh{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#iitgk6{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#inufqi{margin-bottom:6px;font-weight:700;}#itjqys{max-width:335px;color:#555c65;}#itvtb1{margin-bottom:6px;font-weight:700;}#ikwrcs{max-width:335px;color:#555c65;}#ii78rq{margin-bottom:6px;font-weight:700;}#i7dnp9{max-width:335px;color:#555c65;}#iwgrok{margin-bottom:6px;font-weight:700;}#iwqm5y{max-width:335px;color:#555c65;}#iz18pd{margin-bottom:6px;font-weight:700;}#i9d4z6{max-width:335px;color:#555c65;}#iwdmp7{margin-bottom:6px;font-weight:700;}#i7bpvg{max-width:335px;color:#555c65;}#i0yiqu{margin-bottom:6px;font-weight:700;}#ivqcsu{max-width:335px;color:#555c65;}#it7vyl{margin-bottom:6px;font-weight:700;}#i8h0vd{max-width:335px;color:#555c65;}#irsn6j{margin-bottom:6px;font-weight:700;}#itjkn6{max-width:335px;color:#555c65;}#ic32zb{margin-bottom:6px;font-weight:700;}#ii7gy1{max-width:335px;color:#555c65;}#ixz7rh{margin-bottom:6px;font-weight:700;}#isaac3z{max-width:335px;color:#555c65;}#itpm3ig{margin-bottom:6px;font-weight:700;}#i1q7flp{max-width:335px;color:#555c65;}#idupke{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#ip10mx{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#iyi6ezx{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#igmpmpj{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#izv28wh{margin-bottom:6px;font-weight:700;}#il9huvk{max-width:335px;color:#555c65;}#ilw7e1d{margin-bottom:6px;font-weight:700;}#ire4ivu{max-width:335px;color:#555c65;}#i6t3juk{margin-bottom:6px;font-weight:700;}#idt6oi3{max-width:335px;color:#555c65;}#ipropi9{margin-bottom:6px;font-weight:700;}#ivaj2t9{max-width:335px;color:#555c65;}#ivivwu2{margin-bottom:6px;font-weight:700;}#iy6h7vf{max-width:335px;color:#555c65;}#ilyvjg3{margin-bottom:6px;font-weight:700;}#ier8dl6{max-width:335px;color:#555c65;}#inzs5i7{margin-bottom:6px;font-weight:700;}#ii1d5z8{max-width:335px;color:#555c65;}#i4p05lo{margin-bottom:6px;font-weight:700;}#ibrlk6j{max-width:335px;color:#555c65;}#iwk36gt{margin-bottom:6px;font-weight:700;}#iugfhdi{max-width:335px;color:#555c65;}#i0ylvry{margin-bottom:6px;font-weight:700;}#isq659j{max-width:335px;color:#555c65;}#iu02brj{margin-bottom:6px;font-weight:700;}#ipirqh1{max-width:335px;color:#555c65;}#irqdjpx{margin-bottom:6px;font-weight:700;}#if8z78j{max-width:335px;color:#555c65;}#ixuld58{margin-bottom:6px;font-weight:700;}#ih5melj{max-width:335px;color:#555c65;}#i8dmz7k{margin-bottom:6px;font-weight:700;}#ismftrl{max-width:335px;color:#555c65;}#ikd2z0i{margin-bottom:6px;font-weight:700;}#intn31b{max-width:335px;color:#555c65;}#irdycks{margin-bottom:6px;font-weight:700;}#iqefdop{max-width:335px;color:#555c65;}#i9qhb2a{margin-bottom:6px;font-weight:700;}#icer637{max-width:335px;color:#555c65;}#imo732g{margin-bottom:6px;font-weight:700;}#ir9cssm{max-width:335px;color:#555c65;}#i3xu1kt{margin-bottom:6px;font-weight:700;}#iftk9ch{max-width:335px;color:#555c65;}#ij48hgi{margin-bottom:6px;font-weight:700;}#iqdkrgs{max-width:335px;color:#555c65;}#iwu9rkc{margin-bottom:6px;font-weight:700;}#iiub8of{max-width:335px;color:#555c65;}#ie1kq8g{margin-bottom:6px;font-weight:700;}#imgthap{max-width:335px;color:#555c65;}#ir7z802{margin-bottom:6px;font-weight:700;}#is20aak{max-width:335px;color:#555c65;}#iitol9b{margin-bottom:6px;font-weight:700;}#ieebu3f{max-width:335px;color:#555c65;}#igpw617{margin-bottom:6px;font-weight:700;}#ibobwmi{max-width:335px;color:#555c65;}#iye3m89{margin-bottom:6px;font-weight:700;}#i1nh6hj{max-width:335px;color:#555c65;}#iz43bt2{margin-bottom:6px;font-weight:700;}#iygkkgx{max-width:335px;color:#555c65;}#i59wx6n{margin-bottom:6px;font-weight:700;}#ibsuq3b{max-width:335px;color:#555c65;}#i3s916b{margin-bottom:6px;font-weight:700;}#i97o5d1{max-width:335px;color:#555c65;}#in68oej{margin-bottom:6px;font-weight:700;}#isc22xy{max-width:335px;color:#555c65;}#it9ds8c{margin-bottom:6px;font-weight:700;}#itqoc5f{max-width:335px;color:#555c65;}#idgkmg3{margin-bottom:6px;font-weight:700;}#i6gp961{max-width:335px;color:#555c65;}#i1eg67b{margin-bottom:6px;font-weight:700;}#i6h12xv{max-width:335px;color:#555c65;}#i9jehxa{margin-bottom:6px;font-weight:700;}#iompdln{max-width:335px;color:#555c65;}#inwwthg{margin-bottom:6px;font-weight:700;}#i27nt6u{max-width:335px;color:#555c65;}#ioigqpg{margin-bottom:6px;font-weight:700;}#ijuyaag{max-width:335px;color:#555c65;}#i84k3xx{margin-bottom:6px;font-weight:700;}#ildvhof{max-width:335px;color:#555c65;}#itp8pvm{margin-bottom:6px;font-weight:700;}#idhvmjw{max-width:335px;color:#555c65;}#idcgb6x{margin-bottom:6px;font-weight:700;}#iiueviq{max-width:335px;color:#555c65;}#ixk8emz{margin-bottom:6px;font-weight:700;}#i3bv33e{max-width:335px;color:#555c65;}#iuomkn4{margin-bottom:6px;font-weight:700;}#iwxun2a{max-width:335px;color:#555c65;}#ik9r44m{margin-bottom:6px;font-weight:700;}#ibvx468{max-width:335px;color:#555c65;}#ir1p2fo{margin-bottom:6px;font-weight:700;}#iondmi4{max-width:335px;color:#555c65;}#iv3lb0r{margin-bottom:6px;font-weight:700;}#ilqwfsi{max-width:335px;color:#555c65;}#im7c9ig{margin-bottom:6px;font-weight:700;}#ikcv6pk{max-width:335px;color:#555c65;}#ij24izt{margin-bottom:6px;font-weight:700;}#i52g1be{max-width:335px;color:#555c65;}#i5nbsyg{margin-bottom:6px;font-weight:700;}#i011e12{max-width:335px;color:#555c65;}#ipmf5jl{margin-bottom:6px;font-weight:700;}#igs27t2{max-width:335px;color:#555c65;}#ia2yn2w{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#ifxfjhk{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i9a9jh4{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#iqd145m{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#i5opv2q{margin-bottom:6px;font-weight:700;}#i8ady5n{max-width:335px;color:#555c65;}#iivusdt{margin-bottom:6px;font-weight:700;}#ixfhhtg{max-width:335px;color:#555c65;}#iqey995{margin-bottom:6px;font-weight:700;}#i5cp8lf{max-width:335px;color:#555c65;}#ioc47dh{margin-bottom:6px;font-weight:700;}#idz8yjt{max-width:335px;color:#555c65;}#ilcjlj8{margin-bottom:6px;font-weight:700;}#i86bz2d{max-width:335px;color:#555c65;}#innosad{margin-bottom:6px;font-weight:700;}#i02gwx1{max-width:335px;color:#555c65;}#iygtoau{margin-bottom:6px;font-weight:700;}#iiojxzj{max-width:335px;color:#555c65;}#i0a09yj{margin-bottom:6px;font-weight:700;}#i6y3xpg{max-width:335px;color:#555c65;}#ikq54tl{margin-bottom:6px;font-weight:700;}#i0u1mno{max-width:335px;color:#555c65;}#i20wjt5{margin-bottom:6px;font-weight:700;}#i3wbeih{max-width:335px;color:#555c65;}#iz9x61l{margin-bottom:6px;font-weight:700;}#ijmldew{max-width:335px;color:#555c65;}#i1m4oov{margin-bottom:6px;font-weight:700;}#i79a6t1{max-width:335px;color:#555c65;}#ihxjr9j{margin-bottom:6px;font-weight:700;}#i85bi76{max-width:335px;color:#555c65;}#icjr6bm{margin-bottom:6px;font-weight:700;}#iq8h0wm{max-width:335px;color:#555c65;}#izxalo3{margin-bottom:6px;font-weight:700;}#isiz3g7{max-width:335px;color:#555c65;}#i42cbaf{margin-bottom:6px;font-weight:700;}#iz7zuvr{max-width:335px;color:#555c65;}#iwqdkkt{margin-bottom:6px;font-weight:700;}#iu7f669{max-width:335px;color:#555c65;}#idiu709{margin-bottom:6px;font-weight:700;}#ix59xqc{max-width:335px;color:#555c65;}#itk6osk{margin-bottom:6px;font-weight:700;}#i7z9mgl{max-width:335px;color:#555c65;}#isjv0e3{margin-bottom:6px;font-weight:700;}#iagrc0w{max-width:335px;color:#555c65;}#i9vj4ag{margin-bottom:6px;font-weight:700;}#i6raj72{max-width:335px;color:#555c65;}#i6xb4vk{margin-bottom:6px;font-weight:700;}#i010naz{max-width:335px;color:#555c65;}#i4kw10c{margin-bottom:6px;font-weight:700;}#i4dz698{max-width:335px;color:#555c65;}#igl569f{margin-bottom:6px;font-weight:700;}#iyuch7w{max-width:335px;color:#555c65;}#itb8lqu{margin-bottom:6px;font-weight:700;}#i6zxxdx{max-width:335px;color:#555c65;}#iqpw13n{margin-bottom:6px;font-weight:700;}#izkbgwl{max-width:335px;color:#555c65;}#ib2brms{margin-bottom:6px;font-weight:700;}#ikts4vc{max-width:335px;color:#555c65;}#ip20onb{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#ip2g9ep{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#i3bzyei{padding:0 0 6px;border-bottom:1px solid #df6510;font-weight:700;}#ishmrxs{display:flex;flex:0 0 165px;align-items:flex-start;gap:11px;}#ii7eza6{margin-bottom:6px;font-weight:700;}#i0xzfnx{max-width:335px;color:#555c65;}#igga40c{margin-bottom:6px;font-weight:700;}#igx2e3m{max-width:335px;color:#555c65;}#iel0x47{margin-bottom:6px;font-weight:700;}#irbwp5v{max-width:335px;color:#555c65;}#i8vi3o6{margin-bottom:6px;font-weight:700;}#i9l6ac2{max-width:335px;color:#555c65;}#il0gvmm{margin-bottom:6px;font-weight:700;}#i3qtd8i{max-width:335px;color:#555c65;}#ils6scn{margin-bottom:6px;font-weight:700;}#ijgtn3h{max-width:335px;color:#555c65;}#i8noanc{margin-bottom:6px;font-weight:700;}#iux8wqe{max-width:335px;color:#555c65;}#ic2fjfk{margin-bottom:6px;font-weight:700;}#igdhuy6{max-width:335px;color:#555c65;}#iw7zw81{margin-bottom:6px;font-weight:700;}#iv3sykg{max-width:335px;color:#555c65;}#i6ln8pa{margin-bottom:6px;font-weight:700;}#i5a3adi{max-width:335px;color:#555c65;}#itt2w0l{margin-bottom:6px;font-weight:700;}#ir13vqe{max-width:335px;color:#555c65;}#iley7bu{display:grid;display:flex;grid-template-columns:minmax(180px,1fr) minmax(180px,1fr);flex:1;column-gap:72px;row-gap:19px;flex-wrap:wrap;}#ion3ca6{display:flex;display:flex;gap:40px;border-top:1px solid #d8d8d8;padding:25px 2px 26px;flex-wrap:wrap;}#ioja4i{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;}#i3ngwbg{margin-top:0;}#i41q88j{width:100%;max-width:300px;height:300px;object-fit:contain;}#il1t14j{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#itc6kmg{width:100%;max-width:300px;height:300px;object-fit:contain;}#iyipm1l{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#id30dky{width:100%;max-width:300px;height:300px;object-fit:contain;}#ix23qxq{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#i1uhyl9{width:100%;max-width:300px;height:300px;object-fit:contain;}#iio5zdl{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#ivlaxki{width:100%;max-width:300px;height:300px;object-fit:contain;}#iklg1kg{flex:1 1 170px;overflow:hidden;text-align:center;display:flex;justify-content:center;align-items:center;min-width:150px;}#i1qzoik{display:flex;flex-wrap:wrap;justify-content:space-between;gap:24px;}#ihacv4m{border-top:1px solid #cfd2d4;margin:0 28px;padding:22px 18px 14px;}#ijeptv3{background:#db650c;color:#fff;padding:11px 15px;font-size:16px;font-weight:700;letter-spacing:0.01em;}#ivhn9hz{margin:0 0 14px;}#i9pl9uz{margin:0;}#i4grfwh{flex:1 1 180px;background:#f7f8f9;border:1px solid #e1e3e5;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#ie33hd3{margin:0;}#ieu51qw{flex:1 1 180px;background:#f7f8f9;border:1px solid #e1e3e5;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#i6a8qzr{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 16px;}#i4azxvh{margin:0 0 14px;}#is9smfh{margin:0 0 14px;}#ig3906x{margin:0;}#imw7pcr{background:#fff7d6;border:1px solid #eadb91;border-left:4px solid #d6b84a;border-radius:4px;padding:11px 13px;margin:0 0 14px;}#iwh54ly{margin:0;}#iq1a9zh{padding:16px 18px;color:#444;line-height:1.6;}#izh35a7{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);}#ii5vye8{background:#db650c;color:#fff;padding:11px 15px;font-size:16px;font-weight:700;letter-spacing:0.01em;}#ifltzje{margin:0;}#iuiyx5u{background:#f7f8f9;border:1px solid #e1e3e5;border-radius:5px;padding:11px 13px;margin-bottom:14px;}#i5e0faq{margin:0 0 14px;}#i6so76q{margin:0;}#i6cyjgt{padding:16px 18px;color:#444;line-height:1.6;}#i4g87qw{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);}#iy25ezr{flex:1 1 460px;min-width:0;display:flex;flex-direction:column;gap:18px;}#ikkqf9d{background:#db650c;color:#fff;padding:11px 15px;font-size:16px;font-weight:700;letter-spacing:0.01em;}#ih3krxz{font-size:15px;font-weight:700;color:#66551a;margin-bottom:9px;}#i248yd8{margin:0 0 9px;line-height:1.55;color:#4b4735;}#igyf591{margin:0 0 9px;line-height:1.55;color:#4b4735;}#iry1cjd{margin:0 0 9px;line-height:1.55;color:#4b4735;}#il192a7{margin:0;line-height:1.55;color:#4b4735;}#i2vm83j{margin:16px;background:#fff7d6;border:1px solid #eadb91;border-left:5px solid #d6b84a;border-radius:5px;padding:15px 16px;box-sizing:border-box;}#i4lrd6n{margin:0;line-height:1.6;color:#444;}#ivo9q7a{padding:0 18px 17px;}#iqve957{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#imprhht{background:#f5f6f7;border:1px solid #e4e6e8;border-radius:5px;padding:9px 11px;margin-bottom:12px;font-weight:700;color:#444;}#ivomoqj{color:#db650c;font-weight:700;text-decoration:underline;}#if3cz5q{margin-bottom:8px;}#inug1sa{margin-bottom:8px;}#i9a6qac{margin-bottom:8px;}#ixr8n1v{margin-bottom:8px;}#i754x53{margin:0;padding-left:22px;line-height:1.6;color:#444;}#i94btic{border-top:1px solid #e1e3e5;padding:18px;}#i79l3l5{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#itelalo{color:#db650c;font-weight:700;text-decoration:underline;}#i6pe56f{margin-bottom:8px;}#iy8t1mb{margin-bottom:8px;}#ix3b3vz{font-weight:700;margin-bottom:4px;color:#333;}#i2072ij{flex:1 1 180px;background:#f7f8f9;border:1px solid #dedfe1;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#iubr3ni{font-weight:700;margin-bottom:4px;color:#333;}#il4eehc{flex:1 1 180px;background:#f7f8f9;border:1px solid #dedfe1;border-radius:5px;padding:11px 13px;box-sizing:border-box;}#is92xd5{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;}#iy69x54{margin-top:10px;color:#666;font-size:13px;}#iti5vrd{margin:0;padding-left:22px;line-height:1.6;color:#444;}#iavfmrk{border-top:1px solid #e1e3e5;padding:18px;}#iq7v5c2{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#i68t454{margin-bottom:8px;}#i71fedu{margin:0;padding-left:22px;line-height:1.6;color:#444;}#i0hvpnq{border-top:1px solid #e1e3e5;padding:18px;}#ifnuz8l{font-size:15px;font-weight:700;color:#db650c;margin-bottom:10px;}#iwab3ok{margin-bottom:8px;}#ir915j8{margin:0;padding-left:22px;line-height:1.6;color:#444;}#ipefxs3{border-top:1px solid #e1e3e5;padding:18px;}#iv5sanm{color:#db650c;font-weight:700;text-decoration:underline;}#ipzf8a5{border-top:1px solid #e1e3e5;background:#f7f8f9;padding:15px 18px;line-height:1.6;color:#444;}#i1laq0i{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);}#i0m3vsl{flex:1 1 460px;min-width:0;display:flex;flex-direction:column;}#iuz8y46{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;}#iehzurw{margin:0 0 7px;line-height:20px;font-weight:400;}#i2ax1y7{color:#e86b13;text-decoration:underline;}#igunqcx{display:inline;color:#e86b13;}#izrq2lf{line-height:18px;font-weight:600;}#iohc69g{box-sizing:border-box;flex:1 1 390px;max-width:390px;}#il10fhl{margin:0 0 7px;line-height:20px;}#i5bm4v3{color:#ee6d12;text-decoration:underline;}#iccvdk5{color:#ee6d12;text-decoration:underline;}#i467ljy{color:#ee6d12;text-decoration:underline;}#icsfdzt{color:#ee6d12;text-decoration:underline;}#i4vv0ai{color:#ee6d12;text-decoration:underline;}#if4kmvj{color:#ee6d12;text-decoration:underline;}#iv31r12{color:#ee6d12;text-decoration:underline;}#igowo44{color:#ee6d12;line-height:19px;}#ir0qg5v{box-sizing:border-box;flex:0 0 170px;text-align:center;}#igjcl73{max-width:100%;height:auto;max-height:60px;}#isfiaxg{display:flex;justify-content:center;margin-bottom:12px;}#i9h3s1d{margin:0 0 0;font-size:0;line-height:1;white-space:nowrap;}#ifdmo4p{margin-top:-2px;}#iyf0okw{color:#ee6d12;text-decoration:underline;}#iijand9{color:#ee6d12;text-decoration:underline;}#iuoxcyq{display:flex;justify-content:flex-end;gap:20px;margin-top:6px;color:#ee6d12;font-size:14px;line-height:18px;}#iryg80x{margin-top:3px;}#ihm9u33{margin-top:13px;}#ilngumf{margin-top:13px;}#ilfsgrh{box-sizing:border-box;flex:1 1 420px;max-width:440px;text-align:right;}#i3big9s{display:flex;justify-content:space-between;gap:55px;width:100%;flex-wrap:wrap;box-sizing:border-box;}#iy4ezec{box-sizing:border-box;width:100%;min-height:252px;padding:19px 40px;background:#292a2a;color:#fff;font-family:Arial,Helvetica,sans-serif;}#ihfw{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;}#i1hzcvl{width:775px;max-width:100%;}#iaalkvi{height:723px;aspect-ratio:unset;}#i3n6l4t{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);}}