.bought-together {
  margin: 30px 0;
}

.bought-together .title {
  margin-bottom: 16px;
}

.bought-together__body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.bought-together__products {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 8px;
  flex: 1 1 60%;
}

.bought-together__item {
  width: 180px;
  max-width: 100%;
}

.bought-together__plus {
  align-self: center;
  font-size: 28px;
  font-weight: 700;
  padding: 0 4px;
}

.bought-together__check {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
}

.bought-together__picture {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.bought-together__picture img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}

.bought-together__name {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 600;
}

.bought-together__name a {
  color: inherit;
}

.bought-together__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bought-together__price {
  font-weight: 700;
}

.bought-together__old-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 13px;
}

.bought-together__summary {
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: #f6f7f8;
}

.bought-together__bundle-label {
  font-weight: 600;
}

.bought-together__bundle-price {
  font-size: 22px;
  font-weight: 700;
}

.bought-together__add {
  width: 100%;
}

@media (max-width: 767px) {
  .bought-together__summary {
    max-width: none;
  }

  .bought-together__item {
    width: calc(50% - 24px);
  }
}
