.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: 30px;
  --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 {
  position: relative;
  z-index: 3;
}

/* HERO OVERLAP WRAPPER */
.hero-overlap {
  position: relative;
  z-index: 3;
  transform: translateY(-229px);
  margin-bottom: -229px;
}

.hero-overlap .home-section {
  padding-bottom: 24px;
}

.hero-overlap .home-section + .home-section-tight {
  padding-top: 0;
}

.hero-overlap .home-section-tight + .home-section-tight {
  padding-top: 28px;
}

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

.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: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.section-link:hover {
  background: var(--primary-dark);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.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);
  padding-top: 56px;
}

.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;
  text-align: center;
}

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

.home-section-sale-head {
  padding-bottom: 0;
}

@media (min-width: 1200px) {
  .hero-overlap {
    transform: translateY(-274px);
    margin-bottom: -274px;
  }
}

@media (min-width: 1440px) {
  .hero-overlap {
    transform: translateY(-410px);
    margin-bottom: -410px;
  }
}

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

  .hero-overlap {
    transform: translateY(-350px);
    margin-bottom: -350px;
  }

  .home-title-block {
    padding: 22px 18px;
    border-radius: 14px;
  }

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

  .hero-overlap .home-section {
    padding-bottom: 20px;
  }

  .hero-overlap .home-section-tight + .home-section-tight {
    padding-top: 18px;
  }

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

.lab-section {
  padding-top: 40px;
}

.lab-wrap {
  padding: 0 16px;
}

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

.lab-title {
  font-size: 24px;
}

.lab-text {
  font-size: 14px;
  line-height: 1.65;
}

.lab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lab-card {
  min-width: 0;
  width: 100%;
}

.lab-thumb {
  aspect-ratio: 16 / 11;
}

.lab-body {
  padding: 16px;
}

.lab-product {
  font-size: 16px;
}

.lab-brand {
  margin-bottom: 14px;
}

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

.lab-all-btn {
  width: 100%;
  min-height: 46px;
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .trust-grid .trust-card:nth-child(3),
  .trust-grid .trust-card:nth-child(4) {
    display: none;
  }
}

.seo-block-enhanced {
  background: linear-gradient(180deg, #fffef7 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.seo-block-intro {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.seo-block-intro h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 800;
}

.seo-block-intro p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.seo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  transition: transform .2s ease;
}

.seo-card:hover {
  transform: translateY(-3px);
}

.seo-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,221,47,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
  color: #111;
}

.seo-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.seo-card p,
.seo-card li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
}

.seo-card ul {
  padding-left: 18px;
  margin: 0;
}

.seo-card a,
.seo-block-intro a,
.seo-note a {
  color: var(--text);
  font-weight: 700;
}

.seo-note {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.seo-note-icon {
  font-size: 18px;
  color: #111;
  margin-top: 4px;
}

.seo-note-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.seo-note-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
}

@media (max-width: 1199px) {
  .seo-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .seo-block-enhanced {
    padding: 24px 18px;
  }

  .seo-block-intro {
    text-align: left;
  }

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

  .seo-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .seo-card {
    padding: 18px 16px;
  }

  .seo-note {
    flex-direction: column;
  }
}