h2 {
text-align:center!important;
text-transform:initial!important;
color:#014E71!important;
font-size: clamp(1.09375rem, calc(1.0326rem + 0.2717vw), 1.25rem)!important;
}
h3, h4, h5 {
text-align:center;
text-transform:initial!important;
font-size: clamp(0.984375rem, calc(0.9293rem + 0.2446vw), 1.125rem)!important;
color: #014e71!important;
}
p:not(.highlight), li:not(.breadcrumb-item):not(.active) {
    font-size: clamp(0.875rem, calc(0.8261rem + 0.2174vw), 1rem)!important;
    hyphens: auto!important;
    text-align: justify;
}
.video-button-styled:hover .hover-bg {
opacity: 1!important;
}
.video-button-styled:hover .hover-text {
color: #063A52!important;
}
.highlight {
color: red;
font-weight: bold;
font-size: clamp(1.1rem, calc(1.1rem + 0.2174vw), 1.25rem)!important;
hyphens: auto!important;
text-align: center!important;
/*       */
    padding: 15px; /*   */
    border: 1px solid #ccc; /*    */
    border-left: 8px solid #cc0000; /*    ()  */
    background-color: #f0f0f0; /*    ( ) */
    border-radius: 5px; /*    */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /*   */
}
.highlight p {
text-align: center!important;
}
.highlight h3 {
color: red!important;
}
.card-title {
text-align: center;
}
.product-page .page-title span{
color: red!important;
}
.specsheet table {
        font-size: clamp(0.875rem, calc(0.8261rem + 0.2174vw), 1rem)!important;
        max-width: 100%;
        border-collapse: collapse;
        border: 1px solid #000000!important;
        }
        .text-formatted table th {
        clamp(0.984375rem, calc(0.9293rem + 0.2446vw), 1.125rem)!important
		text-align: center!important;
		}
		td:first-child {
        padding:0 0 0 10px;
		width: 70%;
		text-align: left!important;
        }
        td:nth-child(2){
        text-align:center!important;
		width: 30%;
        }
		.card-title {
		text-align: center!important;
		}
        /* Адаптивність для мобільних пристроїв */
        @media screen and (max-width: 600px) {
            thead {
                display: none;
            }
            tr {
                display: flex;
                flex-direction: column; /* Кожен рядок (параметр-значення) стає колонкою */
                margin-bottom: 10px;
                border: 1px solid #ccc;
                padding: 0; /* Прибираємо внутрішній відступ tr, якщо він був */
            }
            td {
                border: none; /* Прибираємо індивідуальні рамки td */
                padding: 6px 10px; /* Оновлюємо відступи для td */
                text-align: center;
                width: 100%;
                box-sizing: border-box;
            }
            td:before {
                display: none; /* Повністю прибираємо псевдоелемент :before, щоб не відображати data-label */
            }
            td:nth-of-type(1) { /* Перший td - містить Назву параметру */
                word-wrap: break-word;
                padding:0 0 0 10px;
                font-weight: bold; /* Робимо назву параметра жирною */
                background-color: #f9f9f9; /* Легкий фон для візуального розділення */
                border-bottom: 2px dotted #eee; /* Лінія між назвою та значенням */
	            width: 100%;
            }
            td:nth-of-type(2) { /* Другий td - містить Значення */
			word-wrap: break-word;
			width: 100%;
			text-align: center;
            }
        }
		
/* === Мінімалістичний FAQ у форматі таблиці === */
dl {
  display: block;
  margin: 0;
  padding: 0;
  color: #1f1f1f;
}

/* Кожна пара FAQ (питання+відповідь) */
dl > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  gap: 16px 32px;
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 24px 32px;
  margin-bottom: 20px;
  transition: all 0.25s ease;
}

dl > div:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Питання */
dl > div > dt {
  font-weight: 600;
  font-size: 1.05rem;
  color: #111;
  margin: 0;
  position: relative;
}

dl > div > dt::before {
  content: "❓";
  position: absolute;
  left: -28px;
  color: #0073e6;
  font-size: 1.1rem;
}

/* Відповідь */
dl > div > dd {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
  color: #444;
}

/* Адаптив під мобільні */
@media (max-width: 700px) {
  dl > div {
    grid-template-columns: 1fr;
    padding: 20px 22px;
  }
  dl > div > dt::before {
    left: -6px;
    top: 2px;
    font-size: 1rem;
  }
}
