@charset "UTF-8";
.rub::before {
  display: inline;
  content: "₽";
}

.product-navi {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 20px 0 20px 0;
}
.product-navi .item {
  width: calc(25% - 30px);
  padding: 20px;
  border: 1px solid #eee;
  text-align: center;
  position: relative;
}
.product-navi .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-text-light);
  font-weight: 500;
  text-decoration: none;
}
.product-navi .item a:hover {
  color: var(--color-main);
}
.product-navi .item a:hover img {
  opacity: 0.7;
}
.product-navi .item .photo {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px auto;
}
.product-navi .item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-navi .item .title {
  height: 100%;
  align-self: center;
}
.product-navi .item:after {
  content: "";
  display: block;
  background-image: url("/i/block_shadow.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  bottom: -23px;
}
.product-navi .item.no-border {
  padding: 0;
  border: 0;
  align-self: center;
}
.product-navi .item.no-border img {
  max-width: 238px;
}
.product-navi .item.no-border:after {
  display: none;
}

.product-list-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 5px;
  margin: 20px 0;
}

.block-mob-show-filter {
  margin: 20px 0;
}

.block-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: 500;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination li .active {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: var(--color-main);
  color: #fff;
  margin: 0 7px;
}
.pagination li a {
  padding: 5px 7px;
  display: block;
  color: var(--color-text);
  text-decoration: none;
}
.pagination li:hover a {
  color: var(--color-main);
}

.sku {
  display: block;
  width: fit-content;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 auto 20px auto;
  font-size: 14px;
}
.sku .numb {
  font-weight: 500;
}

.catalog-descr-top {
  display: flex;
}
.catalog-descr-top div {
  flex: 1;
}
.catalog-descr-top div.photo {
  flex: 0 0 150px;
}
.catalog-descr-top div.photo img {
  max-width: 100%;
}

.order-status {
  background-image: url("/i/check.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  text-align: left;
  padding-left: 30px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-list .item {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 7px;
  box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.product-list .item:hover {
  box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.2);
}
.product-list .item .col1 {
  flex: 0 0 250px;
  text-align: center;
}
.product-list .item .col2 {
  flex: 1;
}
.product-list .item .col3 {
  flex: 0 0 auto;
}
.product-list .item .photo img {
  max-width: 100%;
}
.product-list .item .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-list .item .title a {
  text-decoration: none;
}
.product-list .item .title a:hover {
  text-decoration: underline;
}
.product-list .item .btns {
  flex-direction: column;
  margin-top: 20px;
}

.params {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 3px;
  font-size: 14px;
  background-color: #fff;
}
.params dt, .params dd {
  margin: 0;
  padding: 2px 10px;
  background-color: #fff;
  font-weight: 400;
}
.params dt:nth-child(4n+1), .params dd:nth-child(4n+2) {
  background-color: #f1f1f1;
}
.params dd {
  text-align: center;
}
.params dd.red {
  color: var(--color-red);
}
.params dd.green {
  color: var(--color-green);
}

.price-title {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin-bottom: 5px;
}

.price {
  font-weight: 500;
  font-size: 25px;
  white-space: nowrap;
}

.btns {
  display: flex;
  gap: 10px;
}

.btn.basket-add {
  white-space: nowrap;
}

.block-notice {
  margin: 25px 0 10px 0;
}

.block-mob-show-filter {
  display: none;
  text-align: center;
}
.block-mob-show-filter .btn {
  min-width: 120px;
}

.filters .filter-item {
  margin-bottom: 20px;
}
.filters .filter-checkbox {
  font-weight: 400;
}
.filters input[type=checkbox] {
  margin-right: 5px;
}
.filters label {
  margin-bottom: 4px;
}
.filters .count {
  font-size: 12px;
  color: #545454;
}
.filters .btn {
  padding: 5px 10px;
}
.filters .range-text input[type=text] {
  width: 80px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding-left: 3px;
  padding-right: 3px;
}
.filters .range-text span {
  padding: 0 3px;
}
.filters .sel {
  width: 100%;
}

.block-spec {
  margin-bottom: 30px;
}
.block-spec .title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-text-light);
  text-align: center;
}
.block-spec a {
  text-decoration: none;
}
.block-spec .spec-left {
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.block-spec div.spec-header {
  background-color: #4f8e00;
  color: #fff;
  padding: 3px 10px 3px 10px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}
.block-spec .spec-photo {
  padding: 20px 0;
  color: #333;
  font-weight: normal;
}
.block-spec .spec-catalog-name {
  margin-bottom: 5px;
  font-size: 18px;
}
.block-spec .spec-sticker {
  background-color: #cc0000;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 3px 20px;
  font-size: 18px;
  margin-bottom: 10px;
}
.block-spec .spec-sticker:first-child {
  margin-bottom: 0;
}
.block-spec .spec-price-old {
  font-size: 18px;
  margin-top: 5px;
  text-decoration: line-through;
}
.block-spec .spec-price-old span {
  font-size: 18px;
}
.block-spec .spec-footer {
  background-color: #eeeeee;
  padding: 10px 3px 10px 3px;
  font-size: 15px;
  color: #666666;
  font-weight: 400;
}
.block-spec .spec-price {
  color: var(--color-red);
  font-size: 18px;
  font-weight: 500;
}
.block-spec .spec-akciya {
  position: absolute;
  right: -2px;
  top: -1px;
}

.block-shop {
  margin-bottom: 30px;
}
.block-shop .title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-text-light);
  text-align: center;
}
.block-shop ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.block-shop ul li {
  margin-bottom: 10px;
}
.block-shop ul li img {
  border-radius: 10px;
  max-width: 260px;
}
.block-shop .link {
  text-align: center;
  margin-top: 10px;
}
.block-shop .link a {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
}

.block-service {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.block-vk {
  margin-top: 30px;
}

.block-news {
  margin-top: 30px;
}
.block-news .title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-text-light);
  text-align: center;
}
.block-news .aside-news {
  display: flex;
  flex-wrap: wrap;
  margin: -10px 0 10px 0;
}
.block-news .aside-news .item {
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px dashed #ccc;
  padding: 20px 0;
}
.block-news .aside-news .item .date {
  font-weight: 500;
  color: var(--color-text-light);
  font-style: italic;
  text-align: right;
  margin-bottom: 5px;
}
.block-news .aside-news .item .descr {
  display: flex;
  gap: 15px;
}
.block-news .aside-news .item .descr .photo {
  flex: 0 0 80px;
}
.block-news .aside-news .item .descr .photo img {
  max-width: 100%;
  border-radius: 5px;
}
.block-news .aside-news .item .descr .photo img:hover {
  opacity: 0.7;
}
.block-news .aside-news .item .descr .text {
  flex: 1;
  font-weight: 400;
}
.block-news .aside-news .item .descr .text .btn {
  margin-top: 5px;
  padding: 2px 10px;
}

.product-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.product-card .col-left {
  flex: 0 0 320px;
  padding: 20px;
  text-align: center;
}
.product-card .col-right {
  flex: 1;
}
.product-card .col-full-width {
  flex: 100%;
}
.product-card .photo img {
  max-width: 100%;
  transition: all 0.2s ease;
}
.product-card .photo a {
  cursor: zoom-in;
}
.product-card .photo a:hover img {
  opacity: 0.7;
  transition: all 0.2s ease;
}
.product-card h1 {
  text-align: left;
}
.product-card .params {
  margin-bottom: 20px;
}
.product-card .purcache {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.product-card .purcache .col1 {
  padding-bottom: 5px;
}
.product-card .purcache .order-status {
  font-weight: 300;
  margin-top: 10px;
}
.product-card .block-payment-method {
  margin-top: 20px;
}
.product-card .block-payment-method .title {
  font-weight: 500;
}
.product-card .block-payment-method .payment-method {
  display: flex;
  align-items: center;
  gap: 40px;
  line-height: 1.1;
}
.product-card .block-payment-method .payment-method > div {
  text-align: center;
}
.product-card .block-payment-method .payment-method > div img {
  margin-bottom: 5px;
}
.product-card .block-notice {
  margin-top: 20px;
}
.product-card .btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.product-card .card-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  transition: all 0.2s ease;
}
.product-card .card-photos * {
  transition: all 0.2s ease;
}
.product-card .card-photos .item {
  width: calc(20% - 20px);
  border: 2px solid #f1f1f1;
  border-radius: 7px;
  padding: 10px;
}
.product-card .card-photos .item:hover {
  border: 2px solid var(--color-main-light);
}
.product-card .card-photos .item a {
  display: block;
  height: 100%;
  cursor: zoom-in;
}
.product-card .card-photos .item a:hover img {
  opacity: 0.7;
}
.product-card .card-photos .item img {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
}

/* ================ */
/* === Basket { === */
.basket-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.basket-table th {
  background-color: var(--color-main);
  color: #fff;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
}
.basket-table th,
.basket-table td {
  border: 1px solid #ddd;
  padding: 3px 10px;
}
.basket-table .basket-photo {
  text-align: center;
}
.basket-table .basket-photo img {
  max-width: 100%;
}
.basket-table .basket-name {
  margin-top: 5px;
}
.basket-table .basket-name .descr {
  font-weight: 400;
  margin-top: 10px;
  color: #666;
}
.basket-table .basket-name .sku {
  margin: 0 0 10px 0;
}
.basket-table .col-price,
.basket-table .col-count,
.basket-table .col-sum {
  text-align: center;
  white-space: nowrap;
}
.basket-table .col-sum {
  font-weight: 400;
}
.basket-table .caption {
  display: none;
}
.basket-table a {
  text-decoration-skip-ink: none;
  font-weight: 400;
}

.basket-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basket-bottom input[type=submit]:first-child {
  margin-right: 5px;
}

.counter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.counter-buttons > div {
  width: 28px;
  height: 28px;
  background-color: #dddddd;
}
.counter-buttons .minus:hover,
.counter-buttons .plus:hover {
  cursor: pointer;
  background-color: #575b71;
}
.counter-buttons .minus:hover:before,
.counter-buttons .plus:hover:before {
  color: #fff;
}
.counter-buttons .minus {
  border-radius: 4px 0 0 4px;
}
.counter-buttons .minus:before {
  display: inline;
  content: "−";
}
.counter-buttons .plus {
  border-radius: 0 4px 4px 0;
}
.counter-buttons .plus:before {
  display: inline;
  content: "+";
}
.counter-buttons .number {
  border-top: 3px solid #dddddd;
  border-bottom: 3px solid #dddddd;
  background-color: #fff;
}
.counter-buttons input[type=number] {
  display: block;
  width: 100%;
  height: 22px;
  border: 0;
  background-color: transparent;
  appearance: textfield;
  font-size: 14px;
  text-align: center;
  outline: 0;
}
.counter-buttons input[type=number]::-webkit-outer-spin-button, .counter-buttons input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.basket-offer {
  text-align: right;
  margin-bottom: 15px;
}
.basket-offer:before {
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/i/doc.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 24px;
  vertical-align: middle;
}

/* === Basket } === */
/* ================ */
/* ==================== */
/* === ORDER FORM { === */
.order {
  margin-top: 20px;
  width: 600px;
}
.order td {
  vertical-align: middle;
}
.order td:first-child {
  width: 140px;
}
.order .required-fields {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  text-align: center;
}
.order .btn-solid {
  padding-left: 30px;
  padding-right: 30px;
}
.order label {
  display: inline-block;
  font-weight: normal;
}
.order input[type=submit] {
  margin-top: 10px;
}
.order .edd-root {
  width: 100%;
}

#block_order {
  /* display:none; */
}

/* === ORDER FORM } === */
/* ==================== */

/*# sourceMappingURL=catalog.css.map */
