/*
  Таблица
  Аналог:
  .params-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
*/
.product-page-content .content .compare-block{
    overflow: auto;
}
.product-page-content .content .compare-block table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
	/* «gap: 5px» для обычной таблицы */
    /* Если нужно зафиксировать ширину столбцов:
       table-layout: fixed; */
}

/* Шапка таблицы (thead, th)
   Аналог .table-title-row {...}, .table-title-row div {...} */

.product-page-content .content .compare-block table thead tr {
    /* Доп. стиль для всей строки в thead, если надо */
}

.product-page-content .content .compare-block table thead td {
    max-width: calc((100% - 350px) / 3);
    padding: 20px 30px;
    text-align: center;
    vertical-align: middle;
    color: #18232A;
    font-family: "Segoe UI";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
body.dark-theme .product-page-content .content .compare-block table thead td {
	color: #f8f8f8;
}

.product-page-content .content .compare-block table thead td:first-child {
    max-width: 350px;
    text-align: left;
	background-color: #f4f4f5;
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
	left: 0;
	/* вместо justify-content: flex-start */
}
body.dark-theme .product-page-content .content .compare-block table thead td:first-child {
	background-color: #18232A;
}

/* Тело таблицы (tbody, tr, td)
   Аналог .items-row {...}, .items-row .item {...} */

.product-page-content .content .compare-block table tbody tr {
    width: 100%;
}

/* Ховер по строке (аналог .items-row:hover .item) */
.product-page-content .content .compare-block table tbody tr:hover td {
    background: #FFFFFF !important;
    /*border-color: transparent !important;*/
    box-shadow: none;
}
body.dark-theme .product-page-content .content .compare-block table tbody tr:hover td {
	background: #374151 !important;
}

/* Ячейки (аналог .items-row .item) */
.product-page-content .content .compare-block table tbody td {
    max-width: calc((100% - 350px) / 3);
    padding: 30px;
    vertical-align: middle;
    text-align: center;

    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 4px rgba(41, 54, 63, 0.1);
    font-family: "Segoe UI";
    font-size: 20px;
    font-weight: 400;
    line-height: 130%; /* 26px */
}

/* Первый столбец (аналог .items-row .item:first-child) */
.product-page-content .content .compare-block table tbody td:first-child {
    width: 350px;
    text-align: left;
    font-weight: 700;
    background: #f4f4f5;
    border: 1px solid #D5D8DA;
    box-shadow: none;
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
	left: 0;
}
body.dark-theme .product-page-content .content .compare-block table tbody td:first-child {
	background-color: #374151;
}

/* --------------------------------------------- */
/* Медиа-запросы (аналог исходных)               */
/* --------------------------------------------- */

/* 1) max-width: 1350px */
@media (max-width: 1350px) {
    .product-page-content .content .compare-block table thead th:first-child {
        padding: 20px;
        width: 280px;
    }
    .product-page-content .content .compare-block table thead th {
        max-width: calc((100% - 280px) / 3);
    }
    .product-page-content .content .compare-block table tbody td {
        padding: 20px;
        max-width: calc((100% - 280px) / 3);
    }
    .product-page-content .content .compare-block table tbody td:first-child {
        padding: 20px;
        width: 280px;
    }
}

/* 2) max-width: 1230px */
@media (max-width: 1230px) {
    .product-page-content .content .compare-block table thead td {
        font-size: 16px;
    }
	.product-page-content .content .compare-block table thead th:first-child {
        width: 200px;
        font-size: 16px;
    }
    .product-page-content .content .compare-block table thead th {
        font-size: 16px;
        padding: 20px;
        max-width: calc((100% - 200px) / 3);
    }
    .product-page-content .content .compare-block table tbody td {
        font-size: 16px;
        max-width: calc((100% - 200px) / 3);
    }
    .product-page-content .content .compare-block table tbody td:first-child {
        width: 200px;
        font-size: 16px;
    }
}

/* 3) max-width: 1024px */
@media (max-width: 1024px) {
    .product-page-content .content .compare-block table thead td {
        font-size: 14px;
    }
	.product-page-content .content .compare-block table thead th:first-child {
        font-size: 12px;
        padding: 10px;
        max-width: 150px;
    }
    .product-page-content .content .compare-block table thead th {
        font-size: 14px;
        padding: 10px;
        max-width: calc((100% - 150px) / 3);
    }
    .product-page-content .content .compare-block table tbody td {
        font-size: 12px;
        padding: 10px;
        max-width: calc((100% - 150px) / 3);
    }
    .product-page-content .content .compare-block table tbody td:first-child {
        font-size: 12px;
        max-width: 170px;
    }
}

/* 4) max-width: 768px */
@media (max-width: 768px) {
    .product-page-content .content .compare-block table thead td {
        font-size: 12px;
    }
	.product-page-content .content .compare-block table thead th:first-child {
        font-size: 10px;
        padding: 5px;
        max-width: 100px;
    }
    .product-page-content .content .compare-block table thead th {
        font-size: 10px;
        max-width: calc((100% - 100px) / 3);
    }
    .product-page-content .content .compare-block table tbody td {
        font-size: 10px;
        padding: 5px;
        max-width: calc((100% - 100px) / 3);
    }
    .product-page-content .content .compare-block table tbody td:first-child {
        font-size: 10px;
        /*max-width: 100px;*/
    }
}

/* 5) max-width: 500px */
@media (max-width: 500px) {
    .product-page-content .content .compare-block table thead th:first-child {
        max-width: 70px;
    }
    .product-page-content .content .compare-block table thead th {
        max-width: calc((100% - 70px) / 3);
    }
    .product-page-content .content .compare-block table tbody td {
        max-width: calc((100% - 70px) / 3);
    }
    .product-page-content .content .compare-block table tbody td:first-child {
        /*max-width: 70px;*/
    }
}

.page-content .title .logo{
    height: 60px;
    /*width: 60px;*/
}
.page-content .title .logo img{
    height: 100%;
    /*width: 100%;*/
}
