/* SmartBio page-specific overrides */

/* Keep product images proportional; reserve space to avoid CLS */
body.smartbio-page .mobile-img,
body.smartbio-page .visual img {
  height: auto !important;
  aspect-ratio: 2134 / 3211;
}

@media (max-width: 800px) {
  body.smartbio-page h1,
  body.smartbio-page .copy h1 {
    font-size: 1.4rem !important;
  }

  body.smartbio-page h2,
  body.smartbio-page .copy h2 {
    font-size: 1.2rem !important;
  }
}


/* Contacts strip styling */
.smartbio-contacts {
  width: 100%;
  margin: 1rem 0 0.5rem;
  background: #fff7f4cc;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.smartbio-contacts .contacts-inner {
  padding: 1.1rem 1.3rem 1.2rem;
  text-align: center;
}

.smartbio-contacts .contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.85rem;
  color: #3a3a3a;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Force Segoe UI for contacts text */
.smartbio-contacts .contact-row,
.smartbio-contacts .contact-item,
.smartbio-contacts .contact-label,
.smartbio-contacts .contact-phone {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
}

.smartbio-contacts .contact-row.phones {
  margin-top: 0.35rem;
  font-weight: 700;
}

.smartbio-contacts .contact-item { white-space: nowrap; }
.smartbio-contacts .dot { opacity: 0.4; }
.smartbio-contacts .sep { margin: 0 0.35rem; opacity: 0.5; }

.smartbio-contacts .contact-phone {
  color: var(--forest);
  text-decoration: none;
  padding: 0.12rem 0.25rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.smartbio-contacts .contact-phone:hover {
  background: #8DC63F22;
  color: #000;
}

@media (max-width: 800px) {
  .smartbio-contacts .contacts-inner { padding: 0.9rem 0.8rem 1rem; }
  .smartbio-contacts .contact-row { letter-spacing: 0.04em; }
}


