html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}/* =========================================================
   STARMEDICA — ГОЛОВНА СТОРІНКА
   Кольори на основі каталогу Стармедіка 2026
   ========================================================= */

:root {
    --st-blue: #075fa8;
    --st-dark-blue: #064b87;
    --st-light-blue: #16a7d7;
    --st-green: #55b948;
    --st-dark: #17364d;
    --st-text: #405566;
    --st-light: #f4f9fc;
    --st-border: #dce9f1;
}

body {
    background: #ffffff;
    color: var(--st-dark);
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   HERO
   ========================================================= */

.st-hero {
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    padding: 75px 60px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(22, 167, 215, 0.18), transparent 35%),
        linear-gradient(135deg, #eef9fd 0%, #ffffff 52%, #eef8fc 100%);
}

.st-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(85, 185, 72, 0.08);
    border-radius: 50%;
}

.st-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 65px;
    align-items: center;
}

.st-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 17px;
    border-radius: 30px;
    background: #e0f4fb;
    color: var(--st-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.st-hero-text h1 {
    margin: 0 0 25px;
    color: var(--st-blue);
    font-size: 58px;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -1.5px;
}

.st-hero-text h1 span {
    color: var(--st-green);
}

.st-hero-text > p {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--st-text);
    font-size: 18px;
    line-height: 1.7;
}

.st-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.st-btn-primary,
.st-btn-secondary {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.st-btn-primary {
    background: var(--st-blue);
    color: #ffffff;
}

.st-btn-primary:hover {
    background: var(--st-dark-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.st-btn-secondary {
    border: 2px solid var(--st-blue);
    background: #ffffff;
    color: var(--st-blue);
}

.st-btn-secondary:hover {
    background: var(--st-blue);
    color: #ffffff;
}


/* =========================================================
   HERO — ПРАВА КАРТКА
   ========================================================= */

.st-hero-panel {
    padding: 34px;
    border-radius: 24px;
    background: var(--st-blue);
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(7, 95, 168, 0.20);
}

.st-hero-panel > span {
    color: #9eddf1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.st-hero-panel > h2 {
    margin: 8px 0 27px;
    font-size: 29px;
    font-weight: 800;
}

.st-feature {
    display: flex;
    gap: 17px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.20);
}

.st-feature > strong {
    color: #82d66f;
    font-size: 20px;
}

.st-feature h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.st-feature p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   ЗАГОЛОВКИ РОЗДІЛІВ
   ========================================================= */

.st-section-heading {
    max-width: 700px;
    margin-bottom: 38px;
}

.st-section-heading > span,
.st-about > div:first-child > span,
.st-contact-title > span {
    color: var(--st-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.st-section-heading h2,
.st-about h2,
.st-contact-title h2 {
    margin: 8px 0 12px;
    color: var(--st-blue);
    font-size: 38px;
    font-weight: 800;
}

.st-section-heading p,
.st-contact-title p {
    color: var(--st-text);
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   НАПРЯМКИ
   ========================================================= */

.st-directions {
    padding: 85px 0 70px;
}

.st-direction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.st-direction-card {
    position: relative;
    min-height: 245px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--st-border);
    border-radius: 19px;
    background: #ffffff;
    color: var(--st-dark);
    text-decoration: none;
    transition: 0.25s ease;
}

.st-direction-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(22, 167, 215, 0.06);
}

.st-direction-card:hover {
    transform: translateY(-6px);
    border-color: #8dc9e4;
    box-shadow: 0 18px 40px rgba(7, 95, 168, 0.11);
}

.st-direction-card > span {
    display: block;
    margin-bottom: 25px;
    color: var(--st-green);
    font-size: 14px;
    font-weight: 800;
}

.st-direction-card h3 {
    margin-bottom: 12px;
    color: var(--st-blue);
    font-size: 23px;
    font-weight: 800;
}

.st-direction-card p {
    min-height: 65px;
    color: var(--st-text);
    line-height: 1.55;
}

.st-direction-card strong {
    position: relative;
    z-index: 2;
    color: var(--st-blue);
    font-size: 14px;
}


/* =========================================================
   ВИРОБНИКИ
   ========================================================= */

.st-manufacturers {
    margin: 20px 0 80px;
    padding: 55px;
    border-radius: 27px;
    background: var(--st-light);
}

.st-manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.st-manufacturer-grid > div {
    display: flex;
    min-height: 95px;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--st-border);
    border-radius: 15px;
    background: #ffffff;
    color: var(--st-blue);
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    transition: 0.2s ease;
}

.st-manufacturer-grid > div:hover {
    transform: translateY(-3px);
    border-color: var(--st-light-blue);
}


/* =========================================================
   ПРО КОМПАНІЮ
   ========================================================= */

.st-about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 65px 55px;
    margin-bottom: 80px;
    border-radius: 26px;
    background: var(--st-blue);
}

.st-about > div:first-child > span {
    color: #86dc75;
}

.st-about h2 {
    color: #ffffff;
}

.st-about p {
    color: rgba(255,255,255,0.83);
    font-size: 17px;
    line-height: 1.75;
}

.st-about a {
    display: inline-block;
    margin-top: 12px;
    color: #91e47f;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   КОНТАКТИ
   ========================================================= */

.st-contact-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    margin-bottom: 80px;
    padding: 55px;
    border: 1px solid var(--st-border);
    border-radius: 25px;
    background: #ffffff;
}

.st-contact-data {
    padding: 30px;
    border-radius: 18px;
    background: var(--st-light);
}

.st-contact-data h3 {
    margin-bottom: 23px;
    color: var(--st-blue);
    font-size: 23px;
    font-weight: 800;
}

.st-contact-data p {
    margin-bottom: 18px;
    color: var(--st-text);
    line-height: 1.5;
}

.st-contact-data a {
    color: var(--st-blue);
    font-weight: 700;
    text-decoration: none;
}

.st-contact-data a:hover {
    text-decoration: underline;
}


/* =========================================================
   АДАПТАЦІЯ
   ========================================================= */

@media (max-width: 1000px) {

    .st-hero {
        padding: 55px 35px;
    }

    .st-hero-content {
        grid-template-columns: 1fr;
    }

    .st-direction-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .st-manufacturer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .st-about,
    .st-contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {

    .st-hero {
        margin-top: 10px;
        padding: 38px 22px;
        border-radius: 20px;
    }

    .st-hero-text h1 {
        font-size: 39px;
    }

    .st-hero-text > p {
        font-size: 16px;
    }

    .st-hero-buttons {
        flex-direction: column;
    }

    .st-btn-primary,
    .st-btn-secondary {
        text-align: center;
    }

    .st-direction-grid,
    .st-manufacturer-grid {
        grid-template-columns: 1fr;
    }

    .st-manufacturers,
    .st-about,
    .st-contact-section {
        padding: 30px 22px;
    }

    .st-section-heading h2,
    .st-about h2,
    .st-contact-title h2 {
        font-size: 30px;
    }
}/* =========================================================
   STARMEDICA — HEADER
   ========================================================= */

.st-site-header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #dce9f1;
}

/* Верхня синя смуга */

.st-topbar {
    background: #075fa8;
    color: #ffffff;
    font-size: 13px;
}

.st-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.st-topbar a {
    color: #ffffff;
    text-decoration: none;
}

.st-topbar a:hover {
    text-decoration: underline;
}

.st-top-separator {
    margin: 0 10px;
    opacity: 0.45;
}

.st-top-contacts {
    display: flex;
    align-items: center;
}


/* Основна навігація */

.st-navigation {
    background: #ffffff;
}

.st-nav-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 35px;
}


/* Логотип */

.st-logo {
    min-width: 215px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #075fa8;
    text-decoration: none;
}

.st-logo:hover {
    color: #075fa8;
}

.st-logo-symbol {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #16a7d7,
        #075fa8
    );

    color: #ffffff;

    font-size: 31px;
    font-weight: 300;
}

.st-logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.st-logo-name strong {
    color: #075fa8;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.st-logo-name small {
    margin-top: 6px;
    color: #55b948;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}


/* Центральне меню */

.st-main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex: 1;
}

.st-main-menu a {
    position: relative;

    padding: 32px 0;

    color: #29495f;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.2s ease;
}

.st-main-menu a:hover {
    color: #075fa8;
}

.st-main-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 100%;
    bottom: 22px;

    height: 3px;

    border-radius: 3px;

    background: #55b948;

    transition: 0.25s ease;
}

.st-main-menu a:hover::after {
    right: 0;
}


/* Кнопка запиту */

.st-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    border-radius: 10px;

    background: #55b948;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
    white-space: nowrap;

    transition: 0.2s ease;
}

.st-header-button:hover {
    transform: translateY(-2px);

    background: #47a23c;
    color: #ffffff;

    box-shadow: 0 7px 18px rgba(85, 185, 72, 0.25);
}


/* =========================================================
   АДАПТАЦІЯ HEADER
   ========================================================= */

@media (max-width: 1100px) {

    .st-main-menu {
        gap: 15px;
    }

    .st-main-menu a {
        font-size: 13px;
    }

    .st-header-button {
        display: none;
    }
}


@media (max-width: 850px) {

    .st-main-menu {
        display: none;
    }

    .st-nav-inner {
        justify-content: space-between;
    }

    .st-topbar-inner {
        padding-top: 8px;
        padding-bottom: 8px;

        flex-direction: column;
        align-items: flex-start;

        gap: 4px;
    }
}


@media (max-width: 600px) {

    .st-topbar-inner {
        font-size: 11px;
    }

    .st-top-separator {
        margin: 0 5px;
    }

    .st-nav-inner {
        min-height: 72px;
    }

    .st-logo-name strong {
        font-size: 18px;
    }

    .st-logo-symbol {
        width: 38px;
        height: 38px;
        font-size: 27px;
    }
}/* =========================================================
   STARMEDICA — СПРАВЖНІЙ ЛОГОТИП
   ========================================================= */

.st-logo-image-link {
    display: flex;
    align-items: center;
    min-width: 245px;
    text-decoration: none;
}

.st-header-logo {
    display: block;
    width: 235px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 700px) {

    .st-logo-image-link {
        min-width: 190px;
    }

    .st-header-logo {
        width: 190px;
    }
}/* =========================================================
   STARMEDICA — ВИПАДАЮЧЕ МЕНЮ ПРОДУКЦІЇ
   ========================================================= */

.st-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.st-dropdown-button {
    display: flex;
    align-items: center;
    gap: 6px;
}

.st-dropdown-arrow {
    position: relative;
    top: -1px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.st-dropdown:hover .st-dropdown-arrow {
    transform: rotate(180deg);
}


/* Саме меню */

.st-dropdown-menu {
    position: absolute;
    top: calc(100% - 15px);
    left: -25px;

    width: 350px;
    padding: 12px;

    visibility: hidden;
    opacity: 0;

    border: 1px solid #dce9f1;
    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 18px 45px rgba(7, 70, 110, 0.15);

    transform: translateY(10px);
    transition: 0.2s ease;

    z-index: 2000;
}

.st-dropdown:hover .st-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


/* Пункти */

.st-main-menu .st-dropdown-menu a {
    display: flex;
    flex-direction: column;

    padding: 13px 15px;

    border-radius: 10px;

    text-decoration: none;

    transition: 0.15s ease;
}

.st-main-menu .st-dropdown-menu a::after {
    display: none;
}

.st-main-menu .st-dropdown-menu a:hover {
    background: #f0f8fc;
}

.st-dropdown-menu strong {
    margin-bottom: 3px;

    color: #075fa8;

    font-size: 14px;
    font-weight: 800;
}

.st-dropdown-menu span {
    color: #718594;

    font-size: 12px;
    font-weight: 400;
}


/* Зелений акцент */

.st-dropdown-menu a:hover strong {
    color: #55b948;
}/* =========================================================
   STARMEDICA — СТОРІНКА БІОХІМІЯ
   ========================================================= */


/* HERO */

.product-page-hero {
    margin-top: 25px;
    padding: 55px 60px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(22,167,215,0.16), transparent 35%),
        linear-gradient(135deg, #eef9fd 0%, #ffffff 60%, #f0f9fc 100%);
}

.product-page-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 38px;
    color: #718594;
    font-size: 13px;
}

.product-page-breadcrumbs a {
    color: #075fa8;
    font-weight: 700;
    text-decoration: none;
}

.product-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
}

.product-page-label {
    color: #55b948;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.product-page-hero h1 {
    margin: 8px 0 16px;
    color: #075fa8;
    font-size: 58px;
    font-weight: 900;
}

.product-page-hero p {
    max-width: 700px;
    margin: 0;
    color: #405566;
    font-size: 18px;
    line-height: 1.7;
}

.product-page-brand {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: #075fa8;
    box-shadow: 0 18px 40px rgba(7,95,168,0.16);
}

.product-page-brand span {
    color: #9eddf1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.product-page-brand strong {
    margin: 5px 0;
    color: #ffffff;
    font-size: 35px;
    font-weight: 900;
}

.product-page-brand small {
    color: #78d669;
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   VALIDITY
   ========================================================= */

.validity-about {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
    padding: 85px 20px;
}

.validity-about-title > span {
    color: #55b948;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.validity-about-title h2 {
    margin-top: 10px;
    color: #075fa8;
    font-size: 39px;
    font-weight: 850;
    line-height: 1.15;
}

.validity-about-text > p {
    color: #405566;
    font-size: 16px;
    line-height: 1.7;
}

.validity-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.validity-benefits > div {
    padding: 14px 16px;
    border: 1px solid #dce9f1;
    border-radius: 10px;
    background: #f8fcfe;
    color: #29495f;
    font-size: 14px;
    font-weight: 650;
}


/* =========================================================
   АНАЛІЗАТОРИ
   ========================================================= */

.analyzers-section {
    padding: 70px 0 90px;
    border-top: 1px solid #e4eef4;
}

.analyzers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.analyzer-card {
    overflow: hidden;
    border: 1px solid #dce9f1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(7,70,110,0.06);
    transition: 0.25s ease;
}

.analyzer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7,95,168,0.13);
}


/* МІСЦЕ ДЛЯ ФОТО */

.analyzer-image-placeholder {
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, #ffffff 0%, #f1f9fc 70%);
    border-bottom: 1px solid #e4eef4;
}

.analyzer-image-placeholder span {
    margin-bottom: 8px;
    color: #8ba0ad;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.analyzer-image-placeholder strong {
    color: #075fa8;
    font-size: 31px;
    font-weight: 900;
}


/* ТЕКСТ КАРТКИ */

.analyzer-card-content {
    padding: 26px;
}

.analyzer-brand {
    margin-bottom: 5px;
    color: #55b948;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.analyzer-card h3 {
    margin: 0;
    color: #075fa8;
    font-size: 30px;
    font-weight: 900;
}

.analyzer-subtitle {
    min-height: 45px;
    margin-top: 5px;
    color: #718594;
    font-size: 14px;
}

.analyzer-main-spec {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0;
    padding: 14px 15px;
    border-radius: 11px;
    background: #eef8fc;
}

.analyzer-main-spec strong {
    color: #075fa8;
    font-size: 26px;
    font-weight: 900;
}

.analyzer-main-spec span {
    color: #405566;
    font-size: 13px;
    font-weight: 700;
}

.analyzer-card ul {
    min-height: 175px;
    margin: 20px 0;
    padding-left: 19px;
}

.analyzer-card li {
    margin-bottom: 8px;
    color: #405566;
    font-size: 13px;
    line-height: 1.45;
}

.analyzer-card li::marker {
    color: #55b948;
}


/* КНОПКИ */

.analyzer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.analyzer-more,
.analyzer-request {
    padding: 11px 10px;
    border-radius: 9px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.analyzer-more {
    border: 1px solid #075fa8;
    color: #075fa8;
}

.analyzer-more:hover {
    background: #eef8fc;
    color: #075fa8;
}

.analyzer-request {
    background: #55b948;
    color: #ffffff;
}

.analyzer-request:hover {
    background: #47a23c;
    color: #ffffff;
}


/* =========================================================
   РЕАГЕНТИ
   ========================================================= */

.reagents-section {
    margin-bottom: 85px;
    padding: 65px;
    border-radius: 27px;
    background: #075fa8;
}

.reagents-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
}

.reagents-heading > span {
    color: #82dd70;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.reagents-heading h2 {
    margin: 9px 0 18px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 850;
    line-height: 1.15;
}

.reagents-heading p,
.reagents-info > p {
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.reagent-system {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.reagent-system > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 65px;
    padding: 12px 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.09);
}

.reagent-system strong {
    color: #82dd70;
    font-size: 17px;
}

.reagent-system span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CTA
   ========================================================= */

.biochemistry-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 85px;
    padding: 50px 55px;
    border: 1px solid #dce9f1;
    border-radius: 23px;
    background: #f5fafc;
}

.biochemistry-cta > div {
    max-width: 750px;
}

.biochemistry-cta span {
    color: #55b948;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.biochemistry-cta h2 {
    margin: 8px 0 12px;
    color: #075fa8;
    font-size: 31px;
    font-weight: 850;
}

.biochemistry-cta p {
    margin: 0;
    color: #405566;
    line-height: 1.6;
}

.biochemistry-cta > a {
    flex-shrink: 0;
    padding: 15px 22px;
    border-radius: 10px;
    background: #55b948;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.biochemistry-cta > a:hover {
    background: #47a23c;
    color: #ffffff;
}


/* =========================================================
   МОБІЛЬНА ВЕРСІЯ
   ========================================================= */

@media (max-width: 1000px) {

    .product-page-hero-grid,
    .validity-about,
    .reagents-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .analyzers-grid {
        grid-template-columns: 1fr;
    }

    .product-page-brand {
        max-width: 350px;
    }
}


@media (max-width: 700px) {

    .product-page-hero {
        padding: 35px 23px;
    }

    .product-page-hero h1 {
        font-size: 42px;
    }

    .validity-about {
        padding: 55px 5px;
    }

    .validity-about-title h2 {
        font-size: 31px;
    }

    .validity-benefits {
        grid-template-columns: 1fr;
    }

    .reagents-section {
        padding: 35px 23px;
    }

    .reagent-system {
        grid-template-columns: 1fr;
    }

    .biochemistry-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }
}/* Реальні фотографії аналізаторів */

.analyzer-product-image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    object-fit: contain;
}/* =========================================================
   /* =========================================================
   STARMEDICA — КОНТАКТИ
   ========================================================= */

.st-contact-section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    margin-bottom: 80px;
    padding: 55px;
    border: 1px solid #dce9f1;
    border-radius: 25px;
    background: #ffffff;
}

.st-contact-data {
    width: 100%;
    min-width: 0;
    padding: 30px;
    border-radius: 18px;
    background: #f4f9fc;
}

.st-contact-data h3 {
    margin: 0 0 22px;
    color: #075fa8;
    font-size: 24px;
    font-weight: 800;
}

.st-contact-data > p {
    margin-bottom: 18px;
    color: #405566;
    line-height: 1.5;
}

.st-contact-data > p a {
    color: #075fa8;
    font-weight: 700;
    text-decoration: none;
}


/* КЕРІВНИЦТВО */

.st-management-section {
    width: 100%;
    margin-top: 30px;
}

.st-management-section h4 {
    margin: 0 0 15px;
    color: #075fa8;
    font-size: 21px;
    font-weight: 800;
}

.st-contact-management {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}


/* РЕГІОНАЛЬНІ ДИРЕКТОРИ */

.st-regional-directors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    width: 100%;
    margin-top: 28px;
    padding-top: 25px;

    border-top: 1px solid #dce9f1;
}

.st-regional-directors h4 {
    grid-column: 1 / -1;

    margin: 0 0 5px;

    color: #075fa8;
    font-size: 21px;
    font-weight: 800;
}


/* КАРТКИ */

.st-contact-person,
.st-regional-person {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-width: 0;
    min-height: 135px;

    padding: 20px;

    border: 1px solid #dce9f1;
    border-radius: 14px;

    background: #ffffff;
}


/* Посади */

.st-contact-position {
    display: block;

    margin-bottom: 8px;

    color: #718594;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;

    letter-spacing: 0;
    text-transform: none;
}


/* Імена */

.st-contact-person strong,
.st-regional-person strong {
    display: block;

    margin-bottom: 10px;

    color: #075fa8;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}


/* Телефон та email */

.st-contact-person a,
.st-regional-person a {
    display: block;

    margin-top: 3px;

    color: #29495f;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;

    text-decoration: none;
}

.st-contact-person a:hover,
.st-regional-person a:hover {
    color: #075fa8;
}


/* Email */

.st-contact-email {
    font-size: 12px !important;
    white-space: nowrap;
}


/* Зелений акцент тільки у регіональних директорів */

.st-regional-person {
    padding-left: 22px;
    overflow: hidden;
}

.st-regional-person::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    background: #55b948;
}


/* МОБІЛЬНА ВЕРСІЯ */

@media (max-width: 900px) {

    .st-contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    .st-contact-section {
        padding: 30px 20px;
    }

    .st-contact-data {
        padding: 22px;
    }

    .st-contact-management,
    .st-regional-directors {
        grid-template-columns: 1fr;
    }

    .st-contact-email {
        white-space: normal;
        overflow-wrap: anywhere;
    }
}/* =========================================================
   STARMEDICA — ДЕТАЛЬНА СТОРІНКА ОБЛАДНАННЯ
   MEDCONN MH-60
   ========================================================= */

.product-detail-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 35px 25px 80px;
}

/* Хлібні крихти */
.product-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    color: #718594;
    font-size: 14px;
}

.product-breadcrumbs a {
    color: var(--st-blue);
    text-decoration: none;
    font-weight: 700;
}

.product-breadcrumbs a:hover {
    text-decoration: underline;
}

.product-breadcrumbs strong {
    color: var(--st-dark);
}


/* ГОЛОВНИЙ БЛОК */
.product-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    border: 1px solid var(--st-border);
    border-radius: 28px;
    background: #ffffff;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 25px;
    border-radius: 22px;
    background: #f7fafc;
}

.product-detail-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    max-height: 480px;
    object-fit: contain;
}

.product-detail-info {
    min-width: 0;
}

.product-brand {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--st-green);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-detail-info h1 {
    margin: 0 0 8px;
    color: var(--st-blue);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.product-detail-info h2 {
    margin: 0 0 22px;
    color: var(--st-dark);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.product-detail-lead {
    margin-bottom: 28px;
    color: var(--st-text);
    font-size: 17px;
    line-height: 1.7;
}


/* КЛЮЧОВІ ЦИФРИ */
.product-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.product-highlight {
    padding: 18px;
    border: 1px solid var(--st-border);
    border-radius: 14px;
    background: var(--st-light);
}

.product-highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--st-blue);
    font-size: 24px;
    font-weight: 900;
}

.product-highlight span {
    color: var(--st-text);
    font-size: 13px;
    line-height: 1.35;
}


/* КНОПКА */
.product-detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 25px;
    border-radius: 10px;
    background: var(--st-green);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.product-detail-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}


/* ЗАГАЛЬНІ СЕКЦІЇ */
.product-detail-section {
    margin-bottom: 75px;
}

.product-section-heading {
    margin-bottom: 30px;
}

.product-section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: var(--st-green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.product-section-heading h2 {
    margin: 0;
    color: var(--st-blue);
    font-size: 34px;
    font-weight: 900;
}


/* ПЕРЕВАГИ */
.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-feature-card {
    padding: 27px;
    border: 1px solid var(--st-border);
    border-radius: 18px;
    background: #ffffff;
}

.product-feature-card h3 {
    margin: 0 0 12px;
    color: var(--st-blue);
    font-size: 19px;
    font-weight: 800;
}

.product-feature-card p {
    margin: 0;
    color: var(--st-text);
    font-size: 15px;
    line-height: 1.6;
}


/* ТЕХНОЛОГІЯ */
.product-tech-section {
    padding: 45px;
    border-radius: 25px;
    background: var(--st-dark-blue);
}

.product-tech-section .product-section-heading h2 {
    color: #ffffff;
}

.product-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.product-tech-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.product-tech-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 17px;
    border-radius: 50%;
    background: var(--st-light-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.product-tech-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 20px;
}

.product-tech-card p {
    margin: 0 0 15px;
    color: #d9e8f2;
    line-height: 1.6;
}

.product-tech-card strong {
    color: #77d368;
    font-size: 14px;
}


/* ХАРАКТЕРИСТИКИ */
.product-spec-table {
    overflow: hidden;
    border: 1px solid var(--st-border);
    border-radius: 18px;
    background: #ffffff;
}

.product-spec-table > div {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 25px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--st-border);
}

.product-spec-table > div:last-child {
    border-bottom: none;
}

.product-spec-table > div:nth-child(even) {
    background: var(--st-light);
}

.product-spec-table span {
    color: #718594;
    font-weight: 600;
}

.product-spec-table strong {
    color: var(--st-dark);
    font-weight: 800;
}


/* РЕАГЕНТИ */
.product-reagent-table {
    overflow: hidden;
    border: 1px solid var(--st-border);
    border-radius: 18px;
    background: #ffffff;
}

.product-reagent-row {
    display: grid;
    grid-template-columns: 1fr 0.7fr 2fr 0.7fr;
    align-items: center;
    border-bottom: 1px solid var(--st-border);
}

.product-reagent-row:last-child {
    border-bottom: none;
}

.product-reagent-row > span {
    padding: 17px 18px;
    color: var(--st-text);
    font-size: 14px;
    line-height: 1.45;
}

.product-reagent-head {
    background: var(--st-blue);
}

.product-reagent-head > span {
    color: #ffffff;
    font-weight: 800;
}


/* ФІНАЛЬНИЙ БЛОК */
.product-detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px;
    border-radius: 25px;
    background: var(--st-light);
}

.product-detail-cta > div > span {
    color: var(--st-green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.product-detail-cta h2 {
    margin: 7px 0 10px;
    color: var(--st-blue);
    font-size: 30px;
    font-weight: 900;
}

.product-detail-cta p {
    max-width: 700px;
    margin: 0;
    color: var(--st-text);
    line-height: 1.6;
}


/* АДАПТАЦІЯ */
@media (max-width: 950px) {

    .product-detail-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-image {
        min-height: 380px;
    }
}

@media (max-width: 650px) {

    .product-detail-page {
        padding: 25px 15px 60px;
    }

    .product-detail-hero {
        padding: 25px;
    }

    .product-detail-image {
        min-height: 280px;
        padding: 10px;
    }

    .product-detail-info h1 {
        font-size: 42px;
    }

    .product-highlight-grid,
    .product-feature-grid,
    .product-tech-grid {
        grid-template-columns: 1fr;
    }

    .product-tech-section {
        padding: 28px 20px;
    }

    .product-spec-table > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .product-reagent-table {
        overflow-x: auto;
    }

    .product-reagent-row {
        min-width: 750px;
    }

    .product-detail-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
}/* =========================================================
   STARMEDICA — СТОРІНКА ОКРЕМОГО ПРИЛАДУ
   ========================================================= */

.product-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 35px 25px 80px;
    color: #17364d;
}

/* ХЛІБНІ КРИХТИ */

.product-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 35px;
    font-size: 14px;
    color: #718594;
}

.product-breadcrumbs a {
    color: #075fa8;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    text-decoration: underline;
}

.product-breadcrumbs strong {
    color: #17364d;
}


/* =========================================================
   ГОЛОВНИЙ БЛОК
   ========================================================= */

.product-hero {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 35px;
    border: 1px solid #dce9f1;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(7, 95, 168, 0.08);
}

.product-hero-image img {
    display: block;
    width: 100%;
    max-width: 470px;
    max-height: 430px;
    object-fit: contain;
}

.product-brand {
    display: inline-block;
    margin-bottom: 12px;
    color: #55b948;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.product-hero-content h1 {
    margin: 0 0 12px;
    color: #075fa8;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 850;
}

.product-hero-content h2 {
    margin: 0 0 25px;
    color: #17364d;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.product-hero-content > p {
    margin: 0 0 17px;
    color: #405566;
    font-size: 17px;
    line-height: 1.7;
}


/* КОРОТКІ ХАРАКТЕРИСТИКИ */

.product-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.product-highlight {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    border-radius: 14px;
    background: #f4f9fc;
    border: 1px solid #dce9f1;
}

.product-highlight strong {
    margin-bottom: 4px;
    color: #075fa8;
    font-size: 19px;
    font-weight: 800;
}

.product-highlight span {
    color: #718594;
    font-size: 13px;
}


/* =========================================================
   СЕКЦІЇ
   ========================================================= */

.product-section {
    margin: 0 0 70px;
    padding: 55px;
    border: 1px solid #dce9f1;
    border-radius: 25px;
    background: #ffffff;
}

.product-section-light {
    background: #f4f9fc;
}

.product-section-label {
    margin-bottom: 10px;
    color: #55b948;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.product-section > h2 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #075fa8;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.product-section-intro {
    max-width: 850px;
    margin-bottom: 35px;
    color: #405566;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   ВЕРСІЇ DX-120
   ========================================================= */

.product-version-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.product-version-card {
    padding: 27px;
    border: 1px solid #dce9f1;
    border-radius: 17px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-version-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(7, 95, 168, 0.10);
}

.product-version-card h3 {
    margin: 0 0 8px;
    color: #075fa8;
    font-size: 26px;
    font-weight: 850;
}

.product-version-card strong {
    display: block;
    margin-bottom: 15px;
    color: #55b948;
    font-size: 14px;
}

.product-version-card p {
    margin: 0;
    color: #405566;
    line-height: 1.6;
}


/* =========================================================
   МОЖЛИВОСТІ
   ========================================================= */

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.product-feature-card {
    padding: 24px;
    border: 1px solid #dce9f1;
    border-radius: 16px;
    background: #ffffff;
}

.product-feature-card h3 {
    margin: 0 0 10px;
    color: #075fa8;
    font-size: 19px;
    font-weight: 800;
}

.product-feature-card p {
    margin: 0;
    color: #405566;
    line-height: 1.6;
}


/* =========================================================
   ІНФОРМАЦІЙНИЙ БЛОК
   ========================================================= */

.product-info-box {
    margin-top: 30px;
    padding: 30px 35px;
    border-left: 5px solid #55b948;
    border-radius: 0 16px 16px 0;
    background: #f4f9fc;
}

.product-info-box h3 {
    margin: 0 0 15px;
    color: #075fa8;
    font-size: 22px;
}

.product-info-box p,
.product-info-box li {
    color: #405566;
    line-height: 1.7;
}

.product-info-box ul {
    margin-bottom: 0;
}


/* =========================================================
   ПАРАМЕТРИ RET
   ========================================================= */

.product-parameter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.product-parameter-grid > div {
    display: flex;
    flex-direction: column;
    min-height: 110px;
    padding: 20px;
    border: 1px solid #dce9f1;
    border-radius: 14px;
    background: #ffffff;
}

.product-parameter-grid strong {
    margin-bottom: 7px;
    color: #075fa8;
    font-size: 20px;
    font-weight: 850;
}

.product-parameter-grid span {
    color: #405566;
    font-size: 13px;
    line-height: 1.45;
}


/* =========================================================
   ТАБЛИЦІ
   ========================================================= */

.product-table-wrap {
    width: 100%;
    margin-top: 30px;
    overflow-x: auto;
    border: 1px solid #dce9f1;
    border-radius: 16px;
    background: #ffffff;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

.product-table th {
    padding: 17px 18px;
    background: #075fa8;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.product-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #e5eef4;
    color: #405566;
    font-size: 14px;
}

.product-table tbody tr:last-child td {
    border-bottom: 0;
}

.product-table tbody tr:hover {
    background: #f4f9fc;
}

.product-table td:first-child {
    color: #17364d;
    font-weight: 700;
}


/* =========================================================
   ФІНАЛЬНИЙ БЛОК
   ========================================================= */

.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 55px;
    border-radius: 25px;
    background: #075fa8;
}

.product-cta > div {
    max-width: 720px;
}

.product-cta span {
    display: block;
    margin-bottom: 9px;
    color: #8fd681;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.product-cta h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.25;
}

.product-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.product-main-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 12px;
    background: #55b948;
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.product-main-button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   АДАПТАЦІЯ
   ========================================================= */

@media (max-width: 900px) {

    .product-hero {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-version-grid {
        grid-template-columns: 1fr;
    }

    .product-parameter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {

    .product-page {
        padding: 25px 15px 60px;
    }

    .product-hero-image {
        min-height: 330px;
        padding: 20px;
    }

    .product-hero-content h1 {
        font-size: 39px;
    }

    .product-highlight-grid,
    .product-feature-grid,
    .product-parameter-grid {
        grid-template-columns: 1fr;
    }

    .product-section {
        padding: 30px 20px;
    }

    .product-section > h2 {
        font-size: 28px;
    }

    .product-cta {
        padding: 35px 25px;
    }
}

/* =========================================================
   INNOVIQURE — СТОРІНКА РЕАГЕНТІВ ІХЛА
   ========================================================= */

.reagents-hero {
    padding: 60px 50px;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #f3faff 0%, #ffffff 65%);
    border: 1px solid var(--st-border);
    border-radius: 26px;
}

.reagents-hero h1 {
    margin: 8px 0 10px;
    color: var(--st-dark-blue);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
}

.reagents-hero h2 {
    max-width: 850px;
    margin: 0 0 20px;
    color: var(--st-dark);
    font-size: 25px;
    line-height: 1.35;
}

.reagents-hero p {
    max-width: 900px;
    color: var(--st-text);
    font-size: 17px;
    line-height: 1.7;
}


/* ПЛАШКИ З НАЗВАМИ РЕАГЕНТІВ */

.reagent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.reagent-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;

    background: #ffffff;
    border: 1px solid #cfe3ef;
    border-radius: 12px;

    color: var(--st-dark-blue);
    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 4px 12px rgba(7, 95, 168, 0.06);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.reagent-list span:hover {
    transform: translateY(-2px);
    border-color: var(--st-light-blue);
    box-shadow: 0 7px 18px rgba(7, 95, 168, 0.12);
}


/* АУТОІМУННІ ГРУПИ */

.reagent-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.reagent-subcategory {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--st-border);
    border-radius: 18px;
    box-shadow: 0 7px 22px rgba(7, 95, 168, 0.06);
}

.reagent-subcategory h3 {
    margin: 0 0 12px;
    color: var(--st-dark-blue);
    font-size: 18px;
    font-weight: 750;
}

.reagent-subcategory p {
    margin: 0;
    color: var(--st-text);
    line-height: 1.6;
}


/* NEXUS + SPECTRUM ВНИЗУ СТОРІНКИ */

.reagent-analyzer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.reagent-analyzer-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--st-border);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(7, 95, 168, 0.07);
}

.reagent-analyzer-card h3 {
    margin: 0 0 8px;
    color: var(--st-dark-blue);
    font-size: 23px;
    font-weight: 800;
}

.reagent-analyzer-card > strong {
    display: block;
    margin-bottom: 15px;
    color: var(--st-green);
    font-size: 19px;
}

.reagent-analyzer-card p {
    margin-bottom: 22px;
    color: var(--st-text);
    line-height: 1.65;
}


/* АДАПТАЦІЯ */

@media (max-width: 900px) {

    .reagent-subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reagent-analyzer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .reagents-hero {
        padding: 35px 22px;
    }

    .reagents-hero h1 {
        font-size: 34px;
    }

    .reagents-hero h2 {
        font-size: 21px;
    }

    .reagent-subcategory-grid {
        grid-template-columns: 1fr;
    }

    .reagent-list {
        gap: 8px;
    }

    .reagent-list span {
        padding: 9px 13px;
        font-size: 14px;
    }
}/* =========================================================
   ВИПРАВЛЕННЯ КАРТОК СТОРІНКИ ІМУНОЛОГІЯ
   ========================================================= */

/* Загальна ширина сторінки */
.category-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}


/* Заголовок сторінки */
.category-header {
    margin: 35px 0 30px;
}

.category-header h1 {
    margin: 6px 0 12px;
    font-size: 40px;
    line-height: 1.15;
    color: var(--st-dark);
}

.category-header p {
    max-width: 1000px;
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--st-text);
}

.category-manufacturer {
    margin-top: 18px;
    font-size: 15px;
}


/* ТРИ КАРТКИ ОДНА ПІД ОДНОЮ */
.category-page .analyzer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}


/* КАРТКА ПРИЛАДУ */
.category-page .analyzer-card {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);

    width: 100%;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid var(--st-border);
    border-radius: 22px;

    box-shadow: 0 8px 25px rgba(7, 95, 168, 0.06);
}


/* БЛОК ФОТО */
.category-page .analyzer-card-image {
    width: 100%;
    height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: #ffffff;
    overflow: hidden;
}


/* САМЕ ФОТО — НЕ РОЗТЯГУЄМО І НЕ ОБРІЗАЄМО */
.category-page .analyzer-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 330px;
    max-height: 270px;

    object-fit: contain;
    object-position: center;
}


/* ТЕКСТ ПРАВОРУЧ */
.category-page .analyzer-card-content {
    min-width: 0;
    padding: 32px 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* БРЕНД */
.category-page .analyzer-brand {
    margin-bottom: 8px;

    color: var(--st-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* НАЗВА */
.category-page .analyzer-card-content h2 {
    margin: 0 0 12px;

    color: var(--st-dark);
    font-size: 31px;
    line-height: 1.15;
}


/* ВЕЛИКИЙ СИНІЙ ЗАГОЛОВОК */
.category-page .analyzer-card-content h3 {
    margin: 0 0 12px;

    color: var(--st-blue);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 750;

    overflow-wrap: break-word;
}


/* ОПИС */
.category-page .analyzer-card-content p {
    margin: 0 0 18px;

    color: var(--st-text);
    font-size: 15px;
    line-height: 1.6;

    overflow-wrap: break-word;
}


/* ХАРАКТЕРИСТИКИ */
.category-page .analyzer-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;

    margin: 2px 0 20px;
}

.category-page .analyzer-specs span {
    font-size: 14px;
    line-height: 1.45;
    color: var(--st-text);
    white-space: normal;
}

.category-page .analyzer-specs strong {
    color: var(--st-dark);
}


/* КНОПКА */
.category-page .analyzer-btn {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 22px;

    background: var(--st-blue);
    color: #ffffff;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.category-page .analyzer-btn:hover {
    background: var(--st-dark-blue);
    color: #ffffff;
}


/* =========================================================
   КАРТКА РЕАГЕНТІВ
   ========================================================= */

.category-page .immunology-reagents-card {
    display: block;
    width: 100%;

    padding: 36px 40px;

    background: linear-gradient(135deg, #f4faff 0%, #ffffff 100%);
}

.category-page .immunology-reagents-card .analyzer-card-content {
    padding: 0;
}

.category-page .reagents-number {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;

    margin-bottom: 14px;

    color: var(--st-dark);
}

.category-page .reagents-number strong {
    color: var(--st-blue);
    font-size: 38px;
    line-height: 1;
}

.category-page .reagents-number span {
    font-size: 16px;
}


/* Категорії реагентів */
.category-page .reagent-category-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin: 5px 0 22px;
}

.category-page .reagent-category-preview span {
    padding: 7px 12px;

    background: #ffffff;
    border: 1px solid var(--st-border);
    border-radius: 8px;

    color: var(--st-dark-blue);
    font-size: 13px;
    font-weight: 650;
}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

@media (max-width: 900px) {

    .category-page .analyzer-card {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .category-page .analyzer-card-image {
        height: 280px;
        padding: 20px;
    }

    .category-page .analyzer-card-image img {
        max-width: 260px;
        max-height: 235px;
    }

    .category-page .analyzer-card-content {
        padding: 26px;
    }

    .category-page .analyzer-card-content h3 {
        font-size: 20px;
    }
}


/* =========================================================
   МОБІЛЬНА ВЕРСІЯ
   ========================================================= */

@media (max-width: 700px) {

    .category-page {
        padding-left: 18px;
        padding-right: 18px;
    }

    .category-header h1 {
        font-size: 34px;
    }

    .category-page .analyzer-card {
        display: block;
    }

    .category-page .analyzer-card-image {
        width: 100%;
        height: 260px;
    }

    .category-page .analyzer-card-image img {
        max-width: 280px;
        max-height: 220px;
    }

    .category-page .analyzer-card-content {
        padding: 25px 22px 28px;
    }

    .category-page .analyzer-card-content h2 {
        font-size: 27px;
    }

    .category-page .analyzer-card-content h3 {
        font-size: 20px;
    }

    .category-page .immunology-reagents-card {
        padding: 28px 22px;
    }
}