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

.nav-menu .menu-lvl-1 > li:nth-child(3) > span.has-children {
  color: #dc3545;
  font-weight: 600;
}

.cart-crypto-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  padding: 18px 18px;
  border: 1px solid rgba(255, 183, 0, 0.5);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff1cc 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.cart-crypto-banner__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  background: #FFB700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cart-crypto-banner__content {
  flex: 1;
}

.cart-crypto-banner__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #111;
}

.cart-crypto-banner__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.cart-crypto-banner__action {
  flex: 0 0 auto;
}

.cart-crypto-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .2s ease;
}

.cart-crypto-banner__btn:hover {
  background: #FFB700;
  color: #111;
}

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

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

  .lab-text
  {
    font-size: 15px;
  }

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

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

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

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