.menu-lvl-2 sup, .category-title sup {
    color: #dc3545;
    font-size: 75%;
}

  :root {
    --primary-dark: #e5c500;
    --text: #111111;
    --text-soft: #666666;
    --border: #e9e9e9;
    --bg-soft: #fafafa;
    --bg-dark: #111111;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.06);
    --container: 1280px;

    --section-space: 64px;
    --section-space-mobile: 40px;
    --section-tight: 36px;
    --section-tight-mobile: 24px;
  }

  * {
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: inherit;
  }

  .home-shell {
    background: var(--white);
    color: var(--text);
  }

  .home-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
  }

  .home-section {
    padding: var(--section-space) 0;
  }

  .home-section-tight {
    padding: var(--section-tight) 0;
  }

.home-title-block {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  /* this pulls it slightly over the slider */
  margin-top: -40px;
}

  .home-title-block h1 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
  }

  .home-title-block p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-soft);
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 18px;
    text-align: center;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(251, 221, 47, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
  }

  .trust-title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
  }

  .trust-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
  }

  .promo-strip {
    background: var(--bg-dark);
    color: var(--white);
    border-radius: 14px;
    overflow: hidden;
  }

  .promo-strip-inner {
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
  }

  .promo-strip strong {
    color: var(--primary);
    font-weight: 800;
  }

  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-head-left h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
  }

  .section-head-left p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-soft);
  }

  .section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
  }

  .section-link:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
  }

  .grid-placeholder {
    background: var(--bg-soft);
    border: 1px dashed #d8d8d8;
    border-radius: var(--radius);
    padding: 22px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
  }

  .category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
  }

  .category-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }

  .category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 221, 47, 0.9);
    background: #fffef2;
  }

  .category-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(251, 221, 47, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 800;
  }

  .category-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
  }

  .category-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
  }

  .seo-block {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
  }

  .seo-block h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--text);
  }

  .seo-block h3 {
    margin: 28px 0 12px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--text);
  }

  .seo-block p,
  .seo-block li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
  }

  .seo-block p {
    margin: 0 0 16px;
  }

  .seo-block ul {
    margin: 0;
    padding-left: 20px;
  }

  .seo-block a {
    color: var(--text);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }

  .lab-section {
    background: var(--white);
  }

  .lab-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
  }

  .lab-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .lab-title {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
  }

  .lab-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
  }

  .lab-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
  }

  .lab-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }

  .lab-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    border-color: rgba(251, 221, 47, 0.9);
  }

  .lab-thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    background: #f4f4f4;
    overflow: hidden;
  }

  .lab-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
  }

  .lab-card:hover .lab-thumb img {
    transform: scale(1.03);
  }

  .lab-badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }

  .lab-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(17,17,17,.78);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    padding: 9px 10px;
    border-radius: 10px;
  }

  .lab-body {
    padding: 18px;
  }

  .lab-product {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--text);
  }

  .lab-brand {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(251, 221, 47, 0.22);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
  }

  .lab-meta {
    display: grid;
    gap: 10px;
  }

  .lab-meta-row {
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
  }

  .lab-meta-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .lab-label {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8a8a8a;
  }

  .lab-value {
    font-size: 14px;
    line-height: 1.5;
    color: #232323;
    font-weight: 600;
  }

  .lab-footer {
    text-align: center;
    margin-top: 36px;
  }

  .lab-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease;
  }

  .lab-all-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
  }

  .review-cta {
    background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 36px;
    text-align: center;
  }

  .review-cta h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
  }

  .review-cta p {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
  }

  .review-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
  }

  .review-btn-primary {
    background: var(--primary);
    color: var(--text);
  }

  .review-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
  }

  .review-btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
  }

  .review-btn-secondary:hover {
    border-color: rgba(251, 221, 47, 0.9);
    transform: translateY(-1px);
  }

  @media (max-width: 1199px) {
    .trust-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lab-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .home-container,
    .lab-wrap {
      padding: 0 16px;
    }

    .home-section {
      padding: var(--section-space-mobile) 0;
    }

    .home-section-tight {
      padding: var(--section-tight-mobile) 0;
    }

    .home-title-block h1 {
      font-size: 28px;
    }

    .home-title-block p,
    .section-head-left p,
    .lab-text,
    .review-cta p {
      font-size: 15px;
    }

    .section-head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .section-head-left h2,
    .lab-title,
    .review-cta h2 {
      font-size: 24px;
    }

    .trust-grid,
    .category-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .lab-grid {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .lab-grid::-webkit-scrollbar {
      height: 8px;
    }

    .lab-grid::-webkit-scrollbar-thumb {
      background: rgba(251, 221, 47, 0.75);
      border-radius: 999px;
    }

    .lab-card {
      min-width: 82%;
      flex: 0 0 auto;
      scroll-snap-align: start;
    }

    .seo-block {
      padding: 26px 18px;
    }

    .seo-block h2 {
      font-size: 22px;
    }

    .seo-block h3 {
      font-size: 18px;
    }

    .review-cta {
      padding: 28px 18px;
    }

    .promo-strip-inner {
      padding: 14px 16px;
      text-align: left;
      font-size: 13px;
    }

    .lab-header {
      margin-bottom: 28px;
    }

    .lab-footer {
      margin-top: 28px;
    }
  }