.cp-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.cp-sidebar {
  flex: 0 0 304px;
  min-width: 304px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cp-sidebar__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202020;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
  line-height: 1.4;
}

.cp-sidebar__item:last-child {
  border-bottom: none;
}

.cp-sidebar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #aaa;
}

.cp-sidebar__item:hover {
  background-color: #f5f5f5;
}

.cp-sidebar__item--active {
  background-color: #fb8004;
  border-color: #fb8004;
  color: #fff;
}

.cp-sidebar__item--active svg {
  color: #fff;
}

.cp-sidebar__item--active:hover {
  background-color: #e07203;
}

.cp-content {
  flex: 1;
  min-width: 0;
}

.cp-content--full {
  width: 100%;
  max-width: 860px;
}

.cp-page-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #202020;
  line-height: 1.7;
}
.cp-page-text p { margin: 0 0 16px 0; }
.cp-page-text h2 { font-family: "Montserrat", sans-serif; font-size: 28px; font-weight: 700; color: #14385c; margin: 32px 0 16px; }
.cp-page-text h3 { font-family: "Montserrat", sans-serif; font-size: 22px; font-weight: 600; color: #14385c; margin: 28px 0 14px; }
.cp-page-text ul, .cp-page-text ol { padding-left: 24px; margin: 0 0 16px 0; }
.cp-page-text ul li, .cp-page-text ol li { margin-bottom: 8px; }
.cp-page-text a { color: #fb8004; text-decoration: underline; }
.cp-page-text a:hover { text-decoration: none; }
.cp-page-text strong { font-weight: 700; color: #14385c; }

.cp-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #202020;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.cp-desc a {
  color: #fb8004;
  text-decoration: underline;
}

.cp-table {
  border: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.cp-table__head {
  display: flex;
  align-items: center;
  background-color: #3b4e61;
  padding: 14px 20px;
}

.cp-table__head .cp-table__col {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.cp-table__row {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #e0e0e0;
  background-color: #F1F5F9;
}

.cp-table__row:last-child {
  border-bottom: none;
}

.cp-table__row:hover {
  background-color: #e8edf3;
}

.cp-table__col--name {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #202020;
}

.cp-table__col--unit {
  width: 100px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #202020;
}

.cp-table__col--price {
  width: 160px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cp-table__img {
  width: 90px;
  height: 70px;
  flex-shrink: 0;
  background-color: #e8e8e8;
  background-image: url('../img/catalog_img/1.jpg');
  background-size: cover;
  background-position: center;
}

.cp-table__price-val {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #202020;
}

.cp-table__buy {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fb8004;
  margin-top: 2px;
}

.cp-table__buy:hover {
  text-decoration: underline;
}

.cp-form-block {
  background-color: #F1F5F9;
  padding: 32px;
  border-radius: 14px;
  margin-bottom: 48px;
}

.cp-form-block__title {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #202020;
  margin: 0 0 24px 0;
}

.cp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cp-form__input {
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  background-color: #fff;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202020;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.cp-form__input::placeholder {
  color: #999;
  font-weight: 400;
}

.cp-form__input:focus {
  border-color: #fb8004;
}

.cp-form__textarea {
  width: 100%;
  height: 120px;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  background-color: #fff;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202020;
  outline: none;
  resize: vertical;
  margin-bottom: 20px;
  display: block;
  transition: border-color 0.2s;
}

.cp-form__textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.cp-form__textarea:focus {
  border-color: #fb8004;
}

.cp-form__footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cp-form__submit {
  padding: 16px 44px;
  background-color: #fb8004;
  color: #fff;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.cp-form__submit:hover {
  background-color: #e07203;
}

.cp-form__policy {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.cp-form__policy a {
  color: #555;
  text-decoration: underline;
}

.cp-recommended__title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #072561;
  margin: 0 0 24px 0;
}

.cp-recommended__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-recommended__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.cp-recommended__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cp-recommended__img {
  height: 200px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: #e0e0e0;
}

.cp-recommended__text {
  margin: 0 0 20px 0;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #202020;
  line-height: 1.55;
  flex: 1;
}

.cp-recommended__btn {
  align-self: flex-start;
  padding: 12px 40px;
}

/* Product card grid */
.cp-products {
  margin-bottom: 32px;
}

.cp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.cp-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.cp-product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cp-product-card__img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.cp-product-card__name {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #202020;
  line-height: 1.5;
  margin: 0 0 8px 0;
  flex: 1;
}

.cp-product-card__price {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fb8004;
  margin: 0 0 16px 0;
}

.cp-product-card__btn {
  align-self: flex-start;
  padding: 12px 40px;
}

.cp-products__more {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: #fb8004;
  color: #fff;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.cp-products__more:hover {
  background-color: #e07203;
}

/* Покрытия page */
.pkr-main-img {
  width: 100%;
  border-radius: 14px;
  display: block;
  margin-bottom: 28px;
}

.pkr-intro {
  margin-bottom: 40px;
}

.pkr-intro__title {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #202020;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.pkr-intro__text {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202020;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.pkr-intro__text:last-child {
  margin-bottom: 0;
}

.pkr-section {
  margin-bottom: 40px;
}

.pkr-section__title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #072561;
  margin: 0 0 20px 0;
}

.pkr-list {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #202020;
  line-height: 1.7;
  padding-left: 20px;
  margin: 0 0 20px 0;
}

.pkr-list li {
  margin-bottom: 12px;
}

.pkr-list li:last-child {
  margin-bottom: 0;
}

.pkr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.pkr-gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
