.litc-export-only { display: none; }

@media (min-width: 992px) { .lit-hide-desktop { display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) { .lit-hide-tablet { display: none !important; } }
@media (max-width: 767px) { .lit-hide-mobile { display: none !important; } }

.bc-row {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
        min-height: 40px;
        gap: 16px;
      }
      .bc-col {
        flex: 1 1 0%;
        min-width: 0;
        box-sizing: border-box;
        min-height: 40px;
      }
      .bc-col:empty::before {
        content: 'Column — drop here';
        display: block;
        padding: 16px;
        text-align: center;
        color: #aaa;
        font-size: 12px;
        border: 1px dashed #ccc;
        border-radius: 4px;
        pointer-events: none;
      }
      .bc-btn {
        display: inline-block;
        padding: 10px 24px;
        background: #2563eb;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        line-height: 1.4;
      }
      .bc-btn:hover { opacity: 0.88; }
      .bc-link { color: #2563eb; text-decoration: underline; }
      .bc-input,
      .bc-select,
      .bc-textarea {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #d1d5db;
        border-radius: 4px;
        font-size: 14px;
        background: #fff;
        color: #111;
        box-sizing: border-box;
      }
      .bc-textarea { resize: vertical; min-height: 80px; }
      .bc-label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: #374151;
        margin-bottom: 4px;
      }
      .bc-form { display: flex; flex-direction: column; gap: 12px; }

.bc-container { position: relative; }
        .bc-container:empty {
          min-height: 60px;
        }
        .bc-container:empty::before {
          content: 'Container — Drop blocks here';
          display: block;
          padding: 20px;
          text-align: center;
          color: #aaa;
          font-size: 13px;
          border: 2px dashed #ddd;
          border-radius: 4px;
          pointer-events: none;
        }

        /* Thin blue edge indicator on hover / during drag */
        .bc-container.lit-edge-near::after,
        .bc-container.lit-edge-active::after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 2px;
          background: rgba(59, 130, 246, 0.55);
          pointer-events: none;
          z-index: 10;
        }
        .bc-container.lit-edge-left::after { left: 0; }
        .bc-container.lit-edge-right::after { right: 0; }
        .bc-container.lit-edge-resizing,
        .bc-container.lit-edge-resizing * {
          user-select: none;
          -webkit-user-select: none;
        }

.lit-table-outer {
      width: 100%;
      box-sizing: border-box;
    }

    .lit-table-inner {
      padding: 16px;
      overflow-x: auto;
    }

    .lit-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      font-family: inherit;
      table-layout: fixed;
    }

    .lit-table th {
      background: #f0f0f0;
      font-weight: 600;
      color: #333;
      border: 1px solid #ccc;
      padding: 10px 14px;
      text-align: left;
      position: relative;
      overflow: hidden;
      word-break: break-word;
    }

    .lit-table td {
      border: 1px solid #ccc;
      padding: 8px 14px;
      text-align: left;
      color: #444;
      overflow: hidden;
      word-break: break-word;
    }

    .lit-table tbody tr:nth-child(even) td {
      background: #fafafa;
    }

    .col-resize-handle {
      position: absolute;
      right: 0;
      top: 0;
      width: 6px;
      height: 100%;
      cursor: col-resize;
      z-index: 20;
      background: transparent;
      user-select: none;
    }

    .col-resize-handle:hover,
    .col-resize-handle.resizing {
      background: rgba(66, 153, 225, 0.6);
    }

.lit-custom-html-wrapper { min-height: 30px; }

/* ── 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(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(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; }

    /* ── 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; }
    @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; }
}
    @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; }
}

    /* ── 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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
    @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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
}
    @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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateX(-234px); }
}

    /* :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="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="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
    @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="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="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
}
    @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="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="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs { transform: translateY(-192px); }
}

    /* ── 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); }
    @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); }
}
    @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); }
}

    /* ── 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;
      }
    }

.lit-carousel-rh {
          position: absolute;
          width: 14px; height: 14px;
          background: #fff;
          border: 2px solid #555;
          border-radius: 3px;
          z-index: 999;
          box-sizing: border-box;
          cursor: pointer;
        }
        .lit-carousel-rh:hover { background: #555; }
        .lit-carousel-rh[data-dir="nw"] { top: -7px;    left: -7px;  cursor: nw-resize; }
        .lit-carousel-rh[data-dir="ne"] { top: -7px;    right: -7px; cursor: ne-resize; }
        .lit-carousel-rh[data-dir="sw"] { bottom: -7px; left: -7px;  cursor: sw-resize; }
        .lit-carousel-rh[data-dir="se"] { bottom: -7px; right: -7px; cursor: se-resize; }

        /* Prevent images from capturing mouse events in editor so parent can be dragged */
        .lit-product-carousel-nav img {
          pointer-events: none;
          user-select: none;
          -webkit-user-drag: none;
        }

        /* In editor: disable CSS translate, use JS scroll instead */
        .lit-product-carousel-nav .lit-carousel-thumbstrip {
          overflow: visible !important;
        }
        /* Horizontal layouts (top/bottom): scroll X */
        .lit-product-carousel-nav:not(:has(.lit-carousel--nav-left)):not(:has(.lit-carousel--nav-right)) .lit-carousel-thumbstrip .lit-carousel-thumbs {
          overflow-x: auto !important;
          overflow-y: hidden !important;
          transform: none !important;
          transition: none !important;
        }
        /* Vertical layouts (left/right): scroll Y */
        .lit-product-carousel-nav:has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs,
        .lit-product-carousel-nav:has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs {
          overflow-x: hidden !important;
          overflow-y: auto !important;
          transform: none !important;
          transition: none !important;
        }
        /* Remove gradient fade on thumbstrip edges (all 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,
        .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 {
          display: none !important;
        }

[data-gjs-type="lit-cat-card"] { cursor: pointer; }
  [data-gjs-type="lit-cat-card"] * { pointer-events: none; }
  [data-gjs-type="lit-cat-card"][data-cat-strict="1"] * { pointer-events: none !important; }
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) img,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg * {
    pointer-events: auto;
  }
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta *,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link,
  [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link * {
    pointer-events: auto;
  }

.lit-promo-card {
      text-align: center;
      font-family: inherit;
      box-sizing: border-box;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }
    .lit-promo-card * {
      pointer-events: none;
    }
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .promo-card { text-align: center; display: flex; flex-direction: column; }
    .promo-img {
      width: 100%;
      aspect-ratio: 1;
      background: #f4f4f0;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .promo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .promo-desc {
      font-size: 13px;
      color: #888888;
      line-height: 1.6;
      margin-bottom: 5px;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word;
    }
    .promo-price {
      font-size: 20px;
      font-weight: 700;
      color: #333333;
      margin-top: auto;
    }
    .litc-export-only { display: none; }

.tab-frame { display: block; position: relative; }
  .tab-frame > input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }
  .tab-frame > .tab-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #e2e8f0;
  }
  .tab-frame > .tab-headers label {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    user-select: none;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
  }
  .tab-frame > .tab-headers label:hover { color: #222; }
  .tab-frame > .tab-headers label.is-active {
    color: #2b6cb0;
    border-bottom-color: #4299e1;
    font-weight: 600;
  }
  .tab-frame > .tab-contents .tab-content { display: none; padding: 16px 0; }
  .tab-frame > .tab-contents .tab-content.is-active { display: block; }

body { background-color: #fff }
    * ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.1) }
    * ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2) }
    * ::-webkit-scrollbar { width: 10px }
  

      

      [data-gjs-type="wrapper"] {
        min-height: 100vh;
        padding-top: 0.001em;
      }

      .gjs-dashed *[data-gjs-highlightable] {
        outline: 1px dashed rgba(170,170,170,0.7);
        outline-offset: -2px;
      }

      .gjs-selected {
        outline: 2px solid #3b97e3 !important;
        outline-offset: -2px;
      }

      .gjs-selected-parent {
        outline: 2px solid #ffca6f !important
      }

      .gjs-no-select {
        user-select: none;
        -webkit-user-select:none;
        -moz-user-select: none;
      }

      .gjs-freezed {
        opacity: 0.5;
        pointer-events: none;
      }

      .gjs-no-pointer {
        pointer-events: none;
      }

      .gjs-pointer-init {
        pointer-events: initial;
      }

      .gjs-plh-image {
        background: #f5f5f5;
        border: none;
        height: 100px;
        width: 100px;
        display: block;
        outline: 3px solid #ffca6f;
        cursor: pointer;
        outline-offset: -2px
      }

      .gjs-grabbing {
        cursor: grabbing;
        cursor: -webkit-grabbing;
      }

      .gjs-is__grabbing {
        overflow-x: hidden;
      }

      .gjs-is__grabbing,
      .gjs-is__grabbing * {
        cursor: grabbing !important;
      }

      
      * { box-sizing: border-box; } body {margin: 0;}

.bc-row{display:flex;flex-wrap:wrap;width:100%;box-sizing:border-box;min-height:40px;row-gap:16px;column-gap:16px;}

.bc-col{flex-grow:1;flex-shrink:1;flex-basis:0%;min-width:0px;box-sizing:border-box;min-height:40px;}

.bc-col:empty::before{content:"Column — drop here";display:block;padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;text-align:center;color:rgb(170, 170, 170);font-size:12px;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-top-style:dashed;border-right-style:dashed;border-bottom-style:dashed;border-left-style:dashed;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;pointer-events:none;}

.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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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:empty{min-height:60px;}

.bc-container:empty::before{content:"Container — Drop blocks here";display:block;padding-top:20px;padding-right:20px;padding-bottom:20px;padding-left:20px;text-align:center;color:rgb(170, 170, 170);font-size:13px;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-top-style:dashed;border-right-style:dashed;border-bottom-style:dashed;border-left-style:dashed;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;pointer-events:none;}

.bc-container.lit-edge-near::after{content:"";position:absolute;top:0px;bottom:0px;width:2px;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(59, 130, 246, 0.55);pointer-events:none;z-index:10;}

.bc-container.lit-edge-active::after{content:"";position:absolute;top:0px;bottom:0px;width:2px;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(59, 130, 246, 0.55);pointer-events:none;z-index:10;}

.bc-container.lit-edge-left::after{left:0px;}

.bc-container.lit-edge-right::after{right:0px;}

.bc-container.lit-edge-resizing, .bc-container.lit-edge-resizing *{user-select:none;}

.lit-table-outer{width:100%;box-sizing:border-box;}

.lit-table-inner{padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;overflow-x:auto;}

.lit-table{width:100%;border-collapse:collapse;font-size:14px;font-family:inherit;table-layout:fixed;}

.lit-table th{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);font-weight:600;color:rgb(51, 51, 51);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(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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;padding-top:10px;padding-right:14px;padding-bottom:10px;padding-left:14px;text-align:left;position:relative;overflow-x:hidden;overflow-y:hidden;word-break:break-word;}

.lit-table td{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(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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;padding-top:8px;padding-right:14px;padding-bottom:8px;padding-left:14px;text-align:left;color:rgb(68, 68, 68);overflow-x:hidden;overflow-y:hidden;word-break:break-word;}

.lit-table tbody tr:nth-child(2n) td{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);}

.col-resize-handle{position:absolute;right:0px;top:0px;width:6px;height:100%;cursor:col-resize;z-index:20;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;user-select:none;}

.col-resize-handle: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:rgba(66, 153, 225, 0.6);}

.col-resize-handle.resizing{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(66, 153, 225, 0.6);}

.lit-custom-html-wrapper{min-height:30px;}

.lit-carousel input[type="radio"]{display:none;}

.lit-carousel-slide{display:none;width:100%;height:100%;align-items:center;justify-content:center;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);position:absolute;top:0px;left:0px;}

.lit-carousel-slide img{width:100%;height:100%;object-fit:contain;padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px;box-sizing:border-box;display:block;}

.lit-carousel-thumb{display:flex;flex-shrink:0;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;cursor:pointer;overflow-x:hidden;overflow-y:hidden;align-items:center;justify-content:center;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(238, 238, 238);transition-behavior:normal;transition-duration:0.15s;transition-timing-function:ease;transition-delay:0s;transition-property:border-color;box-sizing:border-box;}

.lit-carousel-thumb:hover{border-top-color:rgb(153, 153, 153);border-right-color:rgb(153, 153, 153);border-bottom-color:rgb(153, 153, 153);border-left-color:rgb(153, 153, 153);}

.lit-carousel-thumb img{width:100%;height:100%;object-fit:contain;padding-top:4px;padding-right:4px;padding-bottom:4px;padding-left:4px;box-sizing:border-box;display:block;}

.lit-carousel-thumbs::-webkit-scrollbar{display:none;}

.lit-carousel-thumbs{scrollbar-width:none;}

.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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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{overflow-x:auto !important;overflow-y:hidden !important;transform:none !important;transition-behavior:normal !important;transition-duration:0s !important;transition-timing-function:ease !important;transition-delay:0s !important;transition-property:none !important;}

.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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;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(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(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-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-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="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="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}

@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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="3"]:is(:has(input:nth-of-type(4):checked)) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateX(-234px);}}

@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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="3"]: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(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="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="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}

@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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.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);}}

@media (max-width: 992px){.lit-product-carousel-nav[data-tablet-thumbs="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}}

@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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.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);}}

@media (max-width: 600px){.lit-product-carousel-nav[data-phone-thumbs="3"]: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="3"]:is(:has(input:nth-of-type(4):checked)):has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{transform:translateY(-192px);}}

.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-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;}

.lit-carousel-rh{position:absolute;width:14px;height: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);border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:rgb(85, 85, 85);border-right-color:rgb(85, 85, 85);border-bottom-color:rgb(85, 85, 85);border-left-color:rgb(85, 85, 85);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px;z-index:999;box-sizing:border-box;cursor:pointer;}

.lit-carousel-rh: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(85, 85, 85);}

.lit-carousel-rh[data-dir="nw"]{top:-7px;left:-7px;cursor:nw-resize;}

.lit-carousel-rh[data-dir="ne"]{top:-7px;right:-7px;cursor:ne-resize;}

.lit-carousel-rh[data-dir="sw"]{bottom:-7px;left:-7px;cursor:sw-resize;}

.lit-carousel-rh[data-dir="se"]{bottom:-7px;right:-7px;cursor:se-resize;}

.lit-product-carousel-nav img{pointer-events:none;user-select:none;-webkit-user-drag:none;}

.lit-product-carousel-nav .lit-carousel-thumbstrip{overflow-x:visible !important;overflow-y:visible !important;}

.lit-product-carousel-nav:has(.lit-carousel--nav-left) .lit-carousel-thumbstrip .lit-carousel-thumbs, .lit-product-carousel-nav:has(.lit-carousel--nav-right) .lit-carousel-thumbstrip .lit-carousel-thumbs{overflow-x:hidden !important;overflow-y:auto !important;transform:none !important;transition-behavior:normal !important;transition-duration:0s !important;transition-timing-function:ease !important;transition-delay:0s !important;transition-property:none !important;}

.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, .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{display:none !important;}

[data-gjs-type="lit-cat-card"]{cursor:pointer;}

[data-gjs-type="lit-cat-card"] *{pointer-events:none;}

[data-gjs-type="lit-cat-card"][data-cat-strict="1"] *{pointer-events:none !important;}

[data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) img, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) svg *{pointer-events:auto;}

[data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .box-link *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .boxlink *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .platform-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-big-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-small-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .catbox-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-cat-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-label-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .style-name *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .range-title *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-sub *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cat-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .feat-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .subtitle *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shopnow *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .shop-now *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-cta *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .col-card-link *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .card-cta *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .cta-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .btn-label *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .tile-cta *, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link, [data-gjs-type="lit-cat-card"]:not([data-cat-strict="1"]) .category-link *{pointer-events:auto;}

.tab-frame{display:block;position:relative;}

.tab-frame > input[type="radio"]{display:none !important;}

.tab-frame > .tab-headers{display:flex;flex-wrap:wrap;row-gap:0px;column-gap:0px;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:rgb(226, 232, 240);}

.tab-frame > .tab-headers label{display:inline-block;padding-top:10px;padding-right:18px;padding-bottom:10px;padding-left:18px;font-size:14px;color:rgb(85, 85, 85);cursor:pointer;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:transparent;margin-bottom:-1px;user-select:none;transition-behavior:normal, normal, normal;transition-duration:0.15s, 0.15s, 0.15s;transition-timing-function:ease, ease, ease;transition-delay:0s, 0s, 0s;transition-property:color, border-color, background;}

.tab-frame > .tab-headers label:hover{color:rgb(34, 34, 34);}

.tab-frame > .tab-headers label.is-active{color:rgb(43, 108, 176);border-bottom-color:rgb(66, 153, 225);font-weight:600;}

.tab-frame > .tab-contents .tab-content{display:none;padding-top:16px;padding-right:0px;padding-bottom:16px;padding-left:0px;}

.tab-frame > .tab-contents .tab-content.is-active{display:block;}

body{font-family:system_ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;font-size:13px !important;line-height:1.6 !important;color:rgb(37, 37, 37) !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 242, 231) !important;}

* ::-webkit-scrollbar-track{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(0, 0, 0, 0.1);}

* ::-webkit-scrollbar-thumb{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.2);}

* ::-webkit-scrollbar{width:10px;}

[data-gjs-type="wrapper"]{min-height:100vh;padding-top:0.001em;}

.gjs-dashed [data-gjs-highlightable]{outline-color:rgba(170, 170, 170, 0.7);outline-style:dashed;outline-width:1px;outline-offset:-2px;}

.gjs-selected{outline-offset:-2px;outline-color:rgb(59, 151, 227) !important;outline-style:solid !important;outline-width:2px !important;}

.gjs-selected-parent{outline-color:rgb(255, 202, 111) !important;outline-style:solid !important;outline-width:2px !important;}

.gjs-no-select{user-select:none;}

.gjs-freezed{opacity:0.5;pointer-events:none;}

.gjs-no-pointer{pointer-events:none;}

.gjs-pointer-init{pointer-events:initial;}

.gjs-plh-image{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);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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;height:100px;width:100px;display:block;outline-color:rgb(255, 202, 111);outline-style:solid;outline-width:3px;cursor:pointer;outline-offset:-2px;}

.gjs-grabbing{cursor:-webkit-grabbing;}

.gjs-is__grabbing{overflow-x:hidden;}

.gjs-is__grabbing, .gjs-is__grabbing *{cursor:grabbing !important;}

*{box-sizing:border-box !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;}

.site-header{text-align:center !important;padding-top:20px !important;padding-right:0px !important;padding-bottom:20px !important;padding-left:0px !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;border-bottom-width:1px !important;border-bottom-style:solid !important;border-bottom-color:rgba(37, 37, 37, 0.1) !important;}

.store-logo{display:inline-flex !important;align-items:center !important;justify-content:center !important;width:auto !important;height:75px !important;overflow-x:hidden !important;overflow-y:hidden !important;z-index:999 !important;}

.store-logo a{display:flex !important;align-items:center !important;justify-content:center !important;height:100% !important;}

.store-logo img{height:100% !important;width:auto !important;max-width:300px !important;object-fit:contain !important;display:block !important;}

.main-nav{background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(22, 37, 29) !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgba(37, 37, 37, 0.1) !important;border-bottom-width:1px !important;border-bottom-style:solid !important;border-bottom-color:rgba(37, 37, 37, 0.1) !important;display:flex !important;justify-content:center !important;flex-wrap:wrap !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;}

.main-nav a{display:block !important;padding-top:12px !important;padding-right:16px !important;padding-bottom:12px !important;padding-left:16px !important;font-size:11px !important;font-weight:600 !important;letter-spacing:0.05em !important;text-transform:uppercase !important;color:rgb(231, 224, 177) !important;text-decoration-line:none !important;text-decoration-thickness:initial !important;text-decoration-style:initial !important;text-decoration-color:initial !important;white-space-collapse:collapse !important;text-wrap-mode:nowrap !important;border-bottom-width:2px !important;border-bottom-style:solid !important;border-bottom-color:transparent !important;transition-behavior:normal, normal !important;transition-duration:0.15s, 0.15s !important;transition-timing-function:ease, ease !important;transition-delay:0s, 0s !important;transition-property:color, border-color !important;}

.main-nav a:hover{color:rgb(255, 255, 255) !important;}

.product-showcase{max-width:1000px !important;margin-top:0px !important;margin-right:auto !important;margin-bottom:0px !important;margin-left:auto !important;padding-top:40px !important;padding-right:20px !important;padding-bottom:40px !important;padding-left:20px !important;display:flex !important;row-gap:40px !important;column-gap:40px !important;align-items:flex-start !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 242, 231) !important;}

.product-img-col{flex-grow:1 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:280px !important;}

.product-image{width:100% !important;aspect-ratio:1 / 1 !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(247, 247, 247) !important;padding-top:20px !important;padding-right:20px !important;padding-bottom:20px !important;padding-left:20px !important;border-top-width:1px !important;border-right-width:1px !important;border-bottom-width:1px !important;border-left-width:1px !important;border-top-style:solid !important;border-right-style:solid !important;border-bottom-style:solid !important;border-left-style:solid !important;border-top-color:rgba(37, 37, 37, 0.1) !important;border-right-color:rgba(37, 37, 37, 0.1) !important;border-bottom-color:rgba(37, 37, 37, 0.1) !important;border-left-color:rgba(37, 37, 37, 0.1) !important;border-image-source:initial !important;border-image-slice:initial !important;border-image-width:initial !important;border-image-outset:initial !important;border-image-repeat:initial !important;display:flex !important;align-items:center !important;justify-content:center !important;}

.product-image img{width:100% !important;height:100% !important;object-fit:contain !important;}

.product-info-col{flex-grow:1 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:280px !important;}

.product-title h1{font-size:24px !important;font-weight:600 !important;color:rgb(23, 23, 23) !important;line-height:1.3 !important;margin-bottom:24px !important;}

.section-label{font-size:11px !important;font-weight:700 !important;letter-spacing:0.1em !important;text-transform:uppercase !important;color:rgb(37, 37, 37) !important;margin-bottom:12px !important;padding-bottom:8px !important;border-bottom-width:1px !important;border-bottom-style:solid !important;border-bottom-color:rgba(37, 37, 37, 0.1) !important;}

.description{font-size:13px !important;line-height:1.8 !important;color:rgb(85, 85, 85) !important;margin-bottom:28px !important;}

.description p{margin-bottom:12px !important;}

.description p:last-child{margin-bottom:0px !important;}

.info-section{margin-bottom:32px !important;}

.info-section:last-child{margin-bottom:0px !important;}

.info-grid{display:grid !important;grid-template-columns:1fr !important;row-gap:8px !important;column-gap:8px !important;}

.info-item{display:flex !important;justify-content:space-between !important;align-items:flex-start !important;font-size:13px !important;line-height:1.6 !important;color:rgb(85, 85, 85) !important;padding-top:6px !important;padding-right:0px !important;padding-bottom:6px !important;padding-left:0px !important;}

.info-item strong{color:rgb(37, 37, 37) !important;font-weight:600 !important;min-width:140px !important;}

.tabs-container{max-width:1000px !important;margin-top:0px !important;margin-right:auto !important;margin-bottom:0px !important;margin-left:auto !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 242, 231) !important;}

.tab-headers{display:flex !important;flex-wrap:wrap !important;border-bottom-width:2px !important;border-bottom-style:solid !important;border-bottom-color:rgb(22, 37, 29) !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 242, 231) !important;margin-bottom:0px !important;overflow-x:auto !important;}

.tab-headers::-webkit-scrollbar{display:none !important;}

.tab-headers label{flex-grow:1 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:140px !important;padding-top:12px !important;padding-right:16px !important;padding-bottom:12px !important;padding-left:16px !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 242, 231) !important;color:rgb(37, 37, 37) !important;font-size:13px !important;font-weight:600 !important;text-transform:uppercase !important;letter-spacing:0.05em !important;cursor:pointer !important;border-bottom-width:3px !important;border-bottom-style:solid !important;border-bottom-color:transparent !important;text-align:center !important;transition-behavior:normal !important;transition-duration:0.2s !important;transition-timing-function:ease !important;transition-delay:0s !important;transition-property:all !important;white-space-collapse:collapse !important;text-wrap-mode:nowrap !important;user-select:none !important;}

.tab-headers label:hover{background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(240, 237, 228) !important;}

#tab-about:checked ~ .tab-headers label[for="tab-about"], #tab-payment:checked ~ .tab-headers label[for="tab-payment"], #tab-shipping:checked ~ .tab-headers label[for="tab-shipping"], #tab-returns:checked ~ .tab-headers label[for="tab-returns"], #tab-contact:checked ~ .tab-headers label[for="tab-contact"]{color:rgb(22, 37, 29) !important;border-bottom-color:rgb(22, 37, 29) !important;font-weight:700 !important;}

.tab-contents{padding-top:30px !important;padding-right:20px !important;padding-bottom:30px !important;padding-left:20px !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 242, 231) !important;}

.tab-content{max-width:1000px !important;margin-top:0px !important;margin-right:auto !important;margin-bottom:0px !important;margin-left:auto !important;}

#tab-about:checked ~ .tab-contents .tab-content:nth-child(1), #tab-payment:checked ~ .tab-contents .tab-content:nth-child(2), #tab-shipping:checked ~ .tab-contents .tab-content:nth-child(3), #tab-returns:checked ~ .tab-contents .tab-content:nth-child(4), #tab-contact:checked ~ .tab-contents .tab-content:nth-child(5){display:block !important;}

.tab-content h3{font-size:16px !important;font-weight:600 !important;color:rgb(23, 23, 23) !important;margin-bottom:16px !important;}

.tab-content p{font-size:13px !important;line-height:1.8 !important;color:rgb(85, 85, 85) !important;margin-bottom:12px !important;}

.tab-content ul{font-size:13px !important;line-height:1.8 !important;color:rgb(85, 85, 85) !important;margin-left:20px !important;margin-bottom:12px !important;}

.tab-content ul li{margin-bottom:8px !important;}

.perks-bar{background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(22, 37, 29) !important;display:flex !important;justify-content:center !important;flex-wrap:wrap !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;margin-top:40px !important;}

.perk{display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:center !important;row-gap:4px !important;column-gap:4px !important;padding-top:16px !important;padding-right:20px !important;padding-bottom:16px !important;padding-left:20px !important;border-right-width:1px !important;border-right-style:solid !important;border-right-color:rgba(255, 255, 255, 0.2) !important;flex-grow:1 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:180px !important;max-width:250px !important;text-align:center !important;}

.perk:last-child{border-right-width:medium !important;border-right-style:none !important;border-right-color:currentcolor !important;}

.perk-text h3{font-size:11px !important;font-weight:700 !important;color:rgb(255, 255, 255) !important;line-height:1.2 !important;text-transform:uppercase !important;margin-bottom:2px !important;}

.perk-text p{font-size:10px !important;color:rgba(255, 255, 255, 0.8) !important;font-weight:400 !important;}

.features-bar{background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;display:flex !important;justify-content:center !important;flex-wrap:wrap !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgba(37, 37, 37, 0.1) !important;border-bottom-width:1px !important;border-bottom-style:solid !important;border-bottom-color:rgba(37, 37, 37, 0.1) !important;}

.feature{display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:center !important;row-gap:4px !important;column-gap:4px !important;padding-top:16px !important;padding-right:20px !important;padding-bottom:16px !important;padding-left:20px !important;border-right-width:1px !important;border-right-style:solid !important;border-right-color:rgba(37, 37, 37, 0.1) !important;flex-grow:1 !important;flex-shrink:1 !important;flex-basis:0% !important;min-width:140px !important;max-width:200px !important;text-align:center !important;}

.feature:last-child{border-right-width:medium !important;border-right-style:none !important;border-right-color:currentcolor !important;}

.feature:first-child{background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;}

.feature:nth-child(2){background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;}

.feature:nth-child(3){background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;}

.feature:nth-child(4){background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;}

.feature:nth-child(5){background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;}

.feature-heading{font-size:11px !important;font-weight:700 !important;color:rgb(37, 37, 37) !important;line-height:1.2 !important;text-transform:uppercase !important;}

.feature-icon{width:32px !important;height:32px !important;display:flex !important;align-items:center !important;justify-content:center !important;}

.feature-icon svg{width:100% !important;height:100% !important;}

.feature:nth-child(n+2) .feature-icon svg{fill:rgb(37, 37, 37) !important;}

.site-footer{background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(255, 255, 255) !important;text-align:center !important;padding-top:20px !important;padding-right:20px !important;padding-bottom:20px !important;padding-left:20px !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgba(37, 37, 37, 0.1) !important;}

.footer-logo{display:inline-flex !important;align-items:center !important;justify-content:center !important;height:50px !important;margin-bottom:20px !important;}

.footer-logo img{height:100% !important;width:auto !important;max-width:250px !important;object-fit:contain !important;}

.footer-pay-row{display:flex !important;justify-content:center !important;row-gap:12px !important;column-gap:12px !important;margin-top:16px !important;align-items:center !important;flex-wrap:wrap !important;}

.pay-logo{height:24px !important;width:auto !important;max-width:70px !important;object-fit:contain !important;display:block !important;}

#i8egt{background-color:rgb(244, 242, 231) !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;border-top-style:solid !important;border-right-style:solid !important;border-bottom-style:solid !important;border-left-style:solid !important;border-top-color:black !important;border-right-color:black !important;border-bottom-color:black !important;border-left-color:black !important;border-image-source:initial !important;border-image-slice:initial !important;border-image-width:initial !important;border-image-outset:initial !important;border-image-repeat:initial !important;}

#i0uvf6{width:1000px !important;}

#i8kzqv{width:1000px !important;}

#iph72m{font-size:11px !important;font-weight:700 !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:8px !important;margin-left:0px !important;color:rgb(37, 37, 37) !important;letter-spacing:0.1em !important;text-align:center !important;}

@media (min-width: 1025px){#icao2g{grid-template-columns:repeat(4, 1fr);display:grid;}}

@media (min-width: 769px) and (max-width: 1024px){#icao2g{grid-template-columns:repeat(2, 1fr);display:grid;}}

.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;line-height:27px;}

#ib5a0p{border-right-width:medium !important;border-bottom-width:medium !important;border-left-width:medium !important;border-right-style:none !important;border-bottom-style:none !important;border-left-style:none !important;border-right-color:currentcolor !important;border-bottom-color:currentcolor !important;border-left-color:currentcolor !important;border-image-source:none !important;border-image-slice:100% !important;border-image-width:1 !important;border-image-outset:0 !important;border-image-repeat:stretch !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:100% !important;}

#id2oxb{width:1000px !important;}

#iph72m-2{font-size:11px !important;font-weight:700 !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:8px !important;margin-left:0px !important;color:rgb(37, 37, 37) !important;letter-spacing:0.1em !important;text-align:center !important;}

#ieu3mc{border-right-width:medium !important;border-bottom-width:medium !important;border-left-width:medium !important;border-right-style:none !important;border-bottom-style:none !important;border-left-style:none !important;border-right-color:currentcolor !important;border-bottom-color:currentcolor !important;border-left-color:currentcolor !important;border-image-source:none !important;border-image-slice:100% !important;border-image-width:1 !important;border-image-outset:0 !important;border-image-repeat:stretch !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:100% !important;}

@media (min-width: 1025px){#iuvhey{grid-template-columns:repeat(4, 1fr);display:grid;}}

@media (min-width: 769px) and (max-width: 1024px){#iuvhey{grid-template-columns:repeat(2, 1fr);display:grid;}}

details summary::-webkit-details-marker{display:none;}

details[open] summary span:first-child{transform:rotate(90deg);}

.accordion input{display:none;}

.accordion label{display:block;padding-top:14px;padding-right:18px;padding-bottom:14px;padding-left:18px;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:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;cursor:pointer;font-family:Arial, Helvetica, sans-serif;font-size:11pt;font-weight:bold;color:rgb(37, 37, 37);letter-spacing:0.1em;user-select:none;}

.accordion label::before{content:"❯";display:inline-block;width:18px;transition-behavior:normal;transition-duration:0.2s;transition-timing-function:ease;transition-delay:0s;transition-property:transform;}

.accordion input:checked + label::before{transform:rotate(90deg);}

.accordion .content{max-height:0px;overflow-x:hidden;overflow-y:hidden;transition-behavior:normal;transition-duration:0.25s;transition-timing-function:ease;transition-delay:0s;transition-property:max-height;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-right-color:rgb(221, 221, 221);border-bottom-color:rgb(221, 221, 221);border-left-color:rgb(221, 221, 221);border-image-source:initial;border-image-slice:initial;border-image-width:initial;border-image-outset:initial;border-image-repeat:initial;border-top-width:medium;border-top-style:none;border-top-color:currentcolor;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}

.accordion input:checked ~ .content{max-height:500px;}

.accordion table{width:100%;border-collapse:collapse;font-family:Arial, Helvetica, sans-serif;font-size:14px;}

.accordion td{padding-top:8px;padding-right:18px;padding-bottom:8px;padding-left:18px;}

.accordion td:first-child{font-weight:bold;width:40%;}

#i118bi{justify-content:flex-start !important;font-size:11px !important;}

#ikpndc{letter-spacing:0.1em !important;}

#i30mc2{font-weight:400 !important;}

#i78a2j{font-family:Arial, Helvetica, sans-serif !important;font-weight:300 !important;}

#ierurx{font-weight:400 !important;}

#ify2vf{width:1000px !important;}

#ic0cn2{border-right-width:medium !important;border-bottom-width:medium !important;border-left-width:medium !important;border-right-style:none !important;border-bottom-style:none !important;border-left-style:none !important;border-right-color:currentcolor !important;border-bottom-color:currentcolor !important;border-left-color:currentcolor !important;border-image-source:none !important;border-image-slice:100% !important;border-image-width:1 !important;border-image-outset:0 !important;border-image-repeat:stretch !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:100% !important;}

#ieih5f{font-size:11px !important;font-weight:700 !important;line-height:1.2 !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:8px !important;margin-left:0px !important;letter-spacing:0.1em !important;color:rgb(37, 37, 37) !important;text-align:center !important;}

#izirrv{border-right-width:medium !important;border-bottom-width:medium !important;border-left-width:medium !important;border-right-style:none !important;border-bottom-style:none !important;border-left-style:none !important;border-right-color:currentcolor !important;border-bottom-color:currentcolor !important;border-left-color:currentcolor !important;border-image-source:none !important;border-image-slice:100% !important;border-image-width:1 !important;border-image-outset:0 !important;border-image-repeat:stretch !important;border-top-width:1px !important;border-top-style:solid !important;border-top-color:rgb(224, 224, 224) !important;margin-top:16px !important;margin-bottom:16px !important;width:100% !important;}

#i1aq2w{font-size:15px !important;font-weight:700 !important;line-height:1.2 !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:8px !important;margin-left:0px !important;text-align:center !important;letter-spacing:0.1em !important;color:rgb(37, 37, 37) !important;}

@media (min-width: 1025px){#ilvutm{grid-template-columns:repeat(4, 1fr);display:grid;}}

@media (min-width: 769px) and (max-width: 1024px){#ilvutm{grid-template-columns:repeat(2, 1fr);display:grid;}}

#imc6ul{display:block !important;object-fit:cover !important;}

#inzu89{display:block !important;object-fit:cover !important;}

#i7qnnc{display:block !important;object-fit:cover !important;}

#ild7k7{display:block !important;object-fit:cover !important;}

#iwhj64{display:block !important;object-fit:cover !important;}

#ixiut7{display:block !important;object-fit:cover !important;}

#iudc4y{display:block !important;object-fit:cover !important;}

#ifrnt8{display:block !important;object-fit:cover !important;}

#icyo5e{display:block !important;object-fit:cover !important;}

#i4agx2{display:block !important;object-fit:cover !important;}

#iyan84{display:block !important;object-fit:cover !important;}

#iji50f{display:block !important;object-fit:cover !important;}

#iafteb{display:block !important;object-fit:cover !important;}

@media (min-width: 992px){.lit-hide-desktop{display:none !important;}}

@media (min-width: 768px) and (max-width: 991px){.lit-hide-tablet{display:none !important;}}

@media (max-width: 767px){.lit-hide-mobile{display:none !important;}}

.bc-container{width:1140px;max-width:100% !important;margin-left:auto !important;margin-right:auto !important;padding-left:16px !important;padding-right:16px !important;box-sizing:border-box !important;}

.lit-promo-card{text-align:center !important;font-family:inherit !important;box-sizing:border-box !important;cursor:pointer !important;text-decoration-line:none !important;text-decoration-thickness:initial !important;text-decoration-style:initial !important;text-decoration-color:initial !important;color:inherit !important;}

.lit-promo-card *{pointer-events:none !important;}

.promo-grid{display:grid !important;grid-template-columns:repeat(4, 1fr) !important;row-gap:14px !important;column-gap:14px !important;}

.promo-card{text-align:center !important;display:flex !important;flex-direction:column !important;}

.promo-img{width:100% !important;aspect-ratio:1 / 1 !important;background-image:initial !important;background-position-x:initial !important;background-position-y:initial !important;background-size:initial !important;background-repeat:initial !important;background-attachment:initial !important;background-origin:initial !important;background-clip:initial !important;background-color:rgb(244, 244, 240) !important;margin-bottom:8px !important;display:flex !important;align-items:center !important;justify-content:center !important;overflow-x:hidden !important;overflow-y:hidden !important;}

.promo-img img{width:100% !important;height:100% !important;object-fit:cover !important;display:block !important;}

.promo-desc{font-size:13px !important;color:rgb(136, 136, 136) !important;line-height:1.6 !important;margin-bottom:5px !important;font-weight:300 !important;display:-webkit-box !important;-webkit-line-clamp:3 !important;-webkit-box-orient:vertical !important;overflow-x:hidden !important;overflow-y:hidden !important;word-break:break-word !important;}

.promo-price{font-size:20px !important;font-weight:700 !important;color:rgb(51, 51, 51) !important;margin-top:auto !important;}

.litc-export-only{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;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}}

@media (max-width: 1024px){.lit-product-carousel-nav[data-tablet-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(n+2){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-carousel-thumb:nth-child(-n+1){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(n+3){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-carousel-thumb:nth-child(-n+2){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(n+4){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-carousel-thumb:nth-child(-n+3){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(n+5){display:none !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-carousel-thumb:nth-child(-n+4){display:flex !important;}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="1"] .lit-collage-grid{grid-template-columns:repeat(1, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="2"] .lit-collage-grid{grid-template-columns:repeat(2, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="3"] .lit-collage-grid{grid-template-columns:repeat(3, 1fr);}}

@media (max-width: 768px){.lit-product-carousel-nav[data-phone-thumbs="4"] .lit-collage-grid{grid-template-columns:repeat(4, 1fr);}}

@media (max-width: 768px){.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;}}

@media (max-width: 768px){.product-showcase{flex-direction:column !important;row-gap:20px !important;column-gap:20px !important;padding-top:20px !important;padding-right:20px !important;padding-bottom:20px !important;padding-left:20px !important;}}

@media (max-width: 768px){.main-nav{flex-direction:column !important;}}

@media (max-width: 768px){.main-nav a{width:100% !important;border-bottom-width:1px !important;border-bottom-style:solid !important;border-bottom-color:rgba(37, 37, 37, 0.1) !important;}}

@media (max-width: 768px){.perk{min-width:100% !important;max-width:100% !important;}}

@media (max-width: 768px){.perks-bar{flex-direction:column !important;}}

@media (max-width: 768px){.perk-icon{width:28px !important;height:28px !important;}}

@media (max-width: 768px){.product-title h1{font-size:20px !important;}}

@media (max-width: 768px){#icao2g{grid-template-columns:repeat(1, 1fr);display:grid;}}

@media (max-width: 768px){#iuvhey{grid-template-columns:repeat(1, 1fr);display:grid;}}

@media (max-width: 768px){#ilvutm{grid-template-columns:repeat(1, 1fr);display:grid;}}