:root {
    --bg: #f5f5f7;
    --bg-soft: #f6f6f6;
    --panel: #d8dbe0;
    --panel-alt: #d7dbe1;
    --panel-light: #ececec;

    --white: #fff;

    --text: #4e5665;
    --text-dark: #3f4653;
    --text-title: #2f3640;
    --text-muted: #8a909b;
    --text-soft: #66707f;

    --border: #cfd4db;
    --border-soft: #dfe3e8;
    --border-light: #e6e9ed;
    --border-panel: #bfc4cb;
    --border-panel-bottom: #b9bec6;
    --border-apple: rgba(15, 23, 42, 0.1);

    --link: #5f6f88;
    --primary: #4c6ef5;
    --primary-hover: #3f5de0;
    --danger: #f25a3c;

    --bg-overlay: rgba(80, 80, 80, 0.55);
    --modal-bg: #f4f4f5;

    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
    --shadow: 0 18px 38px rgba(207, 238, 236, 0.35);
    --shadow-focus: 0 0 0 4px rgba(0, 113, 227, 0.12);

    --radius: 2px;
    --radius-sm: 2px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 18px;
    --radius-pill: 36px;

    --font-base: 'Inter', Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-base);
    background: var(--bg);
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: underline;
}

/* ===== LAYOUT ===== */

.page,
.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== AUTH PAGE ===== */

.topbar {
    background: var(--panel);
    border: 1px solid var(--border-panel);
    border-bottom: 1px solid var(--border-panel-bottom);
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar__title {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    color: #5d6572;
    text-align: center;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    background: var(--bg-soft);
}

.auth-card {
    width: 100%;
    max-width: 325px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.auth-card__header {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-title);
}

.auth-card__body {
    padding: 14px;
}

.auth-card__desc {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #666f7d;
}

.form-label-small {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 600;
    color: #7b8491;
}

.form-control,
.input-group-text {
    min-height: 32px;
    border-radius: 0;
    font-size: 12px;
}

.form-control::placeholder {
    color: #b2b8c2;
}

.password-btn {
    padding-inline: 10px;
    background: var(--white);
    border-left: 0;
    color: #98a1ad;
}

.password-btn:hover {
    background: var(--white);
    color: #6c757d;
}

.form-check-input {
    margin-top: 0.2em;
    border-radius: 0 !important;
}

.form-check-label {
    font-size: 12px;
    line-height: 1.15;
    color: var(--text-soft);
}

.form-check-label a {
    color: var(--link);
}

.btn-send {
    min-width: 80px;
    padding: 5px 14px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
}

/* password group */
.input-group.password-group {
    overflow: hidden;
    border: 1px solid var(--border-apple);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: all 0.2s ease;
}

.input-group.password-group:hover {
    border-color: rgba(15, 23, 42, 0.14);
}

.input-group.password-group:focus-within {
    background: var(--white);
    border-color: rgba(0, 113, 227, 0.35);
    box-shadow: var(--shadow-focus);
}

.input-group.password-group .form-control,
.input-group.password-group .password-btn,
.input-group.password-group .input-group-text {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.input-group.password-group .form-control {
    min-height: 44px;
}

.input-group.password-group .form-control:focus {
    box-shadow: none !important;
}

.input-group.password-group .password-btn,
.input-group.password-group .input-group-text {
    padding-inline: 12px;
    color: #8e8e93 !important;
}

.input-group.password-group .password-btn:hover {
    color: #636366 !important;
}

.footer-bar {
    padding: 14px 30px 10px;
    background: var(--panel);
    border: 1px solid var(--border-panel);
}

.footer-message-btn {
    padding: 4px 12px;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.footer-time {
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.6;
    color: #596170;
}

.footer-time strong {
    font-weight: 600;
}



/* ===== PAGE WIDTH LIMIT ===== */
:root {
    --site-max-width: 1600px;
    --site-side-gap: 48px;
}

.top-strip,
.header-main,
.nav-line,
.info-row,
.main-grid,
.footer,
.news-page,
.news-detail-page,
.faq-page,
.faq-page--light {
    padding-left: var(--site-side-gap);
    padding-right: var(--site-side-gap);
}

.top-strip > *,
.header-main > *,
.nav-line > *,
.info-row > *,
.main-grid > *,
.footer > *,
.news-page > *,
.news-detail-page > *,
.faq-page > *,
.faq-page--light > * {
    width: 100%;
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
}

/* ===== DASHBOARD PAGE ===== */

.top-strip {
    padding: 8px 16px 4px;
    background: var(--panel-alt);
    border-bottom: 1px solid #c8cdd4;
}

.top-select {
    max-width: 170px;
}

.top-select .form-select {
    min-height: 34px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 18px;
    border-color: #c8cdd4;
    background-color: #eef1f4;
    color: #5d6572;
    font-size: 13px;
}

.top-select .top-select-label {
    position: relative;
    top: 3px;
    z-index: 2;
    display: block;
    margin-bottom: -1px;
    padding-left: 12px;
    pointer-events: none;
    font-size: 11px;
    line-height: 1;
    color: #7a8290;
}

.top-debt {
    text-align: end;
    white-space: nowrap;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #4c5566;
}

.header-main {
    padding: 10px 16px 8px;
    background: #f4f4f5;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 72px;
    margin: 0 auto;
    border-radius: var(--radius-pill);
    background: #d9dde2;
    color: #525b6a;
    text-decoration: none;
    overflow: hidden;
}

.logo-box img {
    display: block;
    width: 76px;
    max-width: 78%;
    height: auto;
}

.header-info-title,
.header-info-sub,
.manager-name,
.manager-phone {
    color: #4d5564;
}

.header-info-title {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
}

.header-info-sub {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.manager-name {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 600;
}

.manager-phone {
    margin-right: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
}

.btn-question {
    padding: 4px 14px;
    border-radius: 18px;
    border-color: #c6ccd4;
    background: #f4f4f7;
    color: #7a8190;
    font-size: 12px;
}

.cart-box {
    position: relative;
    padding-right: 28px;
}

.cart-bell {
    position: absolute;
    top: 4px;
    right: 0;
    width: 24px;
    height: 24px;
}

.cart-bell::before {
    content: "🔔";
    display: block;
    font-size: 20px;
    line-height: 24px;
    filter: grayscale(1);
    opacity: 0.8;
}

.cart-bell::after {
    content: "";
    position: absolute;
    top: 1px;
    right: 1px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--danger);
}

.nav-line {
    padding: 0 16px;
    background: var(--panel-alt);
}

.nav-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 22px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
}

.nav-main a {
    color: #5a6270;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.info-row {
    padding: 14px 16px 0;
}

.balance-box,
.news-card {
    min-height: 68px;
    border-radius: var(--radius-md);
    background: #f1f1f1;
}

.balance-box {
    padding: 12px 18px;
}

.balance-box .line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #424850;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.balance-note {
    margin-top: 2px;
    color: #9aa0aa;
    font-size: 12px;
}

.news-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 14px;
}

.news-thumb {
    width: 46px;
    min-width: 46px;
    height: 50px;
    overflow: hidden;
    border-radius: 6px;
    background: #d6d6d6;
}

.news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-date {
    margin-bottom: 2px;
    color: #505866;
    font-size: 13px;
    font-weight: 500;
}

.news-title {
    margin-bottom: 2px;
    color: #505866;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
}

.news-link {
    color: #9aa0aa;
    font-size: 13px;
    text-decoration: underline;
}

.main-grid {
    padding: 52px 44px 44px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 255px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: #f2f2f2;
    color: #3c3c3d;
    text-align: center;
}

.dashboard-card--left {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.dashboard-title {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
}

.dashboard-card--left .dashboard-title {
    margin-bottom: 26px;
}

.order-list {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.45;
}

.order-link {
    font-size: 16px;
    font-weight: 500;
}

/* ===== COMMON FOOTER LINKS ===== */

.footer-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    gap: 8px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-left-link {
    color: #4f5968;
    font-size: 12px;
    text-decoration: underline;
    white-space: nowrap;
}

.footer {
    margin-top: auto;
    padding: 10px 16px 8px;
    background: var(--panel-alt);
    border-top: 1px solid #c8cdd4;
}

.footer-btn {
    margin-top: 10px;
    padding: 4px 12px;
    border-radius: var(--radius-lg);
    font-size: 12px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1399.98px) {
    .nav-main a {
        font-size: 16px;
    }

    .dashboard-title {
        font-size: 24px;
    }
}

@media (max-width: 1199.98px) {
    .top-debt {
        margin-top: 10px;
        text-align: start;
        font-size: 18px;
    }

    .footer-links {
        grid-template-columns: repeat(3, minmax(110px, 1fr));
    }

    .main-grid {
        padding: 28px 24px 24px;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        min-height: 100px;
        padding: 20px 15px;
    }

    .topbar__title {
        font-size: 18px;
    }

    .content {
        padding: 30px 15px;
    }

    :root {
        --site-side-gap: 16px;
    }

    .footer-bar {
        padding: 15px;
    }

    .nav-main {
        justify-content: flex-start;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        gap: 8px 18px;
        margin-top: 15px;
    }

    .footer-time {
        margin-top: 15px;
    }

    .dashboard-card {
        min-height: 200px;
        padding: 24px;
    }

    .dashboard-title {
        font-size: 22px;
    }

    .balance-box .line {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .top-select {
        max-width: 100%;
    }

    .logo-box {
        margin-bottom: 12px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: underline;
}


/* overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9000;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  position: fixed;
  z-index: 9001;
  opacity: 0;
  display: none;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.modal.is-active {
  opacity: 1;
  display: block;
  visibility: visible;
  pointer-events: auto;
}

.modal--feedback,
.modal--success {
  top: 50%;
  left: 50%;
  right: auto;
  width: min(458px, calc(100vw - 32px));
  transform: translate(-50%, calc(-50% + 10px));
}

.modal__window {
  overflow: hidden;
  background: var(--modal-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.modal__title {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.modal__close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: -4px -4px -4px 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7f8793;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.modal__body {
  padding: 18px 16px 14px;
}

.modal__desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

.modal__desc--success {
  margin: 0;
  font-size: 15px;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding: 14px 16px 15px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.2);
}

.modal__footer--single {
  justify-content: flex-end;
}

/* form */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field {
  display: block;
}

.field__label {
  display: block;
  margin: 0 0 4px;
  color: #6e7685;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.field__required {
  color: #e35d5d;
}

.field--static,
.field__control,
.field__fake-input {
  width: 100%;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.04);
  color: #596275;
}

.field--static {
  padding: 6px 10px 7px;
}

.field--static .field__label {
  margin-bottom: 2px;
  color: #7c8391;
}

.field__value {
  font-size: 13px;
  line-height: 1.3;
}

.field__control {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bac1cb;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
  resize: vertical;
}

.field__control::placeholder {
  color: var(--text-muted);
}

.field__control:focus {
  border-color: var(--primary);
  background: #fff;
}

.field__control--textarea {
  min-height: 72px;
}

.field--file {
  position: relative;
}

.field__file {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.field__fake-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 11px 14px;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid #bac1cb;
  border-radius: 12px;
  background: #fff;
}

.field__file-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.field--file.has-file .field__file-name {
  color: var(--text);
}

.field__file-remove {
  display: none;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.field__file-remove:hover {
  text-decoration: underline;
}

.field--file.has-file .field__file-remove {
  display: inline-flex;
}

/* checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  cursor: pointer;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox__box {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1px solid #7f91e7;
  border-radius: 2px;
  background: #5f76ea;
}

.checkbox__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.checkbox__input:not(:checked) + .checkbox__box {
  background: transparent;
  border-color: #b8bec8;
}

.checkbox__input:not(:checked) + .checkbox__box::after {
  opacity: 0;
}

.checkbox__text {
  font-size: 12px;
  line-height: 1.35;
  color: var(--text);
}

/* buttons */
.btn {
  min-width: 100px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--ghost {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn--ghost:hover {
  background: rgba(86, 112, 240, 0.08);
}

.btn--primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
}

/* responsive */
@media (max-width: 980px) {
  .modal--feedback,
  .modal--success {
    width: min(458px, calc(100vw - 24px));
  }
}

@media (max-width: 560px) {
  .modal--feedback,
  .modal--success {
    width: calc(100vw - 20px);
  }

  .modal__body,
  .modal__header,
  .modal__footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .modal__footer {
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}


.form-static {
    margin-bottom: 8px;
}

.form-static__label {
    display: block;
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: #7d8595;
}

.form-static__value {
    display: block;
    width: 100%;
    height: 42px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 0;
    background: #e9e9eb;
    color: #5e6678;
    font-size: 13px;
    line-height: 1.2;
    outline: none;
    box-shadow: none;

}

.form-static__value[readonly] {
    pointer-events: none;
}

.form-static__value:focus {
    border-color: transparent;
    box-shadow: none;
}

/* ===== NEWS PAGE ===== */

.page-wrap--news {
    background: #f5f5f5;
}

.top-select--contract {
    max-width: 196px;
}

.nav-main a.is-active {
    color: var(--primary);
}

.news-page {
    flex: 1;
    padding: 14px 46px 36px;
}

.news-page__header {
    margin-bottom: 26px;
}

.news-page__title {
    margin: 0;
    color: #2f3640;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-list-item__head {
    display: flex;
    align-items: baseline;
    gap: 28px;
    margin-bottom: 20px;
}

.news-list-item__date {
    min-width: 62px;
    color: #2f3640;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.news-list-item__title {
    margin: 0;
    color: #2f3640;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.news-list-item__body {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.news-list-item__thumb {
    position: relative;
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 18px;
    background: #d9d9d9;
}

.news-list-item__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.news-list-item__content {
    min-height: 130px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.48);
}

.news-list-item__content p {
    margin: 0 0 18px;
    color: #5d636f;
    font-size: 16px;
    line-height: 1.55;
}

.news-list-item__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .news-page {
        padding: 14px 16px 30px;
    }
}

@media (max-width: 767.98px) {
    .news-list-item__head {
        gap: 16px;
        margin-bottom: 14px;
    }

    .news-list-item__body {
        grid-template-columns: 1fr;
    }

    .news-list-item__thumb {
        width: 100%;
        max-width: 180px;
        height: 120px;
    }

    .news-list-item__content {
        padding: 14px;
    }

    .news-list-item__content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 575.98px) {
    .news-page__title {
        font-size: 24px;
    }

    .news-list-item__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .news-list-item__date,
    .news-list-item__title {
        font-size: 17px;
    }
}


/* ===== NEWS DETAIL PAGE ===== */

.page-wrap--news-detail {
    background: var(--bg);
}

.news-list-item__title a {
    text-decoration: none;
}

.news-list-item__title a:hover {
    text-decoration: underline;
}

.news-detail-page {
    flex: 1;
    background: #000;
    padding: 18px 0 22px;
}

.news-detail-page__inner {
    width: min(100%, 1530px);
    margin: 0 auto;
    padding: 0 16px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 66px;
    color: #eef0f5;
    font-size: 12px;
    line-height: 1.4;
}

.breadcrumbs a {
    color: #eef0f5;
}

.news-detail-card {
    padding: 14px 0 0;
    background: #f3f3f4;
    border-radius: var(--radius-sm);
}

.news-detail-card__grid {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 30px;
    padding: 0 14px 18px;
}

.news-detail-card__media {
    min-width: 0;
}

.news-detail-card__image {
    position: relative;
    width: 100%;
    min-height: 612px;
    overflow: hidden;
    border-radius: 16px;
    background: #d9d9dc;
}

.news-detail-card__image img {
    width: 100%;
    height: 100%;
    min-height: 612px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.news-detail-card__main {
    min-width: 0;
}

.news-detail-card__date {
    display: inline-block;
    margin-bottom: 18px;
    color: #7c879b;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.news-detail-card__content {
    min-height: 554px;
    padding: 16px 18px;
    border-radius: 24px;
    background: #f7f7f8;
    color: #3d424a;
}

.news-detail-card__content p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.55;
}

.news-detail-card__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .breadcrumbs {
        margin-bottom: 28px;
    }

    .news-detail-card__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .news-detail-card__image {
        min-height: 320px;
    }

    .news-detail-card__image img {
        min-height: 320px;
    }

    .news-detail-card__date {
        font-size: 22px;
    }

    .news-detail-card__content {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .news-detail-page {
        padding: 14px 0 18px;
    }

    .news-detail-page__inner {
        padding: 0 10px;
    }

    .breadcrumbs {
        gap: 4px;
        font-size: 11px;
    }

    .news-detail-card {
        padding-top: 10px;
    }

    .news-detail-card__grid {
        padding: 0 10px 12px;
    }

    .news-detail-card__image {
        min-height: 220px;
        border-radius: 12px;
    }

    .news-detail-card__image img {
        min-height: 220px;
    }

    .news-detail-card__date {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .news-detail-card__content {
        padding: 14px;
        border-radius: 16px;
    }

    .news-detail-card__content p {
        margin-bottom: 16px;
        font-size: 15px;
    }
}


/* ===== FAQ PAGE ===== */

.faq-page {
    padding: 18px 16px 0;
    background: #000;
    flex: 1 0 auto;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.faq-search {
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid #d7dbe2;
    border-radius: 18px;
    background: #f3f4f6;
}

.faq-search__field {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #5b6370;
    font-size: 14px;
}

.faq-search__field::placeholder {
    color: #9ea5b1;
}

.faq-search__icon {
    flex: 0 0 auto;
    color: #8b93a0;
    font-size: 16px;
    line-height: 1;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    border-radius: 20px;
    background: #f3f4f6;
    padding: 16px 18px;
    color: #2f333a;
}

.faq-item__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
}

.faq-item__body {
    font-size: 16px;
    line-height: 1.45;
}

.faq-item__body p:last-child,
.faq-item__body ul:last-child {
    margin-bottom: 0;
}

.faq-item__body ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.faq-form {
    border-radius: 22px;
    background: transparent;
}

.faq-form__grid {
    display: grid;
    gap: 8px;
}

.faq-form__control,
.faq-form__textarea {
    width: 100%;
    padding: 11px 14px 10px;
    border: 1px solid #d7dbe2;
    border-radius: 18px;
    background: #f3f4f6;
    color: #48515f;
    font-size: 14px;
    line-height: 1.2;
    outline: none;
}

.faq-form__control::placeholder,
.faq-form__textarea::placeholder {
    color: #9ea5b1;
}

.faq-form__control:focus,
.faq-form__textarea:focus,
.faq-search:focus-within {
    border-color: rgba(76, 110, 245, 0.5);
    box-shadow: 0 0 0 3px rgba(76, 110, 245, 0.12);
}

.faq-form__textarea {
    min-height: 360px;
    resize: vertical;
}

.faq-form__submit {
    width: 100%;
    margin-top: 12px;
    padding: 14px 18px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #4f87ff 0%, #3d77ef 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.faq-form__submit:hover {
    background: linear-gradient(180deg, #5a90ff 0%, #457cf1 100%);
}

.faq-file {
    position: relative;
}

.faq-file__remove {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: none;
    border: 0;
    background: transparent;
    color: #8b93a0;
    font-size: 18px;
    line-height: 1;
}

.faq-file.has-file .faq-file__remove {
    display: block;
}

.faq-file.has-file .faq-form__control {
    padding-right: 34px;
}

@media (max-width: 1199.98px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-form__textarea {
        min-height: 240px;
    }
}

@media (max-width: 767.98px) {
    .faq-page {
        padding: 14px 12px 0;
    }

    .faq-item {
        padding: 14px;
        border-radius: 16px;
    }

    .faq-item__body {
        font-size: 14px;
    }

    .faq-form__submit {
        font-size: 18px;
    }
}


/* FAQ v2 */
.faq-page--light {
    background: #fff;
    padding: 10px 36px 28px;
}
.faq-page__title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #2f3b52;
}
.faq-layout--v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 22px;
    align-items: start;
}
.faq-search--light {
    position: relative;
    display: block;
    min-height: 52px;
    padding: 18px 56px 10px 14px;
    background: #f1f2f4;
    border: 1px solid #d9dde3;
    border-radius: 14px;
}
.faq-search__label {
    position: absolute;
    top: 6px;
    left: 14px;
    margin: 0;
    font-size: 10px;
    color: #9aa3b2;
    line-height: 1;
    pointer-events: none;
}
.faq-search--light .faq-search__field {
    display: block;
    width: 100%;
    min-height: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: 14px;
    line-height: 20px;
    color: #3d475a;
}
.faq-search__clear, .faq-search--light .faq-search__icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3b2;
    font-size: 33px;
    line-height: 1;
}
.faq-search__clear {
    right: 42px;
    cursor: pointer;
}
.faq-search--light .faq-search__icon { right: 14px; }
.faq-accordion { margin-top: 10px; }
.faq-accordion__item { margin-bottom: 8px; }
.faq-accordion__head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 0 12px;
    min-height: 34px;
    font-size: 18px;
    font-weight: 500;
    color: #2f3b52;
    text-align: left;
}
.faq-accordion__arrow {
    width: 16px;
    display: inline-block;
    font-size: 14px;
}
.faq-accordion__body {
    background: #f6f6f7;
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 4px;
    color: #3d475a;
    font-size: 15px;
    line-height: 1.45;
}
.faq-accordion__body p:last-child, .faq-accordion__body ul:last-child { margin-bottom: 0; }
.faq-accordion__body ul { padding-left: 18px; margin: 0; }
.faq-form--side { background: transparent; padding: 0; }
.faq-form__title {
    margin: 6px 0 12px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    color: #2f3b52;
}
.faq-form--side .faq-form__control,
.faq-form--side .faq-form__textarea {
    background: #f1f2f4;
    border-color: #e1e4e8;
    min-height: 32px;
    padding: 8px 14px;
    border-radius: 16px;
}
.faq-form--side .faq-form__textarea {
    min-height: 260px;
    border-radius: 16px;
}
.faq-form--side .faq-form__submit {
    min-height: 44px;
    border-radius: 22px;
}
@media (max-width: 991px) {
    .faq-layout--v2 { grid-template-columns: 1fr; }
    .faq-form__title { margin-top: 14px; }
}

/* FAQ remove focus outline */
.faq-item__question,
.faq-item__question:focus,
.faq-item__question:active,
.faq-item__question:focus-visible,
.faq-item button,
.faq-item button:focus,
.faq-item button:active,
.faq-item button:focus-visible,
.faq-item summary,
.faq-item summary:focus,
.faq-item summary:active,
.faq-item summary:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}


/* ===== Wide screens container alignment ===== */
.top-strip > .row,
.info-row > .row,
.footer > .row {
    width: 100%;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
}

.nav-main {
    width: 100%;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
}


/* Documentation page */
.docs-page {
    padding: 10px 0 36px;
}

.docs-page__head {
    margin-bottom: 26px;
}

.docs-page__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-title);
}

.docs-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.docs-table {
    width: 100%;
    min-width: 1080px;
    border-collapse: separate;
    border-spacing: 0;
}

.docs-table thead th {
    background: #e6e9ef;
    color: #7b8496;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    padding: 18px 18px 16px;
    text-align: left;
    white-space: nowrap;
}

.docs-table thead th:first-child {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.docs-table thead th:last-child {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.docs-table tbody td {
    padding: 12px 18px;
    color: #616b7d;
    font-size: 16px;
    line-height: 1.35;
    vertical-align: top;
}

.docs-table tbody td a {
    color: #5d677a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.docs-table tbody td a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .docs-page__title {
        font-size: 22px;
    }

    .docs-table thead th,
    .docs-table tbody td {
        padding-left: 14px;
        padding-right: 14px;
    }
}


/* Documentation dropdown */
.nav-line {
    position: relative;
    z-index: 50;
}

.nav-main__item {
    position: relative;
}

.nav-main__item--has-submenu > a::after {
    content: "▾";
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    vertical-align: middle;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #d8dde6;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(24, 34, 56, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-submenu li + li {
    border-top: 1px solid #eef1f5;
}

.nav-submenu a {
    display: block;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #4f5867;
    text-decoration: none;
    white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
    color: #2d6ff7;
    background: #f6f9ff;
}

.nav-main__item--has-submenu:hover .nav-submenu,
.nav-main__item--has-submenu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .nav-main__item--has-submenu {
        width: 100%;
    }
    .nav-submenu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    .nav-main__item--has-submenu:hover .nav-submenu,
    .nav-main__item--has-submenu:focus-within .nav-submenu {
        display: block;
    }
}


.docs-table--contracts {
    min-width: 1240px;
}

.doc-status {
    font-weight: 500;
}

.doc-status--green {
    color: #2ca24f;
}

.doc-status--orange {
    color: #f28a2e;
}

.doc-status--red {
    color: #ef4358;
}

.docs-page__note {
    margin: 22px 0 0;
    color: #c8ccd4;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}


/* Catalog page */
.catalog-page {
    padding: 10px 0 42px;
}

.catalog-page__head {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto 14px;
}

.catalog-page__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-title);
}

.catalog-grid {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px 18px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: #f5f5f6;
    border-radius: 18px;
    padding: 16px 16px 14px;
    min-height: 190px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(28, 38, 62, 0.08);
}

.catalog-card__image {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 18px;
    background: #d9d9db;
    display: block;
    margin-bottom: 4px;
}

.catalog-card__title {
    display: block;
    font-size: 18px;
    line-height: 1.12;
    font-weight: 500;
    color: #4f5564;
}

.catalog-card__subtitle {
    display: block;
    font-size: 11px;
    line-height: 1.15;
    color: #4f5564;
}

.footer--extended {
    padding-bottom: 10px;
}

.footer-meta {
    width: 100%;
    max-width: 1680px;
    margin: 14px auto 0;
    padding-top: 10px;
    border-top: 1px solid #cfd5de;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    font-size: 11px;
    line-height: 1.2;
    color: #8a92a1;
}

.footer-meta a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-meta__center {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.footer-meta__right {
    text-align: right;
}

@media (max-width: 1599px) {
    .catalog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 1399px) {
    .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-page__title { font-size: 22px; }
    .footer-meta { grid-template-columns: 1fr; text-align: center; }
    .footer-meta__center { flex-wrap: wrap; gap: 12px 18px; }
    .footer-meta__right { text-align: center; }
}

@media (max-width: 767px) {
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .catalog-card { min-height: 165px; padding: 12px 12px 10px; }
    .catalog-card__title { font-size: 16px; }
}

@media (max-width: 479px) {
    .catalog-grid { grid-template-columns: 1fr; }
}

/* Catalog category images */
.catalog-card__image {
    overflow: hidden;
}

.catalog-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* Catalog section / product list */
.catalog-section-page {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 14px 0 18px;
}

.catalog-section__breadcrumbs {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.2;
    color: #8a92a1;
}

.catalog-section__breadcrumbs a {
    color: #7b8493;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.catalog-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.catalog-section__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-title);
}

.catalog-sort {
    display: block;
    width: 210px;
    margin-top: 0;
    position: relative;
}

.catalog-sort span {
    position: absolute;
    z-index: 2;
    left: 14px;
    top: 3px;
    font-size: 10px;
    line-height: 1;
    color: #8b94a3;
    pointer-events: none;
}

.catalog-sort .form-select {
    height: 32px;
    padding: 12px 28px 2px 14px;
    border-radius: 18px;
    border: 1px solid #cfd5dd;
    background-color: #edf0f4;
    color: #3f4653;
    font-size: 11px;
    line-height: 1;
    box-shadow: none;
}

.catalog-section__layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.catalog-filter {
    position: relative;
    background: #efefef;
    border-radius: 18px;
    padding: 16px 18px 20px;
    min-height: 620px;
    color: #263140;
    font-size: 14px;
    line-height: 1.25;
}

.catalog-filter__collapse {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #2f80ff;
    background: #f5f8ff;
    color: #2f80ff;
    font-size: 18px;
    line-height: 18px;
    padding: 0;
}

.catalog-filter__group + .catalog-filter__group {
    margin-top: 12px;
}

.catalog-filter__title {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #2f3640;
}

.catalog-filter label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 3px 0;
    cursor: pointer;
}

.catalog-filter input {
    width: 13px;
    height: 13px;
    accent-color: #2f80ff;
    flex: 0 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    background: #f6f6f7;
    border-radius: 2px;
    padding: 16px 14px 14px;
    min-height: 180px;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
}

.product-card__image {
    width: 105px;
    height: 86px;
    border-radius: 16px;
    background: #d8d8d8;
    overflow: hidden;
    align-self: start;
    text-decoration: none;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-card__body {
    min-width: 0;
}

.product-card__code {
    margin: 80px 0 4px -118px;
    text-align: center;
    font-size: 10px;
    line-height: 1.1;
    color: #525b67;
}

.product-card__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 8px;
    align-items: end;
}

.product-card__title {
    align-self: end;
    color: #363c47;
    text-decoration: none;
    font-size: 18px;
    line-height: .95;
    font-weight: 500;
}

.product-card__side {
    text-align: right;
    color: #111827;
}

.product-card__price {
    color: #2f80ff;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
}

.product-card__old-price {
    margin-top: 2px;
    color: #8b94a3;
    font-size: 9px;
    line-height: 1.15;
    white-space: nowrap;
}

.product-card__params {
    margin-top: 12px;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
}

.product-card__material {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.product-card__btn {
    margin-top: 8px;
    border: 0;
    border-radius: 18px;
    background: #2f80ff;
    color: #fff;
    padding: 8px 10px;
    min-width: 92px;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

.product-card__btn:hover {
    background: #1f6ee8;
}

@media (max-width: 1599px) {
    .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1299px) {
    .catalog-section__layout { grid-template-columns: 250px minmax(0, 1fr); }
    .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .catalog-section__head { flex-direction: column; gap: 12px; }
    .catalog-sort { width: 100%; max-width: 260px; }
    .catalog-section__layout { grid-template-columns: 1fr; }
    .catalog-filter { min-height: 0; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .products-grid { grid-template-columns: 1fr; }
    .product-card { grid-template-columns: 100px minmax(0, 1fr); }
    .product-card__image { width: 100px; height: 82px; }
    .product-card__title { font-size: 16px; }
}

/* FIX: catalog product cards layout */
.catalog-section__layout {
    grid-template-columns: 280px minmax(0, 1fr);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 14px;
    row-gap: 4px;
    min-height: 182px;
    padding: 14px 14px 13px;
    background: #f7f7f8;
    border-radius: 2px;
    overflow: hidden;
    box-sizing: border-box;
}

.product-card__image {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 86px;
    border-radius: 15px;
    align-self: start;
}

.product-card__body {
    display: contents;
}

.product-card__code {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: center;
    margin: 0 0 -18px;
    font-size: 10px;
    line-height: 1;
    color: #4d5662;
    text-align: center;
}

.product-card__main {
    display: contents;
}

.product-card__title {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin-top: 26px;
    min-width: 0;
    font-size: 18px;
    line-height: .95;
    color: #343b46;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.product-card__side {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 0;
}

.product-card__price {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.15;
    color: #2f80ff;
    font-weight: 700;
    white-space: nowrap;
}

.product-card__old-price {
    margin-top: 2px;
    font-size: 9px;
    line-height: 1.15;
    color: #8b94a3;
    white-space: nowrap;
}

.product-card__params {
    margin-top: 16px;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 700;
}

.product-card__material {
    margin-top: auto;
    padding-top: 10px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.product-card__btn {
    margin-top: 8px;
    min-width: 94px;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 18px;
    font-size: 9px;
    line-height: 1.05;
}

@media (max-width: 1599px) {
    .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1299px) {
    .catalog-section__layout { grid-template-columns: 250px minmax(0, 1fr); }
    .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .catalog-section__layout { grid-template-columns: 1fr; }
    .catalog-filter { min-height: 0; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* Новый логотип PlayCo */
.logo-box {
    width: 170px;
    height: 72px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.logo-box img {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-box {
        width: 140px;
        height: 58px;
    }

    .logo-box img {
        width: 130px;
    }
}
