@import url(https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css);
@charset "UTF-8";
/* The following line is used to measure usage of this code. You can remove it if you want. */
/* Variables */
:root {
  --dark900: #117e96;
  --light700: #53d9f6;
  --grey900: #f5f5f5;
  --beige900: #f6f1ee;
  --black900: #343434;
  --black300: #8e8b82;
  --brown900: #4f4a45;
  --brown700: #6c5f5b;
  --blue900: #383e56;
  --blue700: #363062;
  --blue500: #4d4c7d;
  --or900: #f89a2e;
  --red500: #f82e35;
  --font-family: "Nunito Sans", sans-serif;
  --pappins-sans: "Poppins", sans-serif;
  --white: #ffffff;
  --gray600: #666;
  --green500: #4CAF50;
  --gray500: #6B7280;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-hover: rgba(0, 0, 0, 0.15);
  --border-light: #e5e7eb;
  --purple-primary: #464B83;
  --purple-secondary: #9333ea;
  --purple-light: rgba(147, 51, 234, 0.1);
  --danger: #dc3545;
  --progress-bg: #e9ecef;
  --progress-fill: #007bff;
  --warning-bg: #fff3cd;
  --warning-border: #ffeeba;
  --warning-text: #856404;
}

.d-flex {
  align-items: flex-start;
  display: inline-flex;
}

.d-flex-c {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
}

.d-flex-4 {
  align-items: flex-start;
  display: inline-flex;
  gap: 4px;
}

.d-flex-c-4 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.d-flex-8 {
  align-items: flex-start;
  display: inline-flex;
  gap: 8px;
}

.d-flex-c-8 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.d-flex-c-10 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.d-flex-12 {
  align-items: flex-start;
  display: inline-flex;
  gap: 12px;
}

.d-flex-c-12 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
}

.d-flex-16 {
  align-items: flex-start;
  display: inline-flex;
  gap: 16px;
}

.d-flex-c-16 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}

.d-flex-24 {
  align-items: flex-start;
  display: inline-flex;
  gap: 24px;
}

.d-flex-c-24 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
}

.d-flex-32 {
  align-items: flex-start;
  display: inline-flex;
  gap: 32px;
}

.d-flex-40 {
  align-items: flex-start;
  display: inline-flex;
  gap: 40px;
}

.d-flex-c-40 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 40px;
}

.d-flex-c-64 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 920px) {
  .d-flex-c-64 {
    gap: 24px;
  }
}

.d-flex-c-80 {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 80px;
}

.d-flex-align-center {
  align-items: center;
}

.d-flex-justify-center {
  display: flex;
  justify-content: center;
}

.d-flex-wrap {
  flex-wrap: wrap;
}

/*RESET*/
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  color: var(--black900);
  font-family: var(--font-family);
}

span {
  color: inherit;
}

thead {
  font-weight: 600;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
  background-color: var(--white);
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

button {
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: normal;
}

a {
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: normal;
}

path {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

textarea {
  resize: none;
}

/*--- Common Classes---------------------*/
::-moz-placeholder {
  color: rgba(23, 21, 18, 0.3);
}
::placeholder {
  color: rgba(23, 21, 18, 0.3);
}

.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.f-right {
  float: right;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.bg-img {
  background-position: center center;
  background-size: cover;
}

.position-relative {
  position: relative;
}

.height-100vh {
  height: 100vh !important;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none;
}

/*****************************
*********  BORDER  *****
******************************/
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  line-height: initial;
}
@media (max-width: 1300px) {
  .container {
    margin: 0px 20px;
    width: auto;
    max-width: 100%;
  }
}

.title-with-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 1024px) {
  .title-with-img {
    gap: 8px;
  }
}

.d-flex-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}

.main-page-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  .main-page-section {
    gap: 16px;
  }
}

.page {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  padding: 64px 0px;
}
@media (max-width: 1300px) {
  .page {
    padding: 24px 0px 40px;
  }
}
@media (max-width: 1024px) {
  .page {
    gap: 16px;
  }
}

.page-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1024px) {
  .page-content {
    gap: 24px;
  }
}

.page-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.page-bottom-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 64px;
}

#toast-container .toast-title,
#toast-container .toast-message {
  color: var(--white) !important;
}

/*TYPOGRAPHY*/
body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
  line-height: 130%;
}

button, input, select {
  font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  color: var(--black900);
}

h1, h2 {
  font-weight: 800;
  line-height: 130%;
  font-size: 24px;
}

h3, h4, h5, h5 {
  font-weight: 600;
  line-height: 130%;
  font-size: 16px;
}

p {
  line-height: 130%;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

b {
  font-weight: 500;
}

strong {
  font-weight: 600;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  font-family: "Nunito Sans", sans-serif;
}

.section-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue500);
  text-decoration: underline;
  font-family: "Nunito Sans", sans-serif;
}

.page-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  color: var(--black900);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
  border-radius: 4px;
  padding: 12px 16px;
  border: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--blue500);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.border-btn {
  background: var(--white);
  border: 1px solid var(--blue500);
}
.border-btn:hover {
  background: var(--blue500) !important;
  color: var(--white);
}

.filled-btn {
  background: var(--blue500);
  color: var(--white);
}
.filled-btn svg path {
  stroke: var(--grey900);
}

.filled-w-btn {
  background: var(--white);
}
.filled-w-btn svg path {
  stroke: var(--blue500);
}

.green-btn {
  background: #2CD62C;
  color: var(--black900);
}

.orange-btn {
  background: var(--or900);
  color: var(--grey900);
}

.grey-btn {
  background: var(--grey900);
  color: var(--blue500);
  opacity: 0.6;
}

.red-btn {
  background: var(--red500);
  color: var(--white);
}

.filter-value {
  display: flex;
  flex-direction: column;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  padding: 4px 0px;
  cursor: pointer;
  position: relative;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
}
.custom-checkbox .product-count {
  font-size: 12px;
  color: grey;
  margin-left: 4px;
}
.custom-checkbox:hover .custom-checkbox__box {
  border: 1px solid rgba(77, 76, 125, 0.8);
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox .custom-checkbox__box {
  min-width: 16px;
  height: 16px;
  border: 1px solid rgba(142, 139, 130, 0.4);
  border-radius: 4px;
  background-color: white;
  display: inline-block;
  position: relative;
}
.custom-checkbox input:checked + .custom-checkbox__box {
  background: var(--blue500);
}
.custom-checkbox input:checked + .custom-checkbox__box::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 4px 0px;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
}
.custom-radio:hover .custom-radio__circle {
  border: 1px solid rgba(77, 76, 125, 0.8);
}
.custom-radio:hover .custom-radio__circle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--blue500);
  border-radius: 50%;
  opacity: 0.1;
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-radio .custom-radio__circle {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(142, 139, 130, 0.4);
  border-radius: 50%;
  background-color: white;
  display: inline-block;
  position: relative;
}
.custom-radio input:checked + .custom-radio__circle {
  border: 1px solid var(--blue500);
}
.custom-radio input:checked + .custom-radio__circle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--blue500);
  border-radius: 50%;
}

.form-input {
  border: 1px solid rgba(142, 139, 130, 0.1803921569);
  border-radius: 2px;
  padding: 12px 16px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}

.form-textarea {
  border: 1px solid rgba(142, 139, 130, 0.1803921569);
  border-radius: 2px;
  padding: 12px 16px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}

.dropzone-container {
  width: 100%;
}
.dropzone-container .dropzone {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 20px;
  min-height: 150px;
  background: #fafafa;
  width: 100%;
  height: auto;
}
.dropzone-container .dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone-container .dropzone .dz-preview {
  cursor: move;
  display: inline-block;
  margin: 10px;
  position: relative;
  height: auto;
}
.dropzone-container .dropzone .dz-preview.is-main {
  border: 2px solid var(--blue500);
  border-radius: 8px;
}
.dropzone-container .dropzone .dz-preview .main-marker {
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--blue500);
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  z-index: 30;
}
.dropzone-container .dropzone .dz-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropzone-container .dropzone .dz-preview .img-btn {
  position: absolute;
  background: rgba(77, 76, 125, 0.368627451);
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  z-index: 30;
  border: none;
}
.dropzone-container .dropzone .dz-preview .main-btn {
  top: -10px;
  right: -10px;
}
.dropzone-container .dropzone .dz-preview .remove-btn {
  top: 15px;
  right: -10px;
  background: var(--blue500);
}
.dropzone-container .dropzone .dz-preview.is-main .main-btn {
  background: var(--blue500);
}
.dropzone-container .dropzone .dz-preview .dz-image {
  border-radius: 6px;
}
.dropzone-container .dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
  width: 100%;
}
.dropzone-container .dropzone .dz-message span {
  font-size: 16px;
  color: var(--gray600);
}
.dropzone-container .dropzone .dz-message small {
  font-size: 14px;
  color: #999;
  display: block;
  margin-top: 8px;
}
.dropzone-container .preview-container {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.ad-main-page {
  width: 100%;
}
@media (max-width: 1300px) {
  .ad-main-page {
    display: none;
  }
}
.ad-main-page s img {
  height: 320px;
  border-radius: 16px;
  width: 100%;
}

.ad-page {
  width: 100%;
}
@media (max-width: 1300px) {
  .ad-page {
    display: none;
  }
}
.ad-page img {
  height: 180px;
  border-radius: 16px;
  width: 100%;
}

.pagination-section {
  display: flex;
  justify-content: center;
  padding: 16px 0px;
  width: 100%;
}
@media (max-width: 768px) {
  .pagination-section {
    margin-top: 16px;
  }
}
.pagination-section .pagination--desktop {
  display: flex;
  gap: 8px;
}
@media (max-width: 576px) {
  .pagination-section .pagination--desktop {
    display: none;
  }
}
.pagination-section .pagination--desktop .pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey900);
  border-radius: 4px;
  padding: 8px 12px;
  width: 38px;
  height: 38px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black300);
}
@media (max-width: 1024px) {
  .pagination-section .pagination--desktop .pagination__link {
    display: none;
  }
  .pagination-section .pagination--desktop .pagination__link.active, .pagination-section .pagination--desktop .pagination__link:nth-child(2), .pagination-section .pagination--desktop .pagination__link:nth-last-child(2), .pagination-section .pagination--desktop .pagination__link:nth-child(3), .pagination-section .pagination--desktop .pagination__link:nth-child(4), .pagination-section .pagination--desktop .pagination__link:nth-child(5), .pagination-section .pagination--desktop .pagination__link:nth-last-child(3), .pagination-section .pagination--desktop .pagination__link:nth-last-child(4) {
    display: flex;
  }
}
.pagination-section .pagination--desktop .pagination__link:hover {
  color: var(--black900);
}
.pagination-section .pagination--desktop .pagination__link.active {
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid var(--blue500);
  color: var(--blue500);
}
.pagination-section .pagination--desktop .pagination__link.disabled {
  color: #ccc;
  pointer-events: none;
}
.pagination-section .pagination--mobile {
  display: none;
}
@media (max-width: 576px) {
  .pagination-section .pagination--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
}
.pagination-section .pagination--mobile .pagination__mobile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--grey900);
  border-radius: 6px;
  background: white;
  color: var(--black300);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  min-height: 42px;
  transition: all 0.2s ease;
}
.pagination-section .pagination--mobile .pagination__mobile-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pagination-section .pagination--mobile .pagination__mobile-btn:hover:not(.disabled) {
  color: var(--blue500);
  border-color: var(--blue500);
  background: rgba(245, 245, 245, 0.5);
}
.pagination-section .pagination--mobile .pagination__mobile-btn.disabled {
  color: #ccc;
  border-color: #eee;
  background: #f9f9f9;
  pointer-events: none;
}
.pagination-section .pagination--mobile .pagination__mobile-btn.disabled svg {
  color: #ccc;
}
.pagination-section .pagination--mobile .pagination__mobile-btn--prev {
  flex-direction: row;
}
.pagination-section .pagination--mobile .pagination__mobile-btn--next {
  flex-direction: row;
}
.pagination-section .pagination--mobile .pagination__mobile-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--black300);
  white-space: nowrap;
}
.pagination-section .pagination--mobile .pagination__mobile-info .pagination__mobile-current {
  font-weight: 700;
  color: var(--blue500);
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid var(--blue500);
  border-radius: 4px;
  padding: 4px 8px;
  min-width: 28px;
  text-align: center;
}
.pagination-section .pagination--mobile .pagination__mobile-info .pagination__mobile-divider {
  font-weight: 400;
  color: #666;
  margin: 0 2px;
}
.pagination-section .pagination--mobile .pagination__mobile-info .pagination__mobile-total {
  font-weight: 600;
  color: var(--black300);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 8px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    flex-wrap: wrap;
    gap: 0px 10px;
  }
}
.breadcrumbs__item {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 12px;
  color: var(--black300);
  text-transform: uppercase;
}
.breadcrumbs__item:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--black300);
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .breadcrumbs__item:after {
    margin-left: 10px;
  }
}
.breadcrumbs__item--inactive {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 12px;
  color: var(--black300);
  opacity: 0.5;
  text-transform: uppercase;
}

.profile-ad {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  padding: 16px;
  width: 100%;
}
.profile-ad__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.profile-ad__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue700);
}
.profile-ad__title:hover {
  text-decoration: underline;
}
.profile-ad__status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.profile-ad__status--active {
  background: #e8f5e9;
  color: #2e7d32;
}
.profile-ad__status--inactive {
  background: var(--grey900);
  color: #757575;
}
.profile-ad__content {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.profile-ad__image-wrapper {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
}
.profile-ad__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.profile-ad__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.profile-ad__main-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.profile-ad__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-ad__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.profile-ad__main-price {
  color: var(--blue500);
  font-size: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 23.1px;
  white-space: nowrap;
}
.profile-ad__converted-price {
  font-size: 14px;
  color: var(--gray600);
}
.profile-ad__year {
  font-size: 14px;
  color: var(--gray600);
  margin: 0;
}
.profile-ad__id {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.profile-ad__location-info {
  margin-top: auto;
}
.profile-ad__location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-ad__city {
  font-size: 14px;
  color: var(--gray600);
  margin: 0;
}
.profile-ad__date {
  font-size: 14px;
  color: #999;
}
.profile-ad__actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  align-items: flex-end;
}
.profile-ad__action-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}
.profile-ad__action-btn--edit {
  background: #e3f2fd;
  color: #1976d2;
}
.profile-ad__action-btn--edit:hover {
  background: #bbdefb;
}
.profile-ad__action-btn--pause {
  background: #fff3e0;
  color: #f57c00;
}
.profile-ad__action-btn--pause:hover {
  background: #ffe0b2;
}
.profile-ad__action-btn--delete {
  background: #ffebee;
  color: #d32f2f;
}
.profile-ad__action-btn--delete:hover {
  background: #ffcdd2;
}
.profile-ad__views {
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile-ad__views-count {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .profile-ad__content {
    flex-direction: column;
  }
  .profile-ad__image-wrapper {
    width: 100%;
    height: 200px;
  }
  .profile-ad__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .profile-ad__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .profile-ad__prices {
    flex-direction: column;
    gap: 4px;
  }
}

.profile-product {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 24px;
  border: 1px solid var(--grey900);
  border-radius: 8px;
  padding: 8px;
  width: 1056px;
}
@media (max-width: 1024px) {
  .profile-product {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}
.profile-product__content {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .profile-product__content {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}
.profile-product__image-wrapper {
  position: relative;
  width: 278px;
  height: 210px;
}
.profile-product__image {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-product__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .profile-product__info {
    width: 100%;
  }
}
.profile-product__header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 1024px) {
  .profile-product__header {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}
.profile-product__details-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  width: 472px;
}
@media (max-width: 1024px) {
  .profile-product__details-block {
    width: 100%;
  }
}
.profile-product__title-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--grey900);
  padding: 8px 0px;
  width: 472px;
}
@media (max-width: 1024px) {
  .profile-product__title-block {
    width: 100%;
  }
}
.profile-product__title {
  color: var(--black900);
  font-size: 18px;
  font-weight: 600;
  line-height: 19.8px;
  margin-bottom: 4px;
}
.profile-product__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black300);
  font-size: 14px;
  width: 472px;
}
@media (max-width: 1024px) {
  .profile-product__meta {
    width: 100%;
    flex-wrap: wrap;
  }
}
.profile-product__specs {
  display: flex;
  gap: 16px;
  padding: 12px 0;
}
.profile-product__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-product__spec-label {
  color: var(--black300);
  font-size: 14px;
}
.profile-product__spec-value {
  color: var(--black900);
  font-size: 15px;
}
.profile-product__price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.profile-product__price-main {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 21px;
  line-height: 110%;
  color: var(--blue500);
}
.profile-product__price-converted {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--blue500);
}
.profile-product__actions {
  width: 652px;
  padding: 8px 0;
  border-top: 1px solid var(--grey900);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .profile-product__actions {
    width: 100%;
    flex-direction: column;
  }
}
.profile-product__main-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 1024px) {
  .profile-product__main-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .profile-product__main-actions .btn {
    width: 100%;
  }
}
.profile-product__controls {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  padding: 16px 8px;
  width: 48px;
  height: 210px;
  background: rgba(248, 154, 46, 0.05);
}
@media (max-width: 1024px) {
  .profile-product__controls {
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 8px;
  }
}
.profile-product__control {
  border: none;
  border-radius: 8px;
  padding: 8px;
  width: 32px;
  height: 32px;
  background: transparent;
}
.profile-product__control svg path {
  stroke: var(--blue500);
}
.profile-product__control:hover {
  background: var(--blue500);
}
.profile-product__control:hover svg path {
  stroke: var(--white);
}
.profile-product__stats {
  display: flex;
  gap: 8px;
}
.profile-product__stat {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  color: var(--black300);
  font-size: 12px;
  font-weight: 600;
}

.cookie-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  z-index: 9999;
}
.cookie-notification__content {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.cookie-notification__text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 15px;
}
.cookie-notification__text a {
  text-decoration: underline;
}
.cookie-notification__buttons {
  display: flex;
  gap: 10px;
}
.cookie-notification__btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .cookie-notification {
    width: calc(100% - 40px);
    right: 20px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: var(--white);
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  position: relative;
}
.modal .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.modal .seller-info {
  margin-top: 20px;
  text-align: center;
}
.modal .seller-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal .phone-number {
  font-size: 20px;
  margin: 10px 0;
}
.modal .phone-number a {
  color: var(--blue500);
  text-decoration: none;
}
.modal .notice {
  margin-top: 15px;
  color: var(--gray600);
  font-size: 14px;
}

.phone-verification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.phone-verification-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-verification-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.phone-verification-modal__content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (max-width: 480px) {
  .phone-verification-modal__content {
    padding: 20px;
    margin: 20px;
    width: calc(100% - 40px);
  }
}
.phone-verification-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.phone-verification-modal__header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
@media (max-width: 480px) {
  .phone-verification-modal__header h3 {
    font-size: 16px;
  }
}
.phone-verification-modal__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}
.phone-verification-modal__close:hover {
  background-color: #f3f4f6;
  color: #374151;
}
.phone-verification-modal__step {
  margin-bottom: 20px;
}
.phone-verification-modal__step p {
  margin-bottom: 16px;
  color: #4b5563;
  line-height: 1.5;
}
.phone-verification-modal__actions {
  display: flex;
  gap: 12px;
}
.phone-verification-modal__actions .btn {
  flex: 1;
}
@media (max-width: 480px) {
  .phone-verification-modal__actions .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  .phone-verification-modal__actions {
    flex-direction: column;
    gap: 8px;
  }
}
.phone-verification-modal__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.phone-verification-modal__loader .loader {
  border: 3px solid #f3f4f6;
  border-radius: 50%;
  border-top: 3px solid #3b82f6;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.phone-verification-modal__loader p {
  color: #6b7280;
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.product-type-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.product-type-card.disabled:hover {
  transform: none;
  box-shadow: none;
}

.loader {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #4D4C7D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
  display: block;
}

@media (max-width: 768px) {
  .phone-verification-modal__content {
    width: 95%;
    margin: 20px;
  }
  .phone-verification-modal__header {
    padding: 20px 20px 12px;
  }
  .phone-verification-modal__header h3 {
    font-size: 18px;
  }
  .phone-verification-modal__step {
    padding: 20px;
  }
  .phone-verification-modal__actions {
    flex-direction: column;
    gap: 8px;
  }
  .phone-verification-modal__actions .btn {
    width: 100%;
  }
}
.live-search {
  position: relative;
}
.live-search__results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  margin-top: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 50;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.live-search__list {
  padding: 0.5rem;
}
.live-search__list .live-search__item + .live-search__item {
  margin-top: 0.25rem;
}
.live-search__item {
  display: flex;
  align-items: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--black900);
  background: transparent;
}
.live-search__item:hover {
  background: #F3F4F6;
}
.live-search__item-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.live-search__item-content {
  flex: 1;
  min-width: 0;
}
.live-search__item-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--blue500);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-search__item-subtitle {
  font-size: 0.875rem;
  color: var(--gray500);
  line-height: 1.25;
}
.live-search__section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray500);
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}
.live-search__section-title:first-child {
  margin-top: 0;
}

.mobile-search-content .live-search__results {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  height: auto;
  max-height: 50vh;
  border-radius: 0.375rem 0.375rem 0 0;
}

.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}
.image-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-modal__image {
  max-width: 90%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.image-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}
.image-modal__close:hover {
  color: #ccc;
}
.image-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  transition: opacity 0.3s;
}
.image-modal__arrow:hover {
  opacity: 0.8;
}
.image-modal__arrow--prev {
  left: 20px;
}
.image-modal__arrow--next {
  right: 20px;
}
.image-modal__arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.image-modal__image {
  animation: zoomIn 0.3s ease-out;
}

.company-contact-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.company-contact-form__inputs {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-contact-form__message {
  flex: 1.5;
  min-width: 300px;
}
.company-contact-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--black900);
}
.company-contact-form__input:focus {
  outline: none;
  border-color: var(--blue500);
}
.company-contact-form__input::-moz-placeholder {
  color: var(--black300);
}
.company-contact-form__input::placeholder {
  color: var(--black300);
}
.company-contact-form__textarea {
  width: 100%;
  min-height: 212px;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--black900);
  resize: vertical;
}
.company-contact-form__textarea:focus {
  outline: none;
  border-color: var(--blue500);
}
.company-contact-form__textarea::-moz-placeholder {
  color: var(--black300);
}
.company-contact-form__textarea::placeholder {
  color: var(--black300);
}
.company-contact-form__actions {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .company-contact-form__actions {
    flex-direction: column;
    gap: 16px;
  }
  .company-contact-form__actions .btn {
    width: 100%;
  }
}
.company-contact-form__submit {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--white);
  color: var(--blue500);
  border: 1px solid var(--blue500);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.company-contact-form__submit:hover {
  background-color: var(--blue500);
  color: var(--white);
}
.company-contact-form__policy {
  max-width: 300px;
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 1.5;
  color: var(--black300);
}
@media (max-width: 576px) {
  .company-contact-form__policy {
    max-width: 100%;
    text-align: center;
  }
}

#company-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#company-map .leaflet-popup-content-wrapper {
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#company-map .leaflet-popup-content {
  margin: 10px 14px;
}
#company-map .leaflet-popup-content strong {
  color: var(--blue500);
  font-size: 14px;
}

.company-map-info {
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.company-map-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--blue500);
}
.company-map-info .company-address {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--black900);
}
.company-map-info .company-map-error {
  color: var(--black300);
  font-size: 14px;
}

.service-section {
  padding: 2rem 0;
  background-color: var(--white);
}
.service-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black900);
}
.service-section__description {
  margin-bottom: 1.5rem;
  color: var(--black700);
  line-height: 1.5;
}
.service-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 992px) {
  .service-section__content {
    flex-direction: row;
  }
}
@media (max-width: 991px) {
  .service-section__content {
    flex-direction: column;
  }
}
.service-section__form-container {
  flex: 1;
  min-width: 300px;
}
.service-section__history-container {
  flex: 1;
  min-width: 300px;
}

.service-form {
  background-color: var(--grey100);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--grey300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-form__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black900);
}
.service-form__row {
  margin-bottom: 1.25rem;
}
.service-form__row:last-child {
  margin-bottom: 0;
}
.service-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--black800);
}
.service-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey400);
  border-radius: 0.25rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.3s;
}
.service-form__input:focus {
  border-color: var(--blue500);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--blue-rgb), 0.25);
}
.service-form__input::-moz-placeholder {
  color: var(--grey500);
}
.service-form__input::placeholder {
  color: var(--grey500);
}
.service-form__input--error {
  border-color: var(--red500);
}
.service-form__input--error:focus {
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.15);
}
.service-form__error {
  color: var(--red500);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.service-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.service-form__button {
  background-color: var(--blue500);
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}
.service-form__button:hover {
  background-color: var(--blue600);
}
.service-form__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--blue-rgb), 0.25);
}
.service-form__button:disabled {
  background-color: var(--grey400);
  cursor: not-allowed;
  opacity: 0.7;
}

.service-history {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--grey300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-history__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--black900);
}
.service-history__table {
  width: 100%;
  border-collapse: collapse;
}
.service-history__th {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid var(--grey300);
  font-weight: 600;
  color: var(--black800);
  white-space: nowrap;
  font-size: 0.9rem;
}
.service-history__td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--grey200);
  color: var(--black700);
  font-size: 0.9rem;
}
.service-history__row:hover {
  background-color: var(--grey100);
}
.service-history__row:last-child .service-history__td {
  border-bottom: none;
}
.service-history__badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.service-history__badge--processed {
  background-color: var(--green100);
  color: var(--green700);
}
.service-history__badge--pending {
  background-color: var(--yellow100);
  color: var(--yellow700);
}
.service-history__empty {
  color: var(--grey600);
  font-style: italic;
  padding: 1rem 0;
  text-align: center;
}

.success-message {
  display: flex;
  align-items: flex-start;
  background-color: var(--green50);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--green200);
  margin-bottom: 1.5rem;
}
.success-message__icon {
  color: var(--green500);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.success-message__content {
  flex: 1;
}
.success-message__title {
  font-weight: 600;
  color: var(--green700);
  margin-bottom: 0.25rem;
}
.success-message__text {
  color: var(--green900);
  line-height: 1.4;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .service-form,
  .service-history {
    padding: 1rem;
  }
  .service-history__table {
    display: block;
    overflow-x: auto;
  }
}
.catalog__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.catalog__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--grey900);
  gap: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .catalog__header {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.catalog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .catalog__list {
    gap: 8px;
  }
}
.catalog__item {
  width: 420px;
  padding: 24px;
  background: rgba(245, 245, 245, 0.1);
  border: 1px solid var(--grey900);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  align-items: flex-start;
  align-self: stretch;
}
.catalog__item:hover {
  box-shadow: 0 16px 48px 0 rgba(52, 52, 52, 0.1);
}
.catalog__item.full-cat-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
.catalog__item.full-cat-card:hover {
  box-shadow: none;
}
.catalog__item.full-cat-card .full-cat-card__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.catalog__item.full-cat-card .category-card__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.catalog__item.full-cat-card .category-card__list .brand-list__link {
  width: 100%;
}
.catalog__item.full-cat-card .category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  border-bottom: 1px solid var(--blue500);
  width: 100%;
}
.catalog__item-content {
  display: flex;
  gap: 16px;
}
.catalog__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(77, 76, 125, 0.1);
  border-radius: 4px;
}
.catalog__item-icon img {
  width: 24px;
  height: 24px;
}
.catalog__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.catalog__item-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--black900);
  font-family: "Nunito Sans", sans-serif;
}
.catalog__item-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--black300);
  font-family: "Nunito Sans", sans-serif;
}
.catalog__item-arrow {
  border-radius: 16px;
  padding: 8px;
  background: var(--grey900);
}
.catalog__item-arrow img {
  height: 16px;
  width: 16px;
  display: block;
}
.catalog__item--highlighted {
  background: var(--blue500);
  color: var(--grey900);
}
.catalog__item--highlighted .catalog__item-icon {
  background: rgba(245, 245, 245, 0.1);
}
.catalog__item--highlighted .catalog__item-title,
.catalog__item--highlighted .catalog__item-description {
  color: var(--grey900);
}
.catalog__item--highlighted .catalog__item-description {
  opacity: 0.5;
}

.registration-banner {
  width: 100%;
  height: 134px;
  padding: 40px 64px;
  background: var(--blue500);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .registration-banner {
    height: 100%;
    padding: 24px;
  }
}
.registration-banner__content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .registration-banner__content {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.registration-banner .catalog__item-icon {
  background: rgba(245, 245, 245, 0.1);
}
.registration-banner__text-group {
  display: flex;
  flex-direction: row;
  gap: 64px;
}
@media (max-width: 1024px) {
  .registration-banner__text-group {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.registration-banner__main-text {
  width: 340px;
  color: var(--grey900);
  font-size: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 23.1px;
}
@media (max-width: 1024px) {
  .registration-banner__main-text {
    width: 100%;
  }
}
.registration-banner__sub-text {
  opacity: 0.5;
  color: var(--grey900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}

.latest-announcements {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  padding: 0;
}
.latest-announcements__list {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  display: inline-flex;
}
@media (max-width: 1300px) {
  .latest-announcements__list {
    overflow-x: scroll;
  }
}

.latest-product__card {
  width: 310px;
  background: rgba(245, 245, 245, 0.1);
  border-radius: 4px;
  border: 1px solid var(--grey900);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-decoration: none; /* Убираем подчеркивание у ссылки */
  color: inherit; /* Цвет текста не меняется */
  transition: box-shadow 0.3s ease; /* Плавная анимация тени при наведении */
}
.latest-product__card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Добавляем тень при наведении */
}
.latest-product__image-container {
  width: 310px;
  height: 160px;
  position: relative;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.latest-product__image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-product__star-icon-container {
  width: 24px;
  height: 24px;
  padding: 6px;
  background: rgba(52, 52, 52, 0.6);
  border-radius: 16px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.latest-product__star-icon {
  width: 12px;
  height: 12px;
  background: var(--or900);
}
.latest-product__details {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.latest-product__title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.latest-product__name {
  color: var(--black900);
  font-size: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 23.1px;
}
.latest-product__info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.latest-product__category {
  color: var(--black300);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}
.latest-product__year {
  color: var(--black900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}
.latest-product__price {
  color: var(--blue500);
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
}
.latest-product__price span {
  font-size: 14px;
}
.latest-product__location-date {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px 0;
  border-top: 1px solid var(--grey900);
}
.latest-product__location {
  color: var(--black900);
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
}
.latest-product__date {
  color: var(--black300);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}

.related-projects {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.related-projects__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.related-projects__card {
  width: 394px;
  background: rgba(245, 245, 245, 0.1);
  border: 1px solid var(--grey900);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .related-projects__card {
    gap: 12px;
    flex-wrap: wrap;
  }
}
.related-projects__card-logo {
  flex-direction: row;
}
.related-projects__image {
  width: 204px;
  height: 136px;
  border-radius: 8px;
}
.related-projects__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.related-projects__card-title {
  font-size: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: var(--black900);
}
.related-projects__card-description {
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--black300);
}
.related-projects__card-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--blue500);
  border-radius: 4px;
}
.related-projects__card-button-text {
  color: var(--grey900);
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
}
.related-projects__category {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--black900);
}
.related-projects__card-badge {
  width: 45px;
  height: 27px;
  background: #8F634B;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--grey900);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.related-projects__card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  background: var(--grey900);
  border-radius: 4px;
}

.latest-posts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.latest-posts__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .latest-posts__content {
    gap: 12px;
  }
}
.latest-posts__large-post {
  cursor: pointer;
  padding: 24px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--grey900);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.latest-posts__large-post:hover {
  box-shadow: 0px 16px 24px rgba(52, 52, 52, 0.1);
}
@media (max-width: 768px) {
  .latest-posts__large-post {
    width: 100%;
    gap: 8px;
    border: none;
  }
}
.latest-posts__large-image {
  width: 592px;
  height: 332px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .latest-posts__large-image {
    width: 100%;
    height: 180px;
  }
}
.latest-posts__post-meta {
  width: 592px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .latest-posts__post-meta {
    width: 100%;
  }
}
.latest-posts__meta-time {
  font-size: 13px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--brown700);
}
.latest-posts__post-title {
  width: 588px;
  font-size: 24px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  color: var(--black900);
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .latest-posts__post-title {
    width: 100%;
    font-size: 16px;
  }
}
.latest-posts__post-description {
  width: 592px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--black300);
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .latest-posts__post-description {
    width: 100%;
  }
}
.latest-posts__small-posts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .latest-posts__small-posts {
    gap: 12px;
  }
}
.latest-posts__small-post {
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--grey900);
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .latest-posts__small-post {
    width: 100%;
    border: none;
  }
}
.latest-posts__small-post-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .latest-posts__small-post-content {
    width: 100%;
    gap: 8px;
  }
}
.latest-posts__small-post:hover {
  box-shadow: 0px 16px 24px rgba(52, 52, 52, 0.1);
}
.latest-posts__small-image {
  width: 285px;
  height: 156px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .latest-posts__small-image {
    width: 100px;
    height: 72px;
  }
}
.latest-posts__small-meta {
  width: 307px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.latest-posts__small-meta-time {
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--black300);
}
.latest-posts__small-title {
  width: 307px;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: var(--black900);
  line-height: 1.1;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .latest-posts__small-title {
    width: 100%;
    font-size: 14px;
  }
}
.latest-posts__small-description {
  width: 307px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--black300);
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .latest-posts__small-description {
    display: none;
  }
}

.company-list {
  width: 100%;
  height: 199px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.company-list__content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1300px) {
  .company-list__content {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.company-list__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.company-list__image {
  width: 145px;
  height: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-list__name {
  width: 145px;
  text-align: center;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--black900);
  word-wrap: break-word;
}

.search-parts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--grey900);
  border-radius: 16px;
  width: 100%;
}
.search-parts__header {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  padding-top: 4px;
  padding-bottom: 4px;
  gap: 40px;
}
@media (max-width: 768px) {
  .search-parts__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.search-parts .header__search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  width: 100%;
}
@media (max-width: 1024px) {
  .search-parts .header__search {
    flex-wrap: wrap;
  }
  .search-parts .header__search .filled-btn {
    width: 100%;
    justify-content: center;
  }
}
.search-parts .header__search-input {
  width: 100%;
  display: block;
}
.search-parts__search-bar {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 56px;
}

.popular-brands {
  width: 100%;
}
.popular-brands__title {
  color: black;
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  line-height: 19.8px;
  word-wrap: break-word;
  margin-bottom: 16px;
}
.popular-brands__list {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}

.brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
}
.brand-list .brand-column {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .brand-list .brand-column {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .brand-list .brand-column:nth-last-child(2) {
    display: none;
  }
  .brand-list .brand-column:nth-last-child(1) {
    display: none;
  }
}
.brand-list__item {
  width: 372px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .brand-list__item {
    width: 100%;
  }
}
.brand-list__link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(142, 139, 130, 0.3);
  color: var(--black900);
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
}
.brand-list__link:hover {
  text-decoration: underline;
}
.brand-list__count {
  opacity: 0.5;
  color: var(--black900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}

.product-top {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: flex;
}

.product-title-section {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.product-t-top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.product-stat {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-stat {
    flex-wrap: wrap;
  }
}
.product-stat__item {
  padding-right: 8px;
  border-right: 1px #F5F5F5 solid;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
  color: var(--black300);
  font-size: 14px;
  font-family: Nunito Sans;
  font-weight: 400;
  word-wrap: break-word;
}

.product-share {
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: flex;
}
.product-share__title {
  color: var(--black300);
  font-size: 15px;
  font-family: Nunito Sans;
  font-weight: 400;
  word-wrap: break-word;
}
.product-share__list {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}
.product-share__list-item {
  padding: 6px;
  border-radius: 4px;
  border: 1px #F5F5F5 solid;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.product-actions {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-actions {
    flex-wrap: wrap;
  }
}
.product-actions__btns {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}
.product-actions__btns .action-item {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 4px;
  border: 1px #F5F5F5 solid;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
  color: var(--black300);
  font-size: 15px;
  font-family: Nunito Sans;
  font-weight: 400;
  word-wrap: break-word;
}

.product-info-b {
  align-self: stretch;
  padding-bottom: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: flex;
}

.product-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media (max-width: 1024px) {
  .product-text {
    flex-wrap: wrap;
  }
}
.product-text__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}
.product-text__content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
}
.product-text__bottom {
  border-top: 1px solid var(--grey900);
  padding: 8px 0px 0px 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}

.product-specs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.product-specs__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}
.product-specs__grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  .product-specs__grid {
    flex-wrap: wrap;
  }
}
.product-specs__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.product-specs__item {
  align-items: center;
  flex-direction: row;
  gap: 0px;
  border-bottom: 1px solid var(--grey900);
  padding: 4px 0px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6d6d6d;
  width: 100%;
}
.product-specs__label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.product-specs__value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: right;
  color: var(--black900);
}

.company-info-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 40px;
  border: 1px solid var(--grey900);
  border-radius: 4px;
  padding: 16px;
  background: rgba(245, 245, 245, 0.3);
  width: 100%;
}
@media (max-width: 1024px) {
  .company-info-section {
    flex-wrap: wrap;
  }
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.company-info__logo {
  width: 80px;
  height: auto;
}
.company-info__details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 40px;
}
.company-info__details .company-details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.company-info__details .company-details .name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}
.company-info__details .company-details .address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}
.company-info__details .company-details .address .city {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}
.company-info__details .company-details .address .time {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.company-info__details .company-details .company-info__listings {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 16px;
  border-bottom: 1px solid var(--blue500);
  padding: 4px 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--blue500);
}
.company-info__status {
  font-weight: bold;
  font-size: 18px;
}
.company-info__location {
  font-size: 14px;
  color: #6d6d6d;
}
.company-info__listings {
  font-size: 14px;
  color: #1877f2;
  text-decoration: none;
}
.company-info__listings .arrow-icon {
  margin-left: 5px;
}
.company-info__contacts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.company-info__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}
.company-info__item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.company-info__item-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
}

.contact-form {
  width: 400px;
}
@media (max-width: 768px) {
  .contact-form {
    width: 100%;
  }
}
.contact-form__title {
  font-size: 18px;
  margin-bottom: 15px;
}
.contact-form__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .contact-form__form {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.contact-form__form .contact-form__message {
  grid-column: span 2;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  resize: none;
}
.contact-form__form .contact-form__input {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.contact-form__form .contact-form__submit {
  grid-column: span 2;
  padding: 10px;
  font-size: 16px;
  background-color: #4a90e2;
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form__policy {
  margin-top: 10px;
  font-size: 12px;
  color: #6d6d6d;
}

.leasing-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  border-radius: 4px;
  padding: 24px;
  background: rgba(245, 245, 245, 0.4);
}
.leasing-block__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--black900);
}
.leasing-block__company {
  margin-bottom: 10px;
}
.leasing-block__company__logo {
  max-width: 100%;
}
.leasing-block__price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  border-radius: 4px;
  padding: 8px;
  background: rgba(77, 76, 125, 0.1);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--blue500);
  width: 100%;
}
.leasing-block__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.leasing-block__policy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--black300);
}

.leasing-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.leasing-form__input {
  border: 1px solid var(--black300);
  border-radius: 2px;
  padding: 12px 16px;
  background: var(--white);
  width: 100%;
}
.leasing-form .btn {
  width: 100%;
  justify-content: center;
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .product-info {
    width: 100%;
  }
}
.product-info__price {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.product-info__price-main {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 21px;
  line-height: 110%;
  color: var(--blue500);
}
.product-info__price-sub {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--blue500);
}
.product-info__price__favorite {
  color: #f5b642;
  margin-left: 8px;
}
.product-info__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.product-info__actions .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  border-radius: 4px;
  padding: 8px 16px;
  width: 100%;
  cursor: pointer;
  background: var(--blue500);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--grey900);
  border: none;
}

.product-description {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1300px) {
  .product-description {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .product-description {
    width: 100%;
  }
}
.product-description .product-slider {
  width: 640px;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-description .product-slider {
    width: 100%;
    height: auto;
  }
}
.product-description .product-slider__main-image {
  width: 640px;
  height: 420px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .product-description .product-slider__main-image {
    width: 100%;
    height: 240px;
  }
}

.product-gallery {
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .product-gallery {
    width: 100%;
  }
}
.product-gallery__arrow {
  padding: 12px;
  border-radius: 4px;
  border: 1px #F5F5F5 solid;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.product-gallery__arrow:hover {
  background-color: var(--grey900);
}
.product-gallery__arrow--hidden {
  display: none;
}
@media (max-width: 768px) {
  .product-gallery__arrow {
    display: none;
  }
}
.product-gallery__thumbnails {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-gallery__thumbnails {
    overflow-x: scroll;
    width: 100%;
  }
}
.product-gallery__thumbnail {
  width: 73px;
  flex-shrink: 0;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}
.product-gallery__thumbnail:hover {
  opacity: 1;
}
.product-gallery__thumbnail--active {
  opacity: 1;
}

.catalog-content {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .catalog-content {
    flex-direction: column;
    width: 100%;
  }
}
.catalog-content__left {
  width: 970px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .catalog-content__left {
    width: 100%;
  }
}
.catalog-content__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.catalog-content__top-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 174px;
}
.catalog-content__results {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}
.catalog-content__results span {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.catalog-content__filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 4px;
  flex-wrap: wrap;
}
.catalog-content__filters-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.catalog-content__filter {
  border: 1px solid rgba(77, 76, 125, 0.2);
  border-radius: 4px;
  padding: 8px;
  background: rgba(77, 76, 125, 0.1);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--blue500);
  white-space: nowrap;
}
.catalog-content__filter-remove {
  cursor: pointer;
}
.catalog-content .catalog-items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.catalog-content .catalog-items .registration-banner {
  padding: 24px 64px;
  height: auto;
}
@media (max-width: 768px) {
  .catalog-content .catalog-items .registration-banner {
    padding: 24px;
  }
}

.filter-sidebar {
  min-width: 310px;
  padding: 12px;
  border-radius: 8px;
  border: 1px #F5F5F5 solid;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
  position: relative;
}
.filter-sidebar__btn {
  display: none;
}
@media (max-width: 768px) {
  .filter-sidebar__btn {
    display: block;
  }
}
.filter-sidebar__content {
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .filter-sidebar__content {
    display: none;
  }
  .filter-sidebar {
    width: 100%;
    min-width: 100%;
  }
}
.filter-sidebar__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.filter-sidebar__item .filter-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--black900);
}
.filter-sidebar__item .select2-multiple {
  border: 1px solid rgba(142, 139, 130, 0.1803921569);
  border-radius: 2px;
  padding: 12px 16px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}
.filter-sidebar__item .price-inputs {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.filter-sidebar__item .price-inputs .form-input {
  width: 120px;
}
.filter-sidebar .filter-actions {
  width: calc(100% - 24px);
  position: sticky;
  bottom: 0px;
  background: var(--white);
  padding: 12px 0;
  margin: 0 12px;
  z-index: 10;
}
.filter-sidebar .filter-actions .btn {
  width: 100%;
}
.filter-sidebar .filter-actions .btn + .btn {
  margin-top: 8px;
}
.filter-sidebar .btn {
  width: 100%;
}

.product-card {
  align-self: stretch;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--grey900);
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  display: inline-flex;
}
@media (max-width: 1024px) {
  .product-card {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.product-card.top-card {
  background: rgba(248, 154, 46, 0.05);
  border: 1px #F89A2E solid;
}
.product-card__image-wrapper {
  height: 210px;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
  display: flex;
}
@media (max-width: 768px) {
  .product-card__image-wrapper {
    width: 100%;
    height: 210px;
  }
}
.product-card__image-container {
  width: 278px;
  height: 210px;
  position: relative;
}
@media (max-width: 768px) {
  .product-card__image-container {
    width: 100%;
    height: 210px;
  }
}
.product-card__image {
  width: 278px;
  height: 210px;
  left: 0px;
  top: 0px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .product-card__image {
    width: 100%;
    height: 210px;
  }
}
.product-card__favorite {
  width: 40px;
  height: 40px;
  padding: 12px;
  right: 8px;
  top: 8px;
  position: absolute;
  background: rgba(52, 52, 52, 0.3);
  border-radius: 4px;
  border: 1px rgba(245, 245, 245, 0.5) solid;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
.product-card__content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}
.product-card__header {
  width: 652px;
  justify-content: space-between;
  align-items: flex-start;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-card__header {
    width: 100%;
    flex-wrap: wrap;
  }
}
.product-card__details {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}
.product-card__info {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  display: flex;
}
.product-card__specs {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
@media (max-width: 768px) {
  .product-card__specs {
    height: 100%;
  }
}
.product-card__specs .specs__description {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey900);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}
.product-card__specs .specs__title {
  width: 472px;
  color: var(--black900);
  font-size: 18px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  line-height: 19.8px;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .product-card__specs .specs__title {
    width: 100%;
  }
}
.product-card__specs .specs__details {
  width: 472px;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-card__specs .specs__details {
    width: 100%;
    flex-wrap: wrap;
  }
}
.product-card__specs .specs__info {
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: flex;
}
@media (max-width: 576px) {
  .product-card__specs .specs__info {
    flex-wrap: wrap;
  }
}
.product-card__specs .specs__type {
  color: var(--black300);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__specs .specs__year-km {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}
.product-card__specs .specs__year {
  padding-left: 8px;
  padding-right: 8px;
  border-right: 1px solid var(--grey900);
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}
.product-card__specs .specs__km {
  color: var(--black900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__specs .specs__location {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}
@media (max-width: 576px) {
  .product-card__specs .specs__location {
    flex-wrap: wrap;
  }
}
.product-card__specs .specs .location__city {
  color: var(--black900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__specs .specs .location__time {
  color: var(--black300);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__specs .specs__technical {
  padding: 12px 0px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-card__specs .specs__technical {
    width: 100%;
    flex-wrap: wrap;
  }
}
.product-card__specs .specs__technical .technical-item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}
.product-card__specs .specs__technical .technical-item__title {
  align-self: stretch;
  color: var(--black300);
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__specs .specs__technical .technical-item__value {
  align-self: stretch;
  color: var(--black900);
  font-size: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__price {
  width: 156px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-card__price {
    padding: 0px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.product-card__price .price__amount-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4px;
  display: flex;
}
.product-card__price .price__amount-wrapper .price__amount {
  color: var(--blue500);
  font-size: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 23.1px;
  white-space: nowrap;
}
.product-card__price .price__amount-wrapper .price__usd {
  color: var(--blue500);
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  line-height: 17.6px;
  word-wrap: break-word;
}
.product-card__price .price__credit {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  opacity: 0.8;
  border-top: 1px #343434 solid;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-card__price .price__credit {
    border: none;
  }
}
.product-card__price .price__credit .credit__info {
  text-align: right;
  color: var(--blue900);
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__footer {
  width: 100%;
  height: 80px;
  padding: 8px 12px;
  justify-content: space-between;
  align-items: flex-end;
  display: inline-flex;
}
@media (max-width: 768px) {
  .product-card__footer {
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0px;
  }
}
.product-card__footer .product-card__vendor {
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: flex;
}
.product-card__footer .product-card__vendor .vendor__image {
  width: 96px;
  height: 64px;
}
.product-card__footer .product-card__vendor .vendor__info {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: inline-flex;
}
.product-card__footer .product-card__vendor .vendor__info .vendor__name-wrapper {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
.product-card__footer .product-card__vendor .vendor__info .vendor__name-wrapper .vendor__name {
  width: 210px;
  color: var(--black900);
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}
.product-card__footer .product-card__vendor .vendor__info .vendor__location {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
.product-card__footer .product-card__vendor .vendor__info .vendor__location .location__city {
  color: var(--black900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__footer .product-card__vendor .vendor__info .vendor__location .location__joined {
  color: var(--black300);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}
.product-card__footer .border-btn {
  background: rgba(245, 245, 245, 0.5);
}
@media (max-width: 768px) {
  .product-card__footer .border-btn {
    width: 100%;
    justify-content: center;
  }
}

.agreement__title {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .agreement__title {
    margin-bottom: 16px;
  }
}
.agreement__wrapper {
  display: flex;
  flex-direction: column;
  width: 860px;
}
@media (max-width: 920px) {
  .agreement__wrapper {
    width: auto;
  }
}
.agreement__wrapper h1, .agreement__wrapper h2, .agreement__wrapper h3, .agreement__wrapper h4, .agreement__wrapper h6 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-900);
}
@media (max-width: 768px) {
  .agreement__wrapper h1, .agreement__wrapper h2, .agreement__wrapper h3, .agreement__wrapper h4, .agreement__wrapper h6 {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.agreement__wrapper p {
  font-size: 16px;
  font-weight: 400;
}
.agreement__wrapper p:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .agreement__wrapper p:not(:last-child) {
    margin-bottom: 16px;
  }
  .agreement__wrapper p {
    font-size: 15px;
  }
}
.agreement__wrapper strong {
  font-size: 16px;
  font-weight: 400;
}
.agreement__wrapper ol, .agreement__wrapper ul {
  margin: 0px;
  margin-bottom: 24px;
}

.companies-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}
.companies-right .companies-count {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}
.companies-right .companies-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
@media (max-width: 768px) {
  .companies-right .companies-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .companies-right .companies-list {
    grid-template-columns: 1fr;
  }
}

.company-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--grey900);
  border-radius: 4px;
  padding: 16px;
  background: rgba(245, 245, 245, 0.3);
}
@media (max-width: 768px) {
  .company-card {
    width: 100%;
  }
}
.company-card__logo {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-card__info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.company-card__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}
.company-card__location {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}
.company-card__date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.company-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  border-bottom: 1px solid var(--blue500);
  padding: 4px 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--blue500);
  width: 100%;
}

/* Шапка компании */
.company-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .company-header {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
}
.company-header__name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 768px) {
  .company-header__name {
    flex-direction: column;
    gap: 8px;
  }
}
.company-header__logo {
  width: 80px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-header__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  color: var(--black900);
}
.company-header__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 768px) {
  .company-header__info {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
}
.company-header__info-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.company-header__location {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}
.company-header__joined {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.company-header__status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 12px;
  border-radius: 48px;
  padding: 12px 16px;
  background: rgba(44, 214, 44, 0.1);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--black900);
}

.company-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0px;
  border-bottom: 1px solid var(--grey900);
  border-top: 1px solid var(--grey900);
  width: 100%;
}
@media (max-width: 768px) {
  .company-nav {
    overflow-x: scroll;
  }
}
.company-nav__item {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 21px;
  line-height: 110%;
  color: var(--black900);
  padding: 16px 24px;
  white-space: nowrap;
}
.company-nav__item--active {
  border-bottom: 2px solid var(--or900);
  border-top: 2px solid var(--or900);
}
.company-nav__item-count {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}

.company-tab {
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.company-tab.active {
  display: flex;
}
.company-tab .company__contact {
  padding: 0px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 64px;
}
@media (max-width: 768px) {
  .company-tab .company__contact {
    flex-wrap: wrap;
    gap: 8px;
    padding: 0px;
  }
}
.company-tab .company__contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}
.company-tab .company__contact-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.company-tab .company__contact-details {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
}
.company-tab .company-details__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: var(--black900);
}
@media (max-width: 1024px) {
  .company-tab .catalog-content__left {
    width: 100%;
  }
}
.company-tab .contact-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}
@media (max-width: 768px) {
  .company-tab .contact-form {
    flex-wrap: wrap;
  }
}
.company-tab .contact-form__inputs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.company-tab .contact-form__message {
  width: 70%;
}
.company-tab .contact-form__message .form-textarea {
  width: 100%;
}
.company-tab .contact-form__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.company-tab .contact-form__privacy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--black900);
}

.error__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.error__image {
  width: 400px;
  height: 400px;
}
@media (max-width: 576px) {
  .error__image {
    width: 100%;
    height: 100%;
  }
}
.error__title {
  margin-bottom: 8px;
}
.error__descr {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-300);
}

.search-block {
  width: 100%;
  padding: 20px;
  background: var(--grey900);
  border-radius: 8px;
}
.search-block__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.search-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.search-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.search-examples {
  font-size: 14px;
  color: var(--gray600);
}
.search-examples a {
  color: #FF6B6B;
  margin-left: 10px;
  text-decoration: none;
}
.search-examples a:hover {
  text-decoration: underline;
}

.brands-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brands-columns {
  display: flex;
  gap: 40px;
}
.brands-column {
  flex: 1;
}

.brand-group {
  margin-bottom: 30px;
}
.brand-letter {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.brand-item {
  margin-bottom: 8px;
}
.brand-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
}
.brand-link:hover {
  color: #FF6B6B;
}
.brand-count {
  color: var(--gray600);
  font-size: 13px;
}

@media (max-width: 992px) {
  .brands-columns {
    flex-direction: column;
    gap: 20px;
  }
  .brands-column {
    width: 100%;
  }
  .brand-group {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .search-input-wrapper {
    flex-direction: column;
  }
  .search-input {
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}
.registration {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .registration {
    flex-direction: column;
    gap: 24px;
  }
}
.registration__inner {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 768px) {
  .registration__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.registration__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .registration__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
}
.registration__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .registration__title {
    margin-bottom: 24px;
  }
}
.registration__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 240px;
}
@media (max-width: 768px) {
  .registration__form {
    width: 100%;
  }
}
.registration__form--inputs {
  display: flex;
  flex-direction: column;
}
.registration__form--text {
  font-size: 12px;
  font-weight: 400;
  color: var(--black-900);
}
.registration__form--article {
  color: rgba(52, 52, 52, 0.5);
}
.registration__form--article a {
  color: rgba(52, 52, 52, 0.5);
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
.registration__form--article a:hover {
  color: var(--accent-color);
}
.registration__form .profile-form__group .profile-form__input {
  width: 100%;
}
.registration__image {
  width: 750px;
  height: 502px;
}
@media (max-width: 1024px) {
  .registration__image {
    width: 400px;
    height: 300px;
  }
}
@media (max-width: 576px) {
  .registration__image {
    width: 320px;
    height: 214px;
  }
}
.registration__image--icon {
  width: 100%;
  height: 100%;
}

.faq__item {
  margin-bottom: 20px;
}
.faq__item-title {
  font-size: 24px;
  font-weight: 700;
}
.faq__item-text {
  font-size: 16px;
  font-weight: 400;
}

.profile-page {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}
.profile-page__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  color: var(--blue700);
}

.profile-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 64px;
  width: 100%;
}

.cabinet-sidebar {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1024px) {
  .cabinet-sidebar {
    display: none;
  }
}

.cabinet-menu {
  border-right: 1px solid var(--grey900);
}
.cabinet-menu__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  border-radius: 4px 0 0 4px;
  padding: 8px 12px;
  min-width: 180px;
  height: 56px;
}
.cabinet-menu__item svg path, .cabinet-menu__item svg circle {
  stroke: green;
}
.cabinet-menu__item--logout {
  background-color: #FCE6E6;
  color: #FF5252;
}
.cabinet-menu__item:hover {
  background: rgba(77, 76, 125, 0.1);
}
.cabinet-menu__item--active {
  background: var(--blue500);
  color: var(--white);
}
.cabinet-menu__item--active svg path, .cabinet-menu__item--active svg circle {
  stroke: var(--white);
}
.cabinet-menu__item--active:hover {
  background: var(--blue500);
  color: var(--white);
}
.cabinet-menu__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border-radius: 4px;
  padding: 4px;
  width: 27px;
  height: 27px;
  background: var(--blue500);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--grey900);
}

.profile-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.profile-form__fieldset {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0px 0px 0px;
  width: 100%;
}
.profile-form__fieldset-attributes {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}
.profile-form__legend {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--black900);
}
.profile-form__group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.profile-form__input-select {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
}
.profile-form__input-select select + .select2-container .select2-selection, .profile-form__input-select .select2-container {
  width: 100px !important;
}
@media (max-width: 1024px) {
  .profile-form__input-select {
    flex-wrap: wrap;
  }
  .profile-form__input-select select + .select2-container .select2-selection, .profile-form__input-select .select2-container {
    width: 360px !important;
  }
}
.profile-form__input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 12px 16px;
  width: 360px;
  height: 43px;
}
.profile-form__input:disabled {
  background-color: gainsboro;
}
.profile-form__textarea {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  border: 1px solid rgba(142, 139, 130, 0.2509803922);
  border-radius: 2px;
  padding: 12px 16px;
  width: 360px;
  height: 100%;
}
.profile-form__textarea:disabled {
  background-color: gainsboro;
}
.profile-form__actions {
  display: flex;
  gap: 8px;
}

.cabinet-content {
  width: 100%;
}

.cabinet-settings {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .cabinet-settings {
    flex-direction: column;
  }
}
.cabinet-settings .settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 992px) {
  .cabinet-settings .settings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cabinet-settings .settings-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cabinet-settings .settings-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
.cabinet-settings .settings-section__title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.cabinet-ads {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.cabinet-ads__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 8px;
  width: 100%;
}
@media (max-width: 1024px) {
  .cabinet-ads__header {
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
  }
}
.cabinet-ads__header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
}
.cabinet-ads__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.messages-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.message-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--black300);
  border-radius: 8px;
  padding: 12px 16px;
}
.message-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 12px;
  border-bottom: 1px solid var(--grey900);
  padding: 8px 0px;
  width: 1024px;
  height: 80px;
}
.message-item__from {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.message-item__label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black300);
}
.message-item__info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}
.message-item__delete-btn {
  border: none;
  background: none;
}
.message-item__body {
  padding: 8px 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--black900);
}

.cabinet-employees {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cabinet-employees__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.cabinet-employees__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cabinet-employees__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  gap: 20px;
}
.cabinet-employees__info {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.cabinet-employees__email {
  font-weight: 600;
  color: #333;
}
.cabinet-employees__actions {
  display: flex;
  gap: 10px;
}
.cabinet-employees__delete {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.cabinet-employees__delete img {
  width: 24px;
  height: 24px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.modal__content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  width: 400px;
  position: relative;
}
.modal__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal__close--icon {
  width: 24px;
  height: 24px;
}
.modal .btn--fill {
  width: 100%;
  padding: 12px;
  background-color: var(--green500);
  color: var(--white);
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.modal .btn--fill:hover {
  background-color: #45a049;
}

.all-form__input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.invalid-feedback {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

.btn-reset {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-reset.worker__link {
  padding: 12px;
  background-color: var(--green500);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.btn-reset.worker__link:hover {
  background-color: #45a049;
}

.rekvizit-page {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rekvizit-page__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rekvizit-page .message-send {
  background: var(--blue500);
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 18px;
}
.rekvizit-page__form {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 12px 40px;
}

.alert {
  padding: 12px 28px;
  background: rgba(0, 128, 0, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
}
.alert-success {
  background: rgba(0, 128, 0, 0.2);
  border: 1px solid green;
}
.alert-error {
  background: rgba(255, 0, 0, 0.231372549);
  border: 1px solid red;
}
.cabinet-content .alert {
  margin-bottom: 20px;
}

.billing-form {
  margin-bottom: 40px;
}

.invoices-list {
  margin-top: 20px;
}
.invoices-list__empty {
  color: var(--black-300);
  font-size: 16px;
  margin-top: 10px;
}
.invoices-list .invoices-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
}
.invoices-list .invoices-table__header {
  background-color: var(--grey-900);
  font-family: var(--font-family);
  font-weight: 600;
  text-align: left;
  color: var(--black-900);
}
.invoices-list .invoices-table__row:nth-child(even) {
  background-color: var(--beige-900);
}
.invoices-list .invoices-table__cell {
  padding: 12px 15px;
  border-bottom: 1px solid var(--black-300);
  font-size: 14px;
  color: var(--black-900);
  font-family: var(--font-family);
}
.invoices-list .invoices-table__cell:first-child {
  font-weight: 600;
}
.invoices-list .invoices-table__cell .btn-small {
  background-color: var(--accent-color);
  color: var(--light-color);
  padding: 5px 10px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.invoices-list .invoices-table__cell .btn-small:hover {
  background-color: var(--accent-color-hover);
}
.invoices-list .invoices-table__cell .invoices-table__no-file {
  color: var(--brown-900);
  font-size: 12px;
  font-style: italic;
}
.invoices-list .status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-family);
}
.invoices-list .status--pending {
  background-color: var(--blue-700);
  color: var(--light-color);
}
.invoices-list .status--paid {
  background-color: var(--accent-color);
  color: var(--light-color);
}
.invoices-list .status--declined {
  background-color: var(--brown-900);
  color: var(--light-color);
}

.product-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .product-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

.product-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .product-type-card {
    width: 100%;
  }
}
.product-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--blue500);
}
.product-type-card svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: var(--blue500);
}
.product-type-card h3 {
  color: #1F2937;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-align: center;
}
.product-type-card p {
  color: var(--gray500);
  font-size: 16px;
  text-align: center;
  margin: 0;
}
.product-type-card__blocked {
  background: rgb(215, 41, 41);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 12px;
}

.tariff-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}
.tariff-tab {
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray500);
  position: relative;
}
.tariff-tab.active {
  color: #1f2937;
}
.tariff-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #2563eb;
}
.tariff-category {
  transition: opacity 0.3s ease;
}

.phone-status .phone-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.phone-status .phone-info .phone-number {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.status-badge--verified {
  background-color: #d4edda;
  color: #155724;
}
.status-badge--unverified {
  background-color: #f8d7da;
  color: #721c24;
}

.phone-verification__text {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}
.phone-verification__actions {
  margin-bottom: 20px;
}

.sms-verification {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 16px;
}
.sms-verification .profile-form__group {
  margin-bottom: 16px;
}
.sms-verification .profile-form__group:last-child {
  display: flex;
  gap: 12px;
}
.sms-verification .profile-form__group:last-child .btn {
  flex: 1;
}

.phone-change {
  margin-top: 20px;
}
.phone-change__toggle {
  background: none;
  border: none;
  color: #4D4C7D;
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
  padding: 8px 0;
}
.phone-change__toggle:hover {
  color: #3a3762;
}
.phone-change .profile-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.phone-add__text {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cabinet-settings .settings-section {
    padding: 16px;
  }
  .cabinet-settings .settings-section__title {
    font-size: 18px;
  }
  .cabinet-settings .settings-column {
    gap: 16px;
  }
  .cabinet-settings .settings-grid {
    gap: 16px;
  }
  .sms-verification .profile-form__group:last-child {
    flex-direction: column;
    gap: 8px;
  }
  .sms-verification .profile-form__group:last-child .btn {
    width: 100%;
  }
  .phone-info {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}
.email-info .email-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.email-info .email-display .email-address {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.email-info .email-note {
  color: #666;
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

.current-tariff {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px var(--shadow-color);
}
.current-tariff__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.current-tariff__badge {
  background: var(--green500);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
}
.current-tariff__title-name {
  font-weight: 800;
  font-size: 18px;
}

.tariff-stat {
  margin-bottom: 20px;
}
.tariff-stat__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tariff-stat__warning {
  color: var(--danger);
  font-size: 14px;
  margin-top: 8px;
}

.progress-bar {
  background: var(--progress-bg);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.progress-bar__fill {
  background: var(--progress-fill);
  height: 100%;
  transition: width 0.3s ease;
}

.tariffs-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.individual-tariff-banner {
  background: var(--purple-primary);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  color: var(--white);
}
.individual-tariff-banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.individual-tariff-banner__text {
  flex: 1;
}
.individual-tariff-banner__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.individual-tariff-banner__description {
  font-size: 16px;
  opacity: 0.9;
  color: var(--white);
  margin-bottom: 0;
}
.individual-tariff-banner__button {
  background: var(--white);
  color: var(--purple-primary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.individual-tariff-banner__button:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
@media (max-width: 768px) {
  .individual-tariff-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .individual-tariff-banner__button {
    width: 100%;
    text-align: center;
  }
}

.tariff-category-section__header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}
.tariff-category-section__header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black900);
  margin: 0;
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .tariffs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .tariffs-grid {
    grid-template-columns: 1fr;
  }
}

.tariff-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 4px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tariff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px var(--shadow-color-hover);
}
.tariff-card--active {
  border: 2px solid var(--purple-primary);
}
.tariff-card--active:before {
  content: "Текущий тариф";
  position: absolute;
  top: -12px;
  right: 10px;
  background: var(--purple-primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.tariff-card--individual {
  border: 2px solid var(--purple-secondary);
}
.tariff-card--individual:after {
  content: "Индивидуальный";
  position: absolute;
  top: -12px;
  left: 10px;
  background: var(--purple-secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.tariff-card--individual .tariff-card__price {
  background: var(--purple-light);
}
.tariff-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tariff-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black900);
  margin: 0;
}
.tariff-card__price {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}
.tariff-card__amount {
  font-size: 24px;
  font-weight: bold;
  display: block;
  color: var(--black900);
}
.tariff-card__period {
  font-size: 14px;
  color: var(--gray500);
}
.tariff-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.tariff-card__feature {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 25px;
  color: var(--black300);
}
.tariff-card__feature:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green500);
}
.tariff-card__feature:last-child {
  border-bottom: none;
}
.tariff-card__description {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray500);
}
.tariff-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.tariff-card__footer .filled-btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-weight: 500;
  background: var(--purple-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.tariff-card__footer .filled-btn:hover {
  transform: translateY(-2px);
  background: var(--blue900);
}
.tariff-card__footer .filled-btn:disabled {
  background: var(--border-light);
  cursor: not-allowed;
  transform: none;
}

.tariff-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tariff-form__select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  color: var(--black900);
  transition: border-color 0.3s ease;
}
.tariff-form__select:focus {
  border-color: var(--blue500);
  outline: none;
  box-shadow: 0 0 0 2px var(--shadow-color);
}

.tariffs-notice {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  color: var(--warning-text);
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tariffs-notice:before {
  content: "⚠️";
}

.tariff-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.tariff-info__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tariff-info__label {
  color: var(--gray600);
}
.tariff-info__value {
  font-weight: 500;
}

@media (max-width: 768px) {
  .tariffs-grid {
    grid-template-columns: 1fr;
  }
  .current-tariff__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .tariff-info__item {
    flex-direction: column;
    gap: 5px;
  }
  .tariff-card {
    margin-bottom: 20px;
  }
}
.company-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.company-options__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue700);
  margin-bottom: 16px;
}
.company-options__info {
  background-color: rgba(77, 76, 125, 0.1);
  border-left: 4px solid var(--blue500);
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--black900);
}
.company-options__box {
  background-color: var(--grey900);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}
.company-options__status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.company-options__status h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--black900);
}
.company-options__status p {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--black900);
}
.company-options__notes {
  background-color: var(--warning-bg);
  border-left: 4px solid var(--or900);
  padding: 14px;
  margin: 16px 0;
  border-radius: 0 4px 4px 0;
}
.company-options__notes h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--warning-text);
}
.company-options__notes p {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--warning-text);
}
.company-options__divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 16px 0;
}
.company-options__subtitle {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--blue700);
  margin: 16px 0 14px;
}

.company-profile-edit {
  margin-bottom: 20px;
}
.company-profile-edit__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--blue700);
  margin-bottom: 8px;
}
.company-profile-edit__subtitle {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--black300);
  margin-bottom: 16px;
}
.company-profile-edit__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--black900);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--black900);
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: var(--blue500);
  outline: none;
}

.form-hint {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--black300);
  margin-top: 4px;
}

.logo-upload {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.logo-preview {
  width: 80px;
  height: 80px;
  background-color: var(--grey900);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.logo-image {
  max-width: 100%;
  max-height: 100%;
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--blue500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: 28px;
  font-weight: 700;
}

.logo-input {
  flex: 1;
}
.logo-input .form-control-file {
  display: none;
}
.logo-input .file-upload-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--blue500);
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 8px;
  border: none;
}
.logo-input .file-upload-btn:hover {
  background-color: var(--blue700);
}

.option__item {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.option__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.option__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.option__checkbox {
  margin-top: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue500);
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
}
.option__checkbox:checked {
  background-color: var(--blue500);
}
.option__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.option__checkbox:disabled {
  background-color: #e9ecef;
  border-color: #ced4da;
  cursor: not-allowed;
}
.option__checkbox:disabled:checked::after {
  border-color: #6c757d;
}
.option__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.option__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: var(--black900);
}
.option__description {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--black300);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}
.status-badge--active {
  background-color: var(--green500);
  color: var(--white);
}
.status-badge--pending {
  background-color: var(--or900);
  color: var(--white);
}
.status-badge--inactive {
  background-color: var(--red500);
  color: var(--white);
}

.alert {
  padding: 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.5;
}
.alert--info {
  background-color: rgba(77, 76, 125, 0.1);
  border: 1px solid var(--blue500);
  color: var(--blue700);
}
.alert-success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--green500);
  color: var(--green500);
}
.alert-danger {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid var(--red500);
  color: var(--red500);
}
.alert-warning {
  background-color: rgba(255, 152, 0, 0.1);
  border: 1px solid var(--or900);
  color: var(--or900);
}
.alert-info {
  background-color: rgba(77, 76, 125, 0.1);
  border: 1px solid var(--blue500);
  color: var(--blue700);
}
.alert ul {
  padding-left: 20px;
  margin-top: 8px;
}
.alert ul li {
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  .company-options__box {
    padding: 16px;
  }
  .company-profile-edit__form {
    gap: 12px;
  }
  .form-group {
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .company-options {
    gap: 16px;
  }
  .company-options__box {
    padding: 12px;
  }
  .company-options__status h4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .company-options__status h4 .status-badge {
    margin-left: 0;
  }
  .company-options__info, .company-options__notes {
    padding: 12px;
  }
  .logo-upload {
    flex-direction: column;
    align-items: center;
  }
  .logo-upload .logo-preview {
    margin-bottom: 12px;
  }
  .form-control {
    padding: 8px 10px;
  }
  .logo-input {
    width: 100%;
  }
}
.service-section {
  padding: 2rem 0;
  background-color: var(--white);
}
.service-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black900);
}
.service-section__description {
  margin-bottom: 1.5rem;
  color: var(--black700);
  line-height: 1.5;
}
.service-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 992px) {
  .service-section__content {
    flex-direction: row;
  }
}
@media (max-width: 991px) {
  .service-section__content {
    flex-direction: column;
  }
}
.service-section__form-container {
  flex: 1;
  min-width: 300px;
}
.service-section__history-container {
  flex: 1;
  min-width: 300px;
}

.service-form {
  background-color: var(--grey100);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--grey300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-form__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black900);
}
.service-form__row {
  margin-bottom: 1.25rem;
}
.service-form__row:last-child {
  margin-bottom: 0;
}
.service-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--black800);
}
.service-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey400);
  border-radius: 0.25rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.3s;
}
.service-form__input:focus {
  border-color: var(--blue500);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--blue-rgb), 0.25);
}
.service-form__input::-moz-placeholder {
  color: var(--grey500);
}
.service-form__input::placeholder {
  color: var(--grey500);
}
.service-form__input--error {
  border-color: var(--red500);
}
.service-form__input--error:focus {
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.15);
}
.service-form__error {
  color: var(--red500);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.service-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.service-form__button {
  background-color: var(--blue500);
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}
.service-form__button:hover {
  background-color: var(--blue600);
}
.service-form__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--blue-rgb), 0.25);
}
.service-form__button:disabled {
  background-color: var(--grey400);
  cursor: not-allowed;
  opacity: 0.7;
}

.service-history {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--grey300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-history__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--black900);
}
.service-history__table {
  width: 100%;
  border-collapse: collapse;
}
.service-history__th {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid var(--grey300);
  font-weight: 600;
  color: var(--black800);
  white-space: nowrap;
  font-size: 0.9rem;
}
.service-history__td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--grey200);
  color: var(--black700);
  font-size: 0.9rem;
}
.service-history__row:hover {
  background-color: var(--grey100);
}
.service-history__row:last-child .service-history__td {
  border-bottom: none;
}
.service-history__badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.service-history__badge--processed {
  background-color: var(--green100);
  color: var(--green700);
}
.service-history__badge--pending {
  background-color: var(--yellow100);
  color: var(--yellow700);
}
.service-history__empty {
  color: var(--grey600);
  font-style: italic;
  padding: 1rem 0;
  text-align: center;
}

.success-message {
  display: flex;
  align-items: flex-start;
  background-color: var(--green50);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--green200);
  margin-bottom: 1.5rem;
}
.success-message__icon {
  color: var(--green500);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.success-message__content {
  flex: 1;
}
.success-message__title {
  font-weight: 600;
  color: var(--green700);
  margin-bottom: 0.25rem;
}
.success-message__text {
  color: var(--green900);
  line-height: 1.4;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .service-form,
  .service-history {
    padding: 1rem;
  }
  .service-history__table {
    display: block;
    overflow-x: auto;
  }
}
.profile-service {
  margin-bottom: 2rem;
}
.profile-service__info {
  background-color: var(--blue50);
  border-left: 4px solid var(--blue500);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0 4px 4px 0;
}
.profile-service__description {
  margin-bottom: 0;
  color: var(--black700);
  line-height: 1.5;
  max-width: 800px;
}
.profile-service__no-access {
  background-color: var(--yellow100);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--yellow300);
  margin-bottom: 2rem;
}
.profile-service__no-access-title {
  font-weight: 600;
  color: var(--yellow800);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.profile-service__no-access-text {
  color: var(--yellow900);
  line-height: 1.5;
}

.success-message {
  display: flex;
  align-items: flex-start;
  background-color: var(--green50);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--green200);
  margin-bottom: 1.5rem;
}
.success-message__icon {
  color: var(--green500);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.success-message__content {
  flex: 1;
}
.success-message__title {
  font-weight: 600;
  color: var(--green700);
  margin-bottom: 0.25rem;
}
.success-message__text {
  color: var(--green900);
  line-height: 1.4;
}

.service-section {
  margin-top: 2rem;
}

.service-form {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-form__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--black900);
}
.service-form__row {
  margin-bottom: 1.25rem;
}
.service-form__row:last-child {
  margin-bottom: 0;
}
.service-form__label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--black800);
}
.service-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--black300);
  border-radius: 0.25rem;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-form__input:focus {
  outline: none;
  border-color: var(--blue400);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.15);
}
.service-form__input::-moz-placeholder {
  color: var(--black500);
}
.service-form__input::placeholder {
  color: var(--black500);
}
.service-form__input--error {
  border-color: var(--red400);
}
.service-form__input--error:focus {
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.15);
}
.service-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.service-form__error {
  margin-top: 0.5rem;
  color: var(--red500);
  font-size: 0.85rem;
}
.service-form__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 0.5rem;
}
.service-form__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.service-history {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-history__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--black900);
}
.service-history__table {
  width: 100%;
  border-collapse: collapse;
}
.service-history__th {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid var(--black300);
  font-weight: 600;
  color: var(--black800);
  white-space: nowrap;
}
.service-history__td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--black200);
  color: var(--black700);
}
.service-history__row:hover {
  background-color: var(--black50);
}
.service-history__row:last-child .service-history__td {
  border-bottom: none;
}
.service-history__badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.service-history__badge--processed {
  background-color: var(--green100);
  color: var(--green700);
}
.service-history__badge--pending {
  background-color: var(--yellow100);
  color: var(--yellow700);
}
.service-history__empty {
  color: var(--black600);
  padding: 1rem 0;
  text-align: center;
  font-style: italic;
}

@media (max-width: 480px) {
  .service-form__button {
    width: 100%;
  }
}
/* Импорт подмодулей */
/* Стили для блога в личном кабинете */
.cabinet-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .cabinet-content__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.cabinet-content__title {
  font-size: 24px;
  font-weight: 600;
  color: #363636;
  margin: 0;
}

.blog-list--profile {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-item {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
}
.blog-item:hover {
  border-color: #d0d0d0;
}
@media (max-width: 768px) {
  .blog-item {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
}
.blog-item__image {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #eaeaea;
}
@media (max-width: 768px) {
  .blog-item__image {
    width: 100%;
    height: 180px;
    margin-bottom: 5px;
  }
}
.blog-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-item__img:hover {
  transform: scale(1.05);
}
.blog-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-item__title {
  font-size: 20px;
  font-weight: 600;
  color: #363636;
  margin: 0;
  transition: color 0.2s;
}
.blog-item__title:hover {
  color: #4D4C7D;
}
.blog-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #666;
}
.blog-item__meta span {
  font-weight: 500;
  color: #333;
}
.blog-item__status {
  margin-top: 8px;
  font-size: 14px;
}
.blog-item__status span {
  font-weight: 500;
  color: #333;
}
.blog-item__actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
@media (max-width: 768px) {
  .blog-item__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
.blog-item__actions .btn {
  min-width: 120px;
  text-align: center;
}
@media (max-width: 576px) {
  .blog-item__actions .btn {
    flex: 1;
  }
}

.status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.status--pending {
  background-color: #FFF3CD;
  color: #856404;
}
.status--published {
  background-color: #D4EDDA;
  color: #155724;
}
.status--rejected {
  background-color: #F8D7DA;
  color: #721C24;
}

.blog-form {
  margin-top: 20px;
}
.blog-form .form-group {
  margin-bottom: 20px;
}
.blog-form .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.blog-form .form-control:focus {
  border-color: #4D4C7D;
  outline: none;
}
.blog-form .form-control.is-invalid {
  border-color: #dc3545;
}
.blog-form .form-control-file {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}
.blog-form .form-control-file:hover {
  border-color: #4D4C7D;
}
.blog-form .invalid-feedback {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
.blog-form .form-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

/* Улучшенные стили для пагинации */
.pagination-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  display: inline-block;
}
.pagination li a, .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination li a {
  background-color: #f5f5f5;
  color: #333;
}
.pagination li a:hover {
  background-color: #e0e0e0;
}
.pagination li.active span {
  background-color: #4D4C7D;
  color: #fff;
}
.pagination li.disabled span {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/* Стили для Select2 */
.select2-container--default .select2-selection--single {
  height: 42px;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
  color: #333;
}

.select2-dropdown {
  border-color: #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #4D4C7D;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ddd;
  border-radius: 4px;
  padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
  border-color: #4D4C7D;
}

.photo-upload__hint {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.current-photo {
  margin-bottom: 15px;
}
.current-photo__img {
  max-width: 300px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eaeaea;
}
.current-photo__label {
  margin-top: 5px;
  font-size: 12px;
  font-style: italic;
  color: #666;
}

.blog-moderation-status {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
}
.blog-moderation-status .moderation-label {
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-moderation-status .moderation-notice {
  margin-top: 10px;
  font-size: 14px;
  color: #6c757d;
}

.empty-state {
  padding: 20px 0;
  margin-top: 20px;
  font-size: 18px;
  color: #6c757d;
  text-align: center;
}

/* TinyMCE Editor Styles */
.tox-tinymce {
  border-radius: 4px !important;
  border-color: #ddd !important;
}

.tox .tox-statusbar {
  border-top: 1px solid #ddd !important;
}

.tox .tox-toolbar, .tox .tox-toolbar__overflow, .tox .tox-toolbar__primary {
  background-color: #f8f9fa !important;
}

/* Стили для секции статей на главной странице */
.blog-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Стили для блока последних публикаций на главной странице */
.latest-blog {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  /* Стили для основной (большой) карточки */
  /* Стили для списка боковых карточек */
}
@media (min-width: 992px) {
  .latest-blog {
    grid-template-columns: 1fr 1fr;
  }
}
.latest-blog__main {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey900);
  padding: 8px;
}
.latest-blog__main:hover {
  box-shadow: 0 16px 24px 0 rgba(52, 52, 52, 0.1);
}
@media (min-width: 992px) {
  .latest-blog__main {
    grid-column: 1;
    grid-row: 1/span 3;
  }
}
.latest-blog__main-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.latest-blog__main-image {
  height: 230px;
  overflow: hidden;
}
.latest-blog__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s;
}
.latest-blog__main-time {
  font-size: 12px;
  color: #8E8B82;
  margin: 16px 20px 8px;
}
.latest-blog__main-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 20px 12px;
}
.latest-blog__main-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0 20px 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-blog__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.latest-blog__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--grey900);
  padding: 8px;
}
.latest-blog__item:hover {
  box-shadow: 0 16px 24px 0 rgba(52, 52, 52, 0.1);
}
.latest-blog__item-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
@media (min-width: 576px) {
  .latest-blog__item-link {
    flex-direction: row;
  }
}
.latest-blog__item-image {
  width: 100%;
  height: 150px;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .latest-blog__item-image {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 768px) {
  .latest-blog__item-image {
    width: 150px;
    height: 120px;
  }
}
.latest-blog__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.latest-blog__item-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.latest-blog__item-time {
  font-size: 12px;
  color: #8E8B82;
  margin-bottom: 8px;
}
.latest-blog__item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-blog__item-text {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .blog-articles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .blog-articles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-articles {
    grid-template-columns: 1fr;
  }
}

.blog-article-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.blog-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.blog-article-card__link {
  display: block;
  height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}
.blog-article-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-article-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.blog-article-card__date {
  font-size: 12px;
  color: #8E8B82;
}
.blog-article-card__category {
  font-size: 12px;
  color: #4D4C7D;
  font-weight: 500;
}
.blog-article-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.blog-article-card__author {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #F5F5F5;
}
.blog-article-card__author-name {
  font-size: 13px;
  color: #8E8B82;
}

/* Стили для страницы отдельной статьи */
.blog-article {
  width: 100%;
}
.blog-article__content {
  width: 100%;
}
.blog-article__header {
  margin-bottom: 20px;
}
.blog-article__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #8E8B82;
}
.blog-article__date, .blog-article__category, .blog-article__author {
  display: flex;
  align-items: center;
}
.blog-article__category a, .blog-article__author a {
  color: #4D4C7D;
  text-decoration: none;
}
.blog-article__category a:hover, .blog-article__author a:hover {
  text-decoration: underline;
}
.blog-article__body {
  font-size: 16px;
  line-height: 1.6;
  color: #343434;
  /* Стили для всех тегов внутри контента */
  /* Стили для таблиц */
  /* Разное */
  /* Вложенные списки */
  /* Подписи к изображениям */
  /* Дополнительно для iframes (видео и др.) */
}
.blog-article__body p {
  margin-bottom: 16px;
}
.blog-article__body h1, .blog-article__body h2, .blog-article__body h3, .blog-article__body h4, .blog-article__body h5, .blog-article__body h6 {
  margin-top: 30px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.blog-article__body h1 {
  font-size: 24px;
}
.blog-article__body h2 {
  font-size: 22px;
}
.blog-article__body h3 {
  font-size: 20px;
}
.blog-article__body h4 {
  font-size: 18px;
}
.blog-article__body h5 {
  font-size: 16px;
}
.blog-article__body h6 {
  font-size: 14px;
}
.blog-article__body ul {
  list-style-type: disc;
}
.blog-article__body ol {
  list-style-type: decimal;
}
.blog-article__body ul, .blog-article__body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.blog-article__body ul li, .blog-article__body ol li {
  margin-bottom: 8px;
}
.blog-article__body a {
  color: #4D4C7D;
  text-decoration: none;
}
.blog-article__body a:hover {
  text-decoration: underline;
}
.blog-article__body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px;
  border-radius: 4px;
}
.blog-article__body blockquote {
  border-left: 4px solid #4D4C7D;
  padding: 16px;
  margin: 20px 0;
  background-color: rgba(77, 76, 125, 0.05);
  font-style: italic;
  color: #555;
}
.blog-article__body code {
  font-family: monospace;
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 14px;
}
.blog-article__body pre {
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 16px 0;
}
.blog-article__body pre code {
  background: none;
  padding: 0;
}
.blog-article__body hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #eee;
}
.blog-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  overflow-x: auto;
  display: block;
  max-width: 100%;
}
.blog-article__body .table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
.blog-article__body thead {
  background-color: #f7f7f7;
  border-bottom: 2px solid #ddd;
}
.blog-article__body th {
  text-align: left;
  padding: 12px 8px;
  font-weight: 600;
  white-space: nowrap;
}
.blog-article__body td {
  border-top: 1px solid #ddd;
  padding: 10px 8px;
  vertical-align: top;
}
.blog-article__body tbody tr:hover {
  background-color: #f9f9f9;
}
.blog-article__body .aligncenter {
  display: block;
  margin: 0 auto;
}
.blog-article__body .alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.blog-article__body .alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.blog-article__body ul ul,
.blog-article__body ol ol,
.blog-article__body ul ol,
.blog-article__body ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
.blog-article__body figure {
  margin: 20px 0;
}
.blog-article__body figure img {
  margin: 0 0 8px 0;
}
.blog-article__body figure figcaption {
  font-size: 14px;
  color: #666;
  text-align: center;
}
.blog-article__body iframe {
  max-width: 100%;
  display: block;
  margin: 20px auto;
}
.blog-article__product {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #F5F5F5;
}
.blog-article__product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.blog-article__sidebar {
  align-self: start;
}

.blog-sidebar-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}
.blog-sidebar-block:last-child {
  margin-bottom: 0;
}

.blog-sidebar__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F5F5F5;
}

.blog-company__info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.blog-company__logo, .blog-company__logo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-company__logo-placeholder {
  background-color: #4D4C7D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.blog-company__details {
  flex-grow: 1;
}

.blog-company__name {
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-company__link {
  display: block;
  font-size: 14px;
  color: #4D4C7D;
  text-decoration: none;
  margin-bottom: 5px;
}
.blog-company__link:hover {
  text-decoration: underline;
}

.blog-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-sidebar-card {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #F5F5F5;
  text-decoration: none;
  color: inherit;
}
.blog-sidebar-card:hover .blog-sidebar-card__title {
  color: #4D4C7D;
}
.blog-sidebar-card__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color 0.2s;
}
.blog-sidebar-card__date {
  font-size: 12px;
  color: #8E8B82;
}
.blog-sidebar-card__author {
  font-size: 12px;
  color: #8E8B82;
  margin-top: 4px;
}

.blog-related, .blog-author-articles {
  margin-top: 40px;
}
.blog-related__list, .blog-author-articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .blog-related__list, .blog-author-articles__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-related__list, .blog-author-articles__list {
    grid-template-columns: 1fr;
  }
}

/* Стили для списка статей в карточках */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.blog-card__image {
  height: 160px;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.blog-card__image:hover img {
  transform: scale(1.05);
}
.blog-card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.blog-card__category {
  font-size: 12px;
  font-weight: 500;
  color: #4D4C7D;
}
.blog-card__date {
  font-size: 12px;
  color: #8E8B82;
}
.blog-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.blog-card__product {
  font-size: 12px;
  background-color: #F5F5F5;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: auto;
}

/* Стили для статей в продукте */
.product-blogs {
  margin-top: 40px;
}
.product-blogs .blog-articles-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .product-blogs .blog-articles-list {
    grid-template-columns: 1fr;
  }
}

/* Стили для компании на вкладке блог */
.company-blogs .blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .company-blogs .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .company-blogs .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.company-blogs .blog-list__item {
  height: 100%;
}

/* Общие стили для пустых списков */
.blog-empty {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  color: #8E8B82;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .header {
    display: none;
  }
}
.header__top {
  background: var(--grey900);
}
.header__content {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  background: var(--grey900);
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.header__row {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.header__logo-wrapper {
  display: flex;
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}
.header__logo-wrapper img {
  height: 33px;
  width: auto;
}
.header__brand {
  color: var(--blue500);
  font-size: 18px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}
.header__info-box {
  width: 38px;
  height: 27px;
  position: relative;
}
.header__info-bg {
  width: 38px;
  height: 27px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--blue500);
}
.header__info-content {
  width: 38px;
  height: 27px;
  padding: 2px 3px 2px 5px;
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.header__info-text {
  color: var(--grey900);
  font-size: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  word-wrap: break-word;
}
.header__slogan {
  opacity: 0.6;
  color: var(--black900);
  font-size: 11px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}
.header__search-input {
  width: 480px;
  height: 46px;
  padding: 12px 16px;
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(52, 52, 52, 0.2);
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
  outline: none;
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  background-image: url(/assets/img/svg/search.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 16px 14px;
}
.header__search-input::-moz-placeholder {
  color: var(--black900);
  opacity: 0.5;
}
.header__search-input::placeholder {
  color: var(--black900);
  opacity: 0.5;
}
@media (max-width: 1300px) {
  .header__search-input {
    width: 380px;
  }
}
@media (max-width: 1130px) {
  .header__search-input {
    width: 280px;
  }
}
@media (max-width: 1024px) {
  .header__search-input {
    width: 100%;
    display: none;
  }
}
.header__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.header__nav {
  width: 100%;
  padding: 0px 30px;
  background: var(--blue500);
  box-shadow: 0px 2px 16px rgba(52, 52, 52, 0.1);
  border-radius: 4px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__nav {
    padding: 0px 10px;
  }
}
.header__nav-item {
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: var(--grey900);
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}
.header__nav-item:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .header__nav-item {
    padding: 20px 10px;
  }
}

.mobile-header {
  display: none;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .mobile-header {
    display: block;
  }
}
.mobile-header__top {
  padding: 20px 0px;
  background: var(--grey900);
  border-bottom: 1px solid var(--black300);
}
.mobile-header__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.mobile-header__top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
}
.mobile-header__top-actions .mobile-action-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  border-radius: 4px;
  padding: 8px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
}
.mobile-header__top-actions .mobile-action-item.active {
  background: rgba(77, 76, 125, 0.1);
}
.mobile-header__logo img {
  height: 33px;
  width: auto;
}
.mobile-header .mobile-sidebar {
  display: none;
}
.mobile-header .mobile-sidebar.active {
  display: block;
}
.mobile-header .mobile-menu-content {
  position: absolute;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px;
  box-shadow: 0 2px 16px 0 rgba(52, 52, 52, 0.1);
  background: #f6f6f9;
  width: 80%;
  height: 90%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-header .mobile-menu-content .mobile-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(77, 76, 125, 0.2);
  padding: 16px 0px;
}
.mobile-header .mobile-menu-content .mobile-nav a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue900);
  padding: 8px 0px;
}
.mobile-header .mobile-search-content {
  position: absolute;
  z-index: 9;
  padding: 16px 20px;
  box-shadow: 0 2px 16px 0 rgba(52, 52, 52, 0.1);
  background: #f6f6f9;
  width: 100%;
}
.mobile-header .mobile-search-content .header__search-input {
  display: block;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.footer {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 24px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 48px;
  background: rgba(245, 245, 245, 0.1);
  border-radius: 8px;
  border: 1px solid var(--grey900);
}
@media (max-width: 1024px) {
  .footer__top {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding: 24px;
    gap: 24px;
  }
}
.footer__brand-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 0px;
}
@media (max-width: 1024px) {
  .footer__brand-section {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__brand-section {
    padding: 0px;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
.footer__logo-link {
  display: inline-block;
}
.footer__logo {
  width: 100px;
  height: auto;
}
.footer__description {
  opacity: 0.6;
  color: var(--black900);
  font-size: 11px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}
.footer__subscribe-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__subscribe-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.footer__subscribe-title {
  color: var(--blue500);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
}
.footer__subscribe-description {
  color: var(--black900);
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}
.footer__social-icons {
  display: flex;
  gap: 8px;
}
.footer__social-icon {
  width: 32px;
  height: 32px;
}
.footer__middle {
  display: flex;
  justify-content: space-between;
  padding: 24px 0px;
}
@media (max-width: 1024px) {
  .footer__middle {
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer__middle {
    gap: 12px;
  }
}
.footer__section {
  padding: 0px 32px;
}
@media (max-width: 768px) {
  .footer__section {
    padding: 0px;
    width: 100%;
  }
}
.footer__section-title {
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: var(--blue500);
}
.footer__section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__section-link {
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: var(--blue900);
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
.footer__section-link:hover {
  color: var(--blue500);
  text-decoration: underline;
}
.footer__subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__subscribe-form {
    gap: 4px;
  }
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer__form .footer__input, .footer__form .footer__button {
    width: 100%;
  }
}
.footer__input {
  width: 240px;
  padding: 12px 16px;
  border: 1px solid rgba(142, 139, 130, 0.1882352941);
  background: white;
  border-radius: 2px;
}
.footer__button {
  width: 240px;
  padding: 12px 16px;
  background: var(--grey900);
  border-radius: 2px;
  border: 1px solid var(--black300);
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: var(--black900);
}
.footer__agreement-text {
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: var(--black900);
  opacity: 0.5;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0px;
  border-top: 1px solid var(--grey900);
}
@media (max-width: 1024px) {
  .footer__bottom {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0px;
  }
}
.footer__copyright {
  color: var(--black300);
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
}
.footer__legal {
  list-style: none;
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer__legal {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.footer__legal a {
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  color: var(--blue700);
  text-decoration: underline;
}
