.header-cart-popup[hidden] {
  display: none !important;
}

.header-cart-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 480px;
  max-width: calc(100vw - 32px);
  color: #2f2f2f;
  font-family: inherit;
}

.header-cart-popup__inner {
  overflow: hidden;
  padding: 22px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.header-cart-popup__header {
  margin-bottom: 14px;
}

.header-cart-popup__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
}

.header-cart-popup__count {
  color: #7c7c7c;
  font-weight: 500;
}

.header-cart-popup__clear {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7c7c7c;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
}

.header-cart-popup__clear:hover {
  color: #b8122b;
}

.header-cart-popup__body {
  min-height: 48px;
}

.header-cart-popup__state {
  padding: 16px 0;
  color: #7c7c7c;
  font-size: 14px;
  line-height: 140%;
}

.header-cart-popup__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 340px;
  overflow-x: hidden;
  overflow-y: auto;
}

.header-cart-popup__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: flex-start;
  min-height: 60px;
}

.header-cart-popup__item-image-link {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 6px;
  background: #f5f5f5;
  overflow: hidden;
}

.header-cart-popup__item-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-cart-popup__item-info {
  min-width: 0;
}

.header-cart-popup__item-name {
  display: block;
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
}

.header-cart-popup__item-name:hover {
  color: #b8122b;
}

.header-cart-popup__item-quantity {
  margin-top: 6px;
  color: #7c7c7c;
  font-size: 13px;
  line-height: 120%;
}

.header-cart-popup__item-side {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  white-space: nowrap;
}

.header-cart-popup__item-price {
  font-weight: 600;
  font-size: 15px;
  line-height: 130%;
}

.header-cart-popup__item-remove {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a3a3a3;
  cursor: pointer;
  font-size: 22px;
  line-height: 20px;
}

.header-cart-popup__item-remove:hover {
  color: #b8122b;
}

.header-cart-popup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ededed;
}

.header-cart-popup__total {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-cart-popup__total-label {
  color: #7c7c7c;
  font-size: 14px;
  line-height: 120%;
}

.header-cart-popup__total-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

.header-cart-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #c8142f;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
}

.header-cart-popup__button:hover {
  color: #fff;
  background: #a90f27;
}

@media (max-width: 1023px) {
  .header-cart-popup {
    display: none !important;
  }
}
