  /* ── Reset & Base ── */
  .ld-template *, .ld-template *::before, .ld-template *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .ld-template {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2c2c2c;
    background: #f4f5f7;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .ld-template img { max-width: 100%; height: auto; display: block; }
  .ld-template a { color: inherit; text-decoration: none; }
  .ld-template ul { list-style: none; }
  .ld-template h1, .ld-template h2, .ld-template h3 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
  }

  /* ── Header ── */
  .ld-header {
    background: #1a1a1a;
    border-bottom: 3px solid #e8750a;
  }
  .ld-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .ld-logo img {
    max-height: 56px;
    width: auto;
  }

  /* ── Navigation ── */
  .ld-nav-toggle { display: none; }
  .ld-nav-toggle-btn {
    display: none;
    background: #e8750a;
    color: #fff !important;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
  }
  .ld-nav-toggle-icon {
    display: none;
    font-size: 20px;
    line-height: 1;
  }
  .ld-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .ld-nav__list > li { position: relative; }
  .ld-nav__list > li > a,
  .ld-nav__list > li > .ld-nav__parent {
    display: block;
    padding: 10px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: background 0.2s;
  }
  .ld-nav__list > li > a:hover,
  .ld-nav__list > li > .ld-nav__parent:hover {
    background: rgba(255,255,255,0.1);
  }
  .ld-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #2a2a2a;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 100;
    padding: 6px 0;
  }
  .ld-nav__dropdown a {
    display: block;
    padding: 10px 18px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
  }
  .ld-nav__dropdown a:hover {
    background: #e8750a;
    color: #fff;
  }
  .ld-nav__item--has-drop:hover .ld-nav__dropdown { display: block; }

  /* ── Trust Bar ── */
  .ld-trust {
    display: flex;
    flex-wrap: nowrap;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
  }
  .ld-trust__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    border-right: 1px solid #eee;
    min-width: 0;
    white-space: nowrap;
  }
  .ld-trust__item:last-child { border-right: none; }
  .ld-trust__icon {
    width: 32px;
    height: 32px;
    background: #fff3e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
  }
  .ld-trust__text {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* ── Main Product Layout ── */
  .ld-main { padding: 24px; }
  .ld-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    margin-bottom: 24px;
  }

  /* ── Gallery ── */
  .ld-gallery { width: 100%; }
  .ld-gallery__main-wrap {
    position: relative;
    margin-bottom: 12px;
  }
  .ld-gallery__main {
    position: relative;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    touch-action: pan-y pinch-zoom;
  }
  .ld-gallery__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,0,0,0.15);
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background 0.2s, color 0.2s;
  }
  .ld-gallery__arrow:hover {
    background: #e8750a;
    color: #fff;
  }
  .ld-gallery__arrow--prev { left: 6px; }
  .ld-gallery__arrow--next { right: 6px; }
  .ld-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 12px;
  }
  .ld-gallery__radio { display: none; }
  #ld-img-0:checked ~ .ld-gallery__main-wrap .ld-gallery__slide--0 { opacity: 1; z-index: 1; }
  #ld-img-1:checked ~ .ld-gallery__main-wrap .ld-gallery__slide--1 { opacity: 1; z-index: 1; }
  #ld-img-2:checked ~ .ld-gallery__main-wrap .ld-gallery__slide--2 { opacity: 1; z-index: 1; }
  #ld-img-3:checked ~ .ld-gallery__main-wrap .ld-gallery__slide--3 { opacity: 1; z-index: 1; }
  #ld-img-4:checked ~ .ld-gallery__main-wrap .ld-gallery__slide--4 { opacity: 1; z-index: 1; }
  .ld-gallery__thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .ld-gallery__thumb {
    width: calc(20% - 7px);
    aspect-ratio: 1 / 1;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
  }
  .ld-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 4px;
  }
  #ld-img-0:checked ~ .ld-gallery__thumbs label[for="ld-img-0"],
  #ld-img-1:checked ~ .ld-gallery__thumbs label[for="ld-img-1"],
  #ld-img-2:checked ~ .ld-gallery__thumbs label[for="ld-img-2"],
  #ld-img-3:checked ~ .ld-gallery__thumbs label[for="ld-img-3"],
  #ld-img-4:checked ~ .ld-gallery__thumbs label[for="ld-img-4"] {
    border-color: #e8750a;
    box-shadow: 0 0 0 1px #e8750a;
  }
  .ld-gallery__thumb:hover { border-color: #e8750a; }
  .ld-gallery__extras {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
  }
  .ld-dispatch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff8f0;
    border: 1px solid #fde0c2;
    border-radius: 6px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
  }
  .ld-dispatch__icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
  }
  .ld-gallery__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .ld-btn {
    flex: 1;
    display: inline-block;
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    min-width: 140px;
  }
  .ld-template a.ld-btn--primary {
    background: #e8750a;
    color: #fff;
    border: 2px solid #e8750a;
    font-weight: 400;
  }
  .ld-template a.ld-btn--primary:hover {
    background: #d06600;
    border-color: #d06600;
    color: #fff;
  }
  .ld-template a.ld-btn--outline {
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-weight: 400;
  }
  .ld-template a.ld-btn--outline:hover {
    background: #1a1a1a;
    color: #fff;
  }

  /* ── Product Info ── */
  .ld-product__title {
    font-size: 22px;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .ld-specs__heading {
    font-size: 16px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8750a;
    display: inline-block;
  }
  .ld-specs__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
  }
  .ld-specs__list li {
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .ld-specs__list li strong {
    color: #555;
    font-weight: 600;
    white-space: nowrap;
  }
  .ld-section-title {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a1a1a;
  }
  .ld-description__content p { margin-bottom: 14px; }
  .ld-description__content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: #e8750a;
  }
  .ld-description__content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
  }
  .ld-description__content li { margin-bottom: 6px; font-size: 14px; }

  /* ── Tabs (CSS-only) ── */
  .ld-tabs-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
  }
  .ld-tabs__radio { display: none; }
  .ld-tabs__nav {
    display: flex;
    flex-wrap: nowrap;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 28px;
    overflow: hidden;
  }
  .ld-tabs__nav label {
    flex: 1;
    padding: 18px 16px;
    margin-bottom: -1px;
    color: #999;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    text-align: center;
    white-space: nowrap;
  }
  .ld-tabs__nav label:hover { color: #555; }
  #ld-tab-1:checked ~ .ld-tabs__nav label[for="ld-tab-1"],
  #ld-tab-2:checked ~ .ld-tabs__nav label[for="ld-tab-2"],
  #ld-tab-3:checked ~ .ld-tabs__nav label[for="ld-tab-3"],
  #ld-tab-4:checked ~ .ld-tabs__nav label[for="ld-tab-4"] {
    color: #333;
    border-bottom-color: #e8750a;
  }
  .ld-tabs__panels {
    background: #fff;
    min-height: 120px;
  }
  .ld-tabs__panel {
    display: none;
    padding: 28px 32px;
  }
  #ld-tab-1:checked ~ .ld-tabs__panels .ld-tabs__panel--1,
  #ld-tab-2:checked ~ .ld-tabs__panels .ld-tabs__panel--2,
  #ld-tab-3:checked ~ .ld-tabs__panels .ld-tabs__panel--3,
  #ld-tab-4:checked ~ .ld-tabs__panels .ld-tabs__panel--4 {
    display: block;
  }
  .ld-accordion-head {
    display: none;
  }
  .ld-accordion-arrow {
    font-size: 12px;
    color: #999;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
  }
  .ld-tabs__panel .ld-description__content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: #333;
  }
  .ld-tabs__panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
  }
  .ld-tabs__panel-body {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 18px 20px;
  }
  .ld-tabs__panel-body p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }
  .ld-tabs__panel-body p:last-child { margin-bottom: 0; }
  .ld-tabs__panel-body a {
    color: #e8750a;
    font-weight: 600;
  }
  .ld-tabs__panel-body a:hover { text-decoration: underline; }
  .ld-tabs__panel-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 10px;
  }
  .ld-tabs__panel-body h4:first-child { margin-top: 0; }
  .ld-tabs__panel-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .ld-tabs__panel-body li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
  }
  .ld-tabs__panel-body li:last-child { border-bottom: none; }
  .ld-tabs__panel-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    background: #e8750a;
    border-radius: 50%;
  }

  /* ── Footer ── */
  .ld-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 28px 24px;
    text-align: center;
  }
  .ld-footer__newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #333;
  }
  .ld-footer__newsletter span { font-size: 14px; color: #aaa; }
  .ld-footer__btn {
    display: inline-block;
    background: #e8750a;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s;
  }
  .ld-footer__btn:hover { background: #d06600; }
  .ld-footer__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 6px;
    max-width: 520px;
    margin: 0 auto;
  }
  .ld-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
  }
  .ld-pay--paypal { color: #003087; border-color: #003087; }
  .ld-pay--visa { color: #1a1f71; border-color: #1a1f71; font-style: italic; font-size: 13px; }
  .ld-pay--discover { color: #ff6600; border-color: #ff6600; }
  .ld-pay--amex { color: #006fcf; border-color: #006fcf; }
  .ld-pay--mc { color: #eb001b; border-color: #eb001b; }
  .ld-pay--maestro { color: #0066a1; border-color: #0066a1; }

  /* ── Responsive ── */

  /* Tablet landscape */
  @media (max-width: 1024px) {
    .ld-header__inner { padding: 14px 20px; }
    .ld-nav__list > li > a { padding: 10px 12px; font-size: 12px; }
    .ld-main { padding: 20px; }
    .ld-product { padding: 22px; gap: 28px; }
    .ld-tabs__panel { padding: 24px; }
  }

  /* Tablet — stack product columns, mobile nav */
  @media (max-width: 992px) {
    .ld-header {
      position: relative;
      z-index: 300;
    }
    .ld-header__inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 10px;
      padding: 12px 16px;
    }
    .ld-logo {
      flex: 1 1 auto;
      min-width: 0;
      max-width: calc(100% - 56px);
    }
    .ld-logo a { display: block; }
    .ld-logo img {
      max-height: 48px;
      max-width: 100%;
      width: auto;
      object-fit: contain;
      object-position: left center;
    }
    .ld-nav {
      flex: 0 0 auto;
      width: auto;
      margin-left: 0;
      position: static;
    }
    .ld-nav-toggle-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      padding: 10px 12px;
    }
    .ld-nav-toggle-icon { display: inline; font-size: 22px; }
    .ld-nav__list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #2a2a2a;
      padding: 8px;
      z-index: 200;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      gap: 2px;
    }
    .ld-nav-toggle:checked ~ .ld-nav__list { display: flex; }
    .ld-nav__list > li > a {
      padding: 12px 16px;
      font-size: 13px;
    }
    .ld-product {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 20px;
    }
    .ld-specs__heading {
      display: table;
      margin: 8px auto 14px;
      text-align: center;
    }
    .ld-product__title { margin-bottom: 32px; }
    .ld-specs__list {
      grid-template-columns: 1fr;
      max-height: 320px;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      border: 1px solid #eee;
      border-radius: 6px;
      padding: 4px 8px;
      margin-bottom: 20px;
    }
    .ld-specs__list::-webkit-scrollbar { width: 6px; }
    .ld-specs__list::-webkit-scrollbar-track {
      background: #f4f4f4;
      border-radius: 3px;
    }
    .ld-specs__list::-webkit-scrollbar-thumb {
      background: #e8750a;
      border-radius: 3px;
    }
    .ld-trust {
      flex-wrap: wrap;
    }
    .ld-trust__item {
      flex: 1 1 50%;
      border-right: none;
      border-bottom: 1px solid #eee;
      padding: 14px 12px;
    }
    .ld-trust__item:nth-child(odd) { border-right: 1px solid #eee; }
    .ld-trust__item:nth-child(3),
    .ld-trust__item:nth-child(4) { border-bottom: none; }
    .ld-trust__text {
      white-space: normal;
      text-align: left;
    }
  }

  /* Mobile landscape / small tablet */
  @media (max-width: 768px) {
    .ld-template { font-size: 14px; }
    .ld-main { padding: 16px; }
    .ld-product { padding: 16px; gap: 20px; border-radius: 6px; }
    .ld-product__title { font-size: 18px; line-height: 1.35; }
    .ld-specs__list { max-height: 280px; }
    .ld-specs__list li strong { white-space: normal; }
    .ld-gallery__main { border-radius: 6px; }
    .ld-gallery__arrow { display: flex; }
    .ld-gallery__thumb { width: calc(20% - 7px); }
    .ld-gallery__buttons { flex-direction: column; }
    .ld-btn {
      width: 100%;
      min-width: 0;
      flex: none;
    }
    .ld-dispatch { font-size: 12px; padding: 10px 12px; }
    .ld-tabs-section { border-radius: 6px; }
    .ld-tabs__nav { display: none; }
    .ld-tabs__panels { min-height: 0; }
    .ld-accordion-item { border-bottom: 1px solid #e8e8e8; }
    .ld-accordion-item:last-child { border-bottom: none; }
    .ld-accordion-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      font-size: 14px;
      font-weight: 600;
      color: #555;
      background: #f9f9f9;
      cursor: pointer;
      border-left: 3px solid transparent;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    #ld-tab-1:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(1) .ld-accordion-head,
    #ld-tab-2:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(2) .ld-accordion-head,
    #ld-tab-3:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(3) .ld-accordion-head,
    #ld-tab-4:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(4) .ld-accordion-head {
      color: #e8750a;
      background: #fff8f0;
      border-left-color: #e8750a;
    }
    #ld-tab-1:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(1) .ld-accordion-arrow,
    #ld-tab-2:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(2) .ld-accordion-arrow,
    #ld-tab-3:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(3) .ld-accordion-arrow,
    #ld-tab-4:checked ~ .ld-tabs__panels .ld-accordion-item:nth-child(4) .ld-accordion-arrow {
      color: #e8750a;
      transform: rotate(180deg);
    }
    .ld-tabs__panel { padding: 16px; }
    .ld-tabs__panel-body { padding: 14px 16px; }
    .ld-footer { padding: 24px 16px; }
    .ld-footer__newsletter span { font-size: 13px; }
    .ld-trust {
      flex-wrap: nowrap;
    }
    .ld-trust__item:nth-child(1),
    .ld-trust__item:nth-child(2) {
      flex: 1 1 50%;
      border-bottom: none;
      border-right: 1px solid #eee;
      justify-content: center;
      padding: 12px 8px;
      gap: 6px;
    }
    .ld-trust__item:nth-child(2) { border-right: none; }
    .ld-trust__item:nth-child(3),
    .ld-trust__item:nth-child(4) { display: none; }
    .ld-trust__text {
      white-space: normal;
      text-align: center;
      font-size: 11px;
    }
  }

  /* Mobile portrait */
  @media (max-width: 576px) {
    .ld-header__inner { padding: 10px 12px; gap: 8px; }
    .ld-logo { max-width: calc(100% - 56px); }
    .ld-logo img { max-height: 40px; }
    .ld-nav-toggle-btn {
      min-width: 42px;
      padding: 9px 10px;
    }
    .ld-product { padding: 14px; margin-bottom: 16px; }
    .ld-product__title { font-size: 16px; }
    .ld-specs__heading { font-size: 15px; }
    .ld-specs__list { max-height: 240px; }
    .ld-specs__list li { font-size: 12px; }
    .ld-gallery__thumb { width: calc(20% - 7px); }
    .ld-accordion-head { padding: 13px 14px; font-size: 13px; }
    .ld-tabs__panel { padding: 14px; }
    .ld-description__content h3 { font-size: 15px; }
    .ld-description__content li { font-size: 13px; }
    .ld-tabs__panel-body h4 { font-size: 14px; }
    .ld-tabs__panel-body p,
    .ld-tabs__panel-body li { font-size: 13px; }
    .ld-footer__newsletter {
      flex-direction: column;
      text-align: center;
      gap: 12px;
    }
    .ld-footer__btn { width: 100%; max-width: 220px; }
    .ld-footer__cards { padding: 12px 14px; gap: 6px; }
    .ld-pay { font-size: 10px; padding: 5px 10px; }
    .ld-pay--visa { font-size: 11px; }
  }

  /* Very small screens */
  @media (max-width: 360px) {
    .ld-main { padding: 10px; }
    .ld-logo { max-width: calc(100% - 48px); }
    .ld-logo img { max-height: 36px; }
    .ld-nav-toggle-btn {
      min-width: 40px;
      padding: 9px 10px;
    }
    .ld-nav-toggle-icon { font-size: 20px; }
    .ld-trust__icon { width: 28px; height: 28px; font-size: 13px; }
    .ld-trust__text { font-size: 10px; }
    .ld-accordion-head { font-size: 12px; padding: 12px; }
    .ld-dispatch { flex-direction: column; text-align: center; gap: 6px; }
  }
