.cart-widget-side .mmsc-recommendations {
  box-sizing: border-box;
  margin: 14px 10px 4px;
  padding: 14px;
  border: 1px solid #cfe0e5;
  border-radius: 16px;
  background: #fff;
}

.cart-widget-side .mmsc-recommendations__title {
  margin: 0 0 11px;
  color: #082f3c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.cart-widget-side .mmsc-recommendations__list {
  display: grid;
  gap: 12px;
}

.cart-widget-side .mmsc-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.cart-widget-side .mmsc-card + .mmsc-card {
  padding-top: 12px;
  border-top: 1px solid #e4ecef;
}

.cart-widget-side .mmsc-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
}

.cart-widget-side .mmsc-card__image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.cart-widget-side .mmsc-card__content {
  min-width: 0;
}

.cart-widget-side .mmsc-card__name {
  display: block;
  margin: 0 0 3px;
  color: #082f3c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.cart-widget-side .mmsc-card__price {
  margin-bottom: 8px;
  color: #082f3c;
  font-size: 13px;
  font-weight: 700;
}

.cart-widget-side .mmsc-card__price del {
  color: #748188;
  font-weight: 400;
}

.cart-widget-side .mmsc-card__options {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.cart-widget-side .mmsc-card__option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin: 0;
}

.cart-widget-side .mmsc-card__option span {
  color: #4a5c63;
  font-size: 11px;
  font-weight: 600;
}

.cart-widget-side .mmsc-card__option--pills {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.cart-widget-side .mmsc-card__option--pills legend {
  margin: 0 0 5px;
  padding: 0;
  color: #4a5c63;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.cart-widget-side .mmsc-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cart-widget-side .mmsc-card__pill {
  min-width: 38px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid #b9cdd3;
  border-radius: 8px;
  background: #fff;
  color: #082f3c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.cart-widget-side .mmsc-card__pill:hover,
.cart-widget-side .mmsc-card__pill:focus-visible {
  border-color: #082f3c;
  background: #f1f6f7;
  color: #082f3c;
}

.cart-widget-side .mmsc-card__pill.is-selected {
  border-color: #082f3c;
  background: #082f3c;
  color: #fff;
}

.cart-widget-side .mmsc-card__option select {
  min-width: 0;
  height: 34px;
  padding: 0 28px 0 9px;
  border: 1px solid #b9cdd3;
  border-radius: 8px;
  background-color: #fff;
  color: #082f3c;
  font-size: 12px;
}

.cart-widget-side .mmsc-card__button {
  width: 100%;
  min-height: 36px;
  padding: 8px 12px;
  border: 0;
  border-radius: 9px;
  background: #e40535;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.cart-widget-side .mmsc-card__button:hover,
.cart-widget-side .mmsc-card__button:focus-visible {
  background: #bc032b;
  color: #fff;
}

.cart-widget-side .mmsc-card__button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.cart-widget-side .mmsc-card__button.is-loading {
  cursor: wait;
}

.cart-widget-side .mmsc-card__status {
  margin: 5px 0 0;
  color: #9d1730;
  font-size: 10px;
  line-height: 1.3;
}

@media (max-width: 420px) {
  .cart-widget-side .mmsc-recommendations {
    margin-right: 8px;
    margin-left: 8px;
    padding: 12px;
  }

  .cart-widget-side .mmsc-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
  }

  .cart-widget-side .mmsc-card__image {
    width: 68px;
    height: 68px;
  }
}
