:root {
  --bg: #050505;
  --panel: #151514;
  --panel-2: #101010;
  --text: #ffffff;
  --muted: #adaeb2;
  --muted-2: #7f8082;
  --line: #3d3d3c;
  --line-soft: rgba(255, 255, 255, 0.09);
  --red: #c70e0f;
  --red-2: #e1191b;
  --radius: 20px;
  --header-h: 88px;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}
::selection {
  background-color: var(--red);
  color: var(--text);
}

::-moz-selection {
  background-color: var(--red);
  color: var(--text);
}

html {
  height: 100%;
  scrollbar-color: #6e6c6d #000;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(255, 255, 255, 0.025),
      transparent 34%
    ),
    linear-gradient(180deg, #080808 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
}

fieldset,
label {
  margin: 0;
  padding: 0;
}

input,
label {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  height: var(--header-h);
  border-bottom: 1px solid #1d1d1c;
  background: rgba(5, 5, 5, 0.96);
}

.header_wrapper {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header_logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.header_logo img {
  display: block;
  width: 100%;
  max-width: 216px;
  height: auto;
}

.main-navigation {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 68px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.header_nav__item a {
  position: relative;
  display: block;
  padding: 34px 0 30px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.header_nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.header_nav__item.active a,
.header_nav__item a:hover {
  color: #fff;
}

.header_nav__item.active a::after,
.header_nav__item a:hover::after {
  transform: scaleX(1);
}

.header_controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn_header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 42px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn_header:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn_header img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cart_number {
  position: absolute;
  top: -7px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #050505;
}

.main {
  height: calc(100vh - var(--header-h));
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
}

.card {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h) - 40px);
  min-height: 590px;
  max-height: 780px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card_side {
  position: relative;
  width: 50%;
  height: 100%;
}

.card_left {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(
      ellipse at 52% 44%,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.06) 24%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 52% 70%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(90deg, #171716 0%, #2e2e2d 50%, #171716 100%);
}

.card_left::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.34) 50%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.cart_label {
  position: absolute;
  z-index: 5;
  top: 32px;
  left: 36px;
  width: 158px;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.cart_label:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.cart_label > img:first-child {
  display: block;
  width: 100%;
  height: auto;
}

.cart_label__cat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 76%;
  max-height: 58%;
}

.cart_product {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 8px;
  overflow: hidden;
  z-index: 2;
}

.cart_product::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 7%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.14),
    rgba(0, 0, 0, 0.22) 46%,
    transparent 70%
  );
  filter: blur(2px);
  opacity: 0.7;
}

.my_model {
  position: relative;
  align-self: flex-start;
  z-index: 2;

  width: 100%;
  height: min(70vh, 620px);
  min-height: 430px;

  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(0, 0, 0, 0.4));
  transition: 0.35s ease;
}

.cart_product:hover img {
  transform: translateY(-4px) scale(1.012);
  filter: drop-shadow(0 25px 22px rgba(0, 0, 0, 0.5));
}

.proposal_full {
  position: relative;
  z-index: 6;
  flex: 0 0 auto;
  width: 100%;
  padding: 0 18px 16px;
  overflow: hidden;
}

.proposal {
  --items-visible: 5;
  --gap: 10px;
  display: flex;
  gap: var(--gap);
  width: 100%;
  margin: 0;
  padding: 12px 0 2px;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.proposal::-webkit-scrollbar {
  display: none;
}

.proposal_item {
  --thumb-height: 92px;
  --image-height: 126px;
  --image-offset: -46px;

  position: relative;

  flex: 0 0
    calc(
      (100% - (var(--gap) * (var(--items-visible) - 1))) / var(--items-visible)
    );

  height: clamp(112px, 14vh, 150px);

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 8px 8px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(0, 0, 0, 0.3)
  );

  overflow: hidden;
  scroll-snap-align: start;
  transition: 0.25s ease;
}

.proposal_item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.2)
  );
}

.proposal_item.active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(199, 14, 15, 0.7), 0 0 20px rgba(199, 14, 15, 0.1);
}

.proposal_item.active::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 22px;
  height: 22px;
  pointer-events: none;
  background: url("img/active-circle.png") center/contain no-repeat;
}

.proposal_thumb {
  flex: 1 1 auto;
  min-height: 0;

  width: 100%;
  height: var(--thumb-height);

  display: flex;
  align-items: flex-start;
  justify-content: center;

  overflow: visible;
}
.proposal_thumb img {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: var(--image-height);

  object-fit: contain;

  transform: translateY(var(--image-offset));
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.42));

  pointer-events: none;
}

.proposal_elenemt {
  flex: 0 0 auto;

  position: relative;
  z-index: 3;

  display: block;
  width: 100%;

  margin: 0;

  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.proposal_elenemt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.proposal_controls {
  display: none;
  pointer-events: none;
}

.proposal_full.has-slider-overflow .proposal_controls {
  display: block;
}

.proposal_btn {
  position: absolute;
  top: calc(50% + 4px);
  z-index: 8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 18, 17, 0.9);
  cursor: pointer;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: 0.2s ease;
}

.proposal_btn[hidden],
.proposal_btn.is-hidden,
.proposal_full:not(.is-scrolled) .proposal_btn__prev {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.proposal_btn:not([hidden]):not([disabled]):hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.05);
}

.proposal_btn__prev {
  left: 18px;
}

.proposal_btn__next {
  right: 18px;
}

.proposal_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.proposal_btn__prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.proposal_btn__next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.card_right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 42px 30px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #131313 0%, #0f0f0f 100%);
}

.card_right__1,
.card_right__2 {
  position: relative;
  z-index: 2;
}

.card_right__2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.cart_article {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.cart_title {
  margin: 0;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 38px;
  letter-spacing: -0.035em;
}

.cart_subtitle {
  margin: 8px 0 22px;
  color: var(--red-2);
  font-family: Georgia, serif;
  font-size: clamp(23px, 1.85vw, 31px);
  font-weight: 700;
}

.cart_shortDescription {
  max-width: 470px;
  margin-bottom: 22px;
  color: #c7c8ca;
  font-size: 15px;
  line-height: 1.5;
}

.block_rating {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.block_rating__stars {
  border: none;
  float: left;
  width: auto;
  margin: 0;
  padding: 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  margin: 0;
}

.block_rating__stars > input {
  display: none;
}

.block_rating__stars > label:before {
  margin: 5px;
  font-size: 15px;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  display: inline-block;
  content: "\f005";
}

.block_rating__stars > .half:before {
  content: "\f089";
  position: absolute;
}

.block_rating__stars > label {
  color: #6e6c6d;
  float: right;
}

.block_rating__stars > input:checked ~ label,
.block_rating__stars:not(:checked) > label:hover,
.block_rating__stars:not(:checked) > label:hover ~ label {
  color: #c61817;
}

.block_rating__stars > input:checked + label:hover,
.block_rating__stars > input:checked ~ label:hover,
.block_rating__stars > label:hover ~ input:checked ~ label,
.block_rating__stars > input:checked ~ label:hover ~ label {
  color: #e00100;
}

.block_rating__avarage {
  margin-left: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 35px;
}

.block_rating__reviews {
  margin-left: 6px;
  color: #8b8c8e;
  font-size: 13px;
}

.block_rating__reviews mark {
  background: transparent;
  color: #c81717;
}

.price {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1;
}

.color_red {
  color: #c81717;
}

.sub_label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #d0d1d2;
  font-size: 14px;
}

.sub_label::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("img/shipping.png") center/contain no-repeat;
}

.block_goodColor {
  margin: 0 0 22px;
}

.text_specification,
.block_adding__phrase {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.block_goodColor__allColors {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.block_goodColor__radio {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.radio_button:checked + .block_goodColor__radio {
  border-color: var(--red-2);
  box-shadow: inset 0 0 0 3px #111, 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.block_goodColor__radio:hover {
  transform: translateY(-1px);
}

.block_goodColor__black {
  background: radial-gradient(
    circle at 35% 32%,
    #585858,
    #000000 62%,
    #939393 100%
  );
}

.block_goodColor__grey {
  background: radial-gradient(
    circle at 35% 32%,
    #838383,
    #454545 62%,
    #b7b7b7 100%
  );
}

.block_goodColor__red {
  background: radial-gradient(
    circle at 35% 32%,
    #e62220,
    #780606 62%,
    #210101 100%
  );
}

.block_adding {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.block_quantity {
  display: inline-flex;
  align-items: center;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.block_quantity button,
.block_quantity__value {
  width: 42px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.block_quantity button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  position: relative;
  isolation: isolate;

  height: 46px;
  min-width: 142px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: 4px;

  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;

  cursor: pointer;
  user-select: none;
}

.btn_addToCard {
  border: 1px solid #e32727;

  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 38%
    ),
    linear-gradient(180deg, #d71920 0%, #b40f15 48%, #82090d 100%);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(110, 0, 0, 0.35),
    0 8px 18px rgba(215, 25, 32, 0.18);

  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55);

  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.btn_addToCard::before {
  content: "";
  position: absolute;
  inset: 3px 4px auto 4px;
  height: 38%;

  border-radius: 3px 3px 8px 8px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );

  pointer-events: none;
  z-index: -1;
}

.btn_addToCard:hover {
  transform: translateY(-1px);
  border-color: #ff3434;
  filter: brightness(1.08);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -2px 0 rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(160, 0, 0, 0.45),
    0 10px 24px rgba(215, 25, 32, 0.26);
}

.btn_addToCard:active {
  transform: translateY(0);
  filter: brightness(0.96);

  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 4px 12px rgba(215, 25, 32, 0.16);
}

.btn_addToCard:focus-visible {
  outline: 2px solid rgba(255, 55, 55, 0.75);
  outline-offset: 3px;
}

.btn_add__wishlist {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #fff;
  transition: color 0.2s ease;
}

.btn_add__wishlist:hover {
  color: var(--red-2);
}

.btn_add__wishlist::before {
  content: "";
  width: 25px;
  height: 23px;
  background: url("img/wish.png") center/contain no-repeat;
}

.tabs_elements {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.tab_element {
  height: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, background 0.2s ease;
}

.tab_element:last-child {
  border-right: 0;
}

.tab_element:hover,
.tab_element.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.tab_panel {
  flex: 0 1 auto;
  position: relative;
  max-height: calc(100% - 220px);
  padding-right: 15px;
  overflow-y: auto;
  animation: fadeUp 0.24s ease both;

  scrollbar-color: #6e6c6d #000;
  scrollbar-width: thin;
}

.tab_panel[hidden] {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab_panel h2,
.tab_panel h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tab_panel h3 {
  font-size: 14px;
}

.tab_panel h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 11px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.tab_panel p,
.tab_panel li,
.review_item p {
  color: #c8c8c8;
  font-size: 14px;
  line-height: 1.55;
}

.tab_panel ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.review_item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.review_author {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.review_meta {
  color: var(--red-2);
  font-size: 12px;
  text-transform: uppercase;
}

.tab_table {
  width: 100%;
  border-collapse: collapse;
  color: #d5d5d5;
  font-size: 14px;
}

.tab_table td {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  vertical-align: top;
}

.tab_table td:first-child {
  color: #fff;
  width: 40%;
  font-weight: 700;
}

.tab_table td:last-child {
  color: #b8b9bb;
  text-align: right;
}

.info {
  flex: 0 0 auto;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info_item img {
  object-fit: contain;
  margin-bottom: 6px;
}

.info_item p {
  margin: 0;
}

.info_text1 {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.info_text2 {
  color: var(--muted-2);
  font-size: 10px;
  text-transform: uppercase;
}

@media (max-height: 760px) and (min-width: 901px) {
  .card {
    min-height: 560px;
  }

  .cart_label {
    top: 22px;
    left: 28px;
    width: 135px;
  }

  .proposal {
    padding-top: 8px;
  }

  .card_right {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .cart_article {
    margin-bottom: 14px;
  }

  .cart_subtitle,
  .cart_shortDescription,
  .block_rating,
  .sub_label,
  .block_goodColor {
    margin-bottom: 14px;
  }

  .tab_table td {
    padding: 7px 0;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-h: 82px;
  }

  .container {
    padding: 0 14px;
  }

  .header_logo img {
    max-width: 185px;
  }

  .header_nav {
    gap: 30px;
  }

  .header_controls {
    gap: 18px;
  }

  .card_right {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-y: auto;
    padding: 32px 30px;
  }

  .info {
    position: static;
    margin-top: 24px;
  }

  .proposal {
    --items-visible: 4;
  }
}

@media (max-width: 900px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .site-header {
    height: auto;
    padding: 14px 0 10px;
  }

  .header_wrapper {
    height: auto;
    flex-wrap: wrap;
    gap: 14px;
  }

  .main-navigation {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header_nav {
    min-width: max-content;
    gap: 24px;
  }

  .header_nav__item a {
    padding: 12px 0 16px;
    font-size: 14px;
  }

  .header_nav__item a::after {
    bottom: 6px;
  }

  .header_controls {
    margin-left: auto;
  }

  .btn_header span:not(.cart_number) {
    display: none;
  }

  .main {
    height: auto;
    padding: 18px 0 28px;
    align-items: flex-start;
  }

  .card {
    height: auto;
    max-height: none;
    flex-direction: column;
    border-radius: 16px;
  }

  .card_side {
    width: 100%;
    height: auto;
  }

  .card_left {
    min-height: 70vh;
  }

  .cart_label {
    top: 18px;
    left: 18px;
    width: 118px;
  }

  .cart_product {
    min-height: 52vh;
  }

  .proposal_full {
    padding-inline: 10px;
  }

  .proposal {
    --items-visible: 3;
    padding-inline: 42px;
  }

  .card_right {
    grid-template-columns: 1fr;
    padding: 28px 22px 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
  }

  .cart_title {
    font-size: 42px;
  }

  .tabs_elements {
    margin-top: 6px;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }

  .header_controls {
    gap: 14px;
  }

  .btn_header img {
    width: 25px;
    height: 25px;
  }

  .card_left {
    min-height: 640px;
  }

  .cart_product {
    min-height: 430px;
  }

  .proposal {
    --items-visible: 2;
    padding-inline: 38px;
  }

  .proposal_btn {
    width: 34px;
    height: 34px;
  }

  .proposal_btn__prev {
    left: 8px;
  }

  .proposal_btn__next {
    right: 8px;
  }

  .block_adding {
    flex-wrap: wrap;
  }

  .info {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }
}