/* Page-specific inline styles extracted from index.html */

/* ===== Шрифты ===== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Отступ под фиксированный хедер */
.main-wrapper {
  padding-top: 60px;
}

@media (max-width: 768px) {
  .main-wrapper {
    padding-top: 65px;
  }
}

@media only screen and (max-width: 479px) {
  .-main--list .openArticle__title {
    padding-top: 20px !important;
  }
  
  .breadcrumb {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }
}

h1, h2, h3, h4, h5, h6,
.openArticle__title,
.openArticle__title2,
.g-grid__sectionHeading,
.g-grid__item-title,
.heading-center-13,
.compo-title,
.super-header,
.seznam-footer {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Super.cz Header ===== */
.super-header {
  background: #2b2b2b;
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.super-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Кнопка меню */
.super-header__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.super-header__menu-btn:hover {
  opacity: 0.7;
}

/* Логотип */
.super-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.super-header__star {
  display: block;
  flex-shrink: 0;
}

.super-header__logo-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

/* Поисковая строка */
.super-header__search {
  flex: 1;
  max-width: 650px;
  display: flex;
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  height: 40px;
}

.super-header__search-input {
  flex: 1;
  border: none;
  padding: 0 15px;
  font-size: 15px;
  outline: none;
  color: #333;
}

.super-header__search-input::placeholder {
  color: #999;
}

.super-header__search-button {
  background: #d32f2f;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.super-header__search-button:hover {
  background: #b71c1c;
}

/* Правая часть */
.super-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.super-header__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.super-header__icon-link:hover {
  opacity: 0.7;
}

.super-header__btn-login {
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}

.super-header__btn-login:hover {
  background: #ffffff;
  color: #2b2b2b;
}

.super-header__link-seznam {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.super-header__link-seznam:hover {
  opacity: 0.7;
}

/* Мобильная адаптация */
@media (max-width: 1024px) {
  .super-header__container {
    padding: 10px 16px;
    gap: 15px;
  }
  
  .super-header__search {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .super-header__container {
    gap: 16px;
  }

  .super-header__search {
    display: none;
  }

  /* Мобильный логотип */
  .super-header__star,
  .super-header__logo-text {
    display: none;
  }
  
  .super-header__logo::before {
    content: '';
    display: block;
    width: 120px;
    height: 26px;
    background: url('../logo.svg') no-repeat left center;
    background-size: contain;
  }

  /* Правая часть */
  .super-header__right {
    margin-left: auto;
    gap: 12px;
  }
  
  .super-header__icon-link {
    display: none;
  }

  .super-header__btn-login,
  .super-header__link-seznam {
    display: block;
  }
  
  .super-header__btn-login {
    font-size: 14px;
    padding: 0;
    border: none;
    color: #ff3838;
    background: none;
    font-weight: 700;
  }
  
  .super-header__link-seznam {
    font-size: 14px;
    padding: 0;
    font-weight: 400;
  }
}

@media (max-width: 480px) {
  .super-header__icon-link:first-child {
    display: none;
  }
  
  .super-header__logo::before {
    width: 120px;
    height: 26px;
  }
}

/* ===== Seznam.cz Footer ===== */
.seznam-footer {
  background: #f9f9f9;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  padding: 30px 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Логотип */
.seznam-footer__logo-section {
  margin-bottom: 30px;
  text-align: left;
}

.seznam-footer__logo {
  display: block;
}

/* Категории */
.seznam-footer__themes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.seznam-footer__column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.seznam-footer__title {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.seznam-footer__link {
  font-size: 12px;
  color: #c00;
  text-decoration: none;
  line-height: 1.6;
  font-weight: 700;
}

.seznam-footer__link:hover {
  text-decoration: underline;
}

/* Секции с горизонтальными ссылками */
.seznam-footer__section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.seznam-footer__section-title {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  margin-right: 4px;
}

.seznam-footer__section a {
  font-size: 12px;
  color: #c00;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  font-weight: 700;
}

.seznam-footer__section a:hover {
  text-decoration: underline;
}

/* Разделители (точки) между ссылками */
.seznam-footer__section a::after {
  content: "•";
  color: #999;
  font-size: 10px;
  margin: 0 8px;
  display: inline-block;
}

/* У последней ссылки убираем разделитель */
.seznam-footer__section a:last-of-type::after {
  content: none;
}

/* Нижняя часть */
.seznam-footer__bottom {
  padding-top: 16px;
  text-align: center;
}

.seznam-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.seznam-footer__meta a {
  font-size: 12px;
  color: #c00;
  text-decoration: none;
  position: relative;
  font-weight: 700;
}

.seznam-footer__meta a:hover {
  text-decoration: underline;
}

/* Разделители (точки) между мета-ссылками */
.seznam-footer__meta a::after {
  content: "•";
  color: #999;
  font-size: 10px;
  margin: 0 8px;
  display: inline-block;
}

/* У последней ссылки убираем разделитель */
.seznam-footer__meta a:last-of-type::after {
  content: none;
}

.seznam-footer__copyright {
  margin-bottom: 12px;
}

.seznam-footer__copyright p {
  font-size: 11px;
  color: #666;
  margin: 0 0 4px 0;
}

.seznam-footer__legal {
  font-size: 10px;
  color: #999;
  line-height: 1.6;
  margin: 0;
}

.seznam-footer__legal a {
  color: #c00;
  text-decoration: none;
}

.seznam-footer__legal a:hover {
  text-decoration: underline;
}

/* Мобильная адаптация */
@media (max-width: 1024px) {
  .seznam-footer__themes {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .seznam-footer {
    padding: 20px 16px;
    text-align: left;
  }
  
  .seznam-footer__logo-section {
    text-align: left;
    margin-bottom: 20px;
  }
  
  .seznam-footer__logo {
    width: 100px;
    height: auto;
  }
  
  .seznam-footer__themes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .seznam-footer__column {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .seznam-footer__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
  }
  
  .seznam-footer__link {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
  }
  
  .seznam-footer__section {
    display: none;
  }
  
  .seznam-footer__bottom {
    text-align: left;
  }
  
  .seznam-footer__meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .seznam-footer__copyright,
  .seznam-footer__legal {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .seznam-footer__themes {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  
  .seznam-footer__logo {
    width: 90px;
  }
  
  .seznam-footer__title {
    font-size: 12px;
  }
  
  .seznam-footer__link {
    font-size: 11px;
  }
  
  .seznam-footer__meta {
    gap: 4px;
    font-size: 11px;
  }
  
  .seznam-footer__meta a {
    font-size: 11px;
  }
}

/* I18N pending: hide content until translations applied (FOUC prevention) */
html.i18n-pending .g-grid__item-title {
  visibility: hidden;
}
html.i18n-pending .comment__content {
  visibility: hidden;
}
html.i18n-pending .comment__user-name {
  visibility: hidden;
}
.cm-header__logo::after,
.cm-footer__logo::after {
  content: none !important;
}
.cm-header__logo img,
.cm-footer__logo img {
  display: inline-block !important;
}

/* Meta row (date · time | views | comments): clean, adaptive, no overflow */
.openArticle__stats--wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 18px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-auto-rows: minmax(0, auto);
}
.openArticle__stats--wrapper > li {
  list-style: none;
  margin: 0;
  min-width: 0;
}
.openArticle__date--wrapper {
  grid-column: 1;
  overflow: hidden;
}
/* Дата + время: ровная типографика, без артефактов темы */
.openArticle__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #8f8f8f;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.openArticle__date-text,
.openArticle__date-time {
  white-space: nowrap;
}
.openArticle__date-time {
  position: relative;
  padding-left: 12px;
  font-variant-numeric: tabular-nums;
}
.openArticle__date-time::before {
  content: attr(data-sep);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #bdbdbd;
}
/* Предотвращаем артефакты от базовой темы */
.openArticle__date *::after {
  content: none !important;
  border: 0 !important;
}
.-main--list .openArticle__date {
  margin: 0 !important;
}
.-main--list .openArticle__date span {
  border: 0 !important;
  padding: 0 !important;
}
/* Иконки/цифры: выравнивание и размер */
.openArticle__stats--wrapper .openArticle__stats--views,
.openArticle__stats--wrapper .openArticle__stats--comments {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #8f8f8f;
  text-indent: 0 !important;
  padding-left: 24px !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-size: 18px 18px !important;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  min-height: 18px;
}
/* Центровка спрайтов темы внутри счетчиков (строго одинаковые размеры) */
.openArticle__stats--wrapper .icn:before,
.openArticle__stats .icn:before {
  bottom: auto !important;
  top: 50% !important;
  left: 0 !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
}
/* Мобильная адаптация: дата — на всю строку, счётчики — ниже */
@media (max-width: 640px) {
  .openArticle__stats--wrapper {
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    column-gap: 16px;
  }
  .openArticle__date--wrapper {
    grid-column: 1 / -1;
  }
  .openArticle__date {
    font-size: 13px;
  }
  .openArticle__date-time {
    padding-left: 8px;
  }
  .openArticle__stats--wrapper .openArticle__stats--views,
  .openArticle__stats--wrapper .openArticle__stats--comments {
    font-size: 13px;
    background-size: 16px 16px !important;
    padding-left: 26px !important;
  }
  .openArticle__stats--wrapper .icn:before {
    width: 16px !important;
    height: 16px !important;
  }
}

/* Десктоп: счётчики справа (дата тянется, счётчики прижаты к правому краю) */
@media (min-width: 641px) {
  .openArticle__stats--wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .openArticle__date--wrapper {
    flex: 1 1 auto;
    min-width: 0;
  }
}
/* То же выравнивание для серого блока статистики под статьёй */
.openArticle__stats .openArticle__stats--views,
.openArticle__stats .openArticle__stats--comments {
  display: inline-flex;
  align-items: center;
  text-indent: 0 !important;
  padding-left: 26px !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-size: 18px 18px !important;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  min-height: 18px;
}
/* Компоновка серого блока: счётчики рядом с автором, а не у правого края */
.openArticle__stats.--gray-bg {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 14px;
}
.openArticle__stats.--gray-bg > div:last-child {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
}
/* Сбрасываем правый float из базовой темы */
.-main--list .openArticle__stats span,
.openArticle__stats span {
  float: none !important;
}
.openArticle__stats.--gray-bg .openArticle__stats--views,
.openArticle__stats.--gray-bg .openArticle__stats--comments {
  margin-right: 0 !important;
}
/* Центрируем псевдо-иконки темы внутри статов, чтобы они не "проваливались" вниз */

/* Comments: avatars and like button */
.comment__user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: inline-block;
}
@media (max-width: 480px) {
  .comment__user-img {
    width: 40px;
    height: 40px;
  }
}

/* Fade-in animation for appended comments */
@keyframes cmFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cm-comment-appear {
  animation: cmFadeIn 0.45s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .cm-comment-appear {
    animation: none;
  }
}

.comment__header {
  position: relative;
}
.comment__like-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.comment__like-btn::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("../images/like.svg") no-repeat center / contain;
  mask: url("../images/like.svg") no-repeat center / contain;
}
.comment__like-btn:hover {
  filter: brightness(0.85);
}
.comment__like-btn[aria-pressed="true"] {
  color: #ff8400;
}
.comment__like-btn .comment__likes-count {
  font-weight: 600;
}
.box-header__total {
  margin-left: 8px;
  color: #888;
  font-weight: 600;
}
.comment__id {
  display: none !important;
}

/* Modal: comment confirmation */
.cm-modal-comment {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 11000;
}
.cm-modal-comment[hidden] {
  display: none;
}
.cm-modal-comment__overlay {
  position: absolute;
  inset: 0;
}
.cm-modal-comment__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #111;
  width: 92%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 24px 20px 18px;
  font-family: inherit;
}
.cm-modal-comment__title {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 700;
}
.cm-modal-comment__text {
  margin: 0 0 16px;
  line-height: 1.45;
}
.cm-modal-comment__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cm-modal-comment__btn {
  cursor: pointer;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}
.cm-modal-comment__btn--primary {
  background: #ff8400;
  color: #fff;
}
.cm-modal-comment__btn--primary:hover {
  filter: brightness(0.95);
}
.cm-modal-comment__btn--secondary {
  background: #eee;
  color: #111;
}
.cm-modal-comment__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
@media (max-width: 480px) {
  .cm-modal-comment__dialog {
    padding: 20px 16px;
  }
  .cm-modal-comment__title {
    font-size: 18px;
  }
}

/* Async Sections: skeleton overlay */
.cm-lazy {
  position: relative;
}
.cm-lazy__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eee 0%, #f5f5f5 50%, #eee 100%);
  background-size: 200% 100%;
  animation: cmShimmer 1.2s linear infinite;
  z-index: 1;
}
.cm-lazy.is-ready .cm-lazy__overlay {
  display: none;
}
@keyframes cmShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cm-lazy__overlay {
    animation: none;
  }
}

/* ==== Extracted former inline styles (helpers) ==== */
.openArticle__title2 {
  font-weight: 600;
  margin: 20px 0 10px !important;
  padding-bottom: 0;
}
.heading-center-13 {
  line-height: 1.3em;
  text-align: center;
}
.mb-25 {
  margin-bottom: 25px !important;
}

.img-block-750 {
  width: 100%;
  max-width: 750px;
  margin-bottom: 10px;
  height: auto;
}
.img-block-550 {
  width: 100%;
  max-width: 550px;
  height: auto;
}
.img-block-350 {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: auto;
}
.img-block-300 {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.product-image--floating {
  max-width: 225px;
  margin: 0 auto -115px;
  display: block;
}

.ingridients__content--shadow {
  box-shadow:
    blue 0 0 0 2px inset,
    rgb(255, 255, 255) 5px -5px 0 -3px,
    rgb(31, 193, 27) 5px -5px,
    rgb(255, 255, 255) 10px -10px 0 -3px,
    rgb(255, 217, 19) 10px -10px,
    rgb(255, 255, 255) 15px -15px 0 -3px,
    rgb(255, 156, 85) 15px -15px,
    rgb(255, 255, 255) 20px -20px 0 -3px,
    rgb(255, 85, 85) 20px -20px;
}
.compo-title-spacing {
  margin: 50px auto 35px !important;
}

.note-highlight-block {
  background-color: #f6f28b;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 0 auto 40px;
  margin-top: 0;
  max-width: 700px;
}

.maxw-700-center {
  max-width: 700px;
  margin: 0 auto;
}
.maxw-700 {
  max-width: 700px;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.section-title-spaced {
  padding-top: 20px !important;
  padding-bottom: 5px !important;
}
.text-y-highlight {
  color: #fcd72b !important;
  font-weight: 700 !important;
}
.excl p {
  color: #fff !important;
}

/* Ensure swiper2 bottom padding consistent */
.swiper2 {
  padding-bottom: 40px !important;
}

/* Index inline style migrations */
#passportHeader {
  height: 36px;
  visibility: hidden;
}
.modal[aria-hidden="true"] {
  display: none;
}
.m-cf-search_wrapper_container_form_button_wrapper_icon {
  height: 21px;
  width: 21px;
}
.slider-save-right {
  position: absolute;
  right: 15px;
}
.img-block-500 {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.img-block-350 {
  width: 100%;
  max-width: 350px;
  height: auto;
}
.mt-20 {
  margin-top: 20px !important;
}
.order-submit {
  font-size: 17px !important;
  text-transform: uppercase;
}
.nw-img {
  max-width: 45px;
  width: 100%;
}
.slider-top__img[data-bg] {
  background-size: cover;
  background-position: center;
}
.composition-note-italic {
  text-align: center;
  font-size: 15px !important;
  margin: 45px 20px 0;
  line-height: 1.3;
  margin-bottom: 0;
  font-style: italic;
}
.shipping-notice {
  font-size: 15px !important;
  line-height: 1.25em !important;
}
.text-red-bold {
  color: red;
  font-weight: 700;
}
.maxw-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.img-block-720 {
  width: 100%;
  max-width: 720px;
  height: auto;
}

/* Quiz visibility fix (removed inline display:block) */
.quiz_step.active {
  display: block !important;
}

/* ===== Comments header layout (fix overlap/icons) ===== */
#comments .box-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
}
#comments .box-header__title {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}
#comments .box-header__total {
  margin-left: 6px;
  color: #8f8f8f;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  font-size: 18px;
  white-space: nowrap;
  flex: 0 0 auto;
}
#comments .box-header__comment {
  order: 2;
  flex-basis: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  background-position: left center !important;
  padding-left: 28px !important;
  padding-right: 0 !important;
  white-space: nowrap;
  height: 24px;
  line-height: 24px;
}
/* Убираем декоративные иконки темы у заголовка/счётчика, чтобы не налезали на цифры */
#comments .box-header__title::before,
#comments .box-header__total::before {
  content: none !important;
  background: none !important;
}
@media (max-width: 480px) {
  #comments .box-header {
    justify-content: space-between;
  }
  #comments .box-header__comment {
    order: 3;
    flex-basis: auto;
    margin-left: auto;
    justify-content: flex-end;
    background-position: left center !important;
    padding-left: 28px !important;
    padding-right: 0 !important;
  }
}

/* ==== Helpers extracted from inline styles (new) ==== */
/* Универсальный класс размера шрифта 18px (замена style="font-size: 18px") */
.fs-18 {
  font-size: 18px !important;
}

/* Перенос из inline: стили для .custom__star-text */
.custom__star-text {
  font-size: 16px !important;
  text-align: center;
  margin-top: 10px;
}
