.commerce-cart-impulse {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.commerce-cart-impulse__heading {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.commerce-cart-impulse__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 200px));
  justify-content: end;
  gap: 1rem;
}

.commerce-cart-impulse__items:has(.commerce-cart-impulse__item:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}

.commerce-cart-impulse__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  height: 100%;
  box-sizing: border-box;
  text-align: left;
}

.commerce-cart-impulse__checkbox {
  margin-bottom: 0;
}

.commerce-cart-impulse__item .form-item {
  margin-top: 0;
  margin-bottom: 0;
}

.commerce-cart-impulse__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.commerce-cart-impulse__image {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.commerce-cart-impulse__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.commerce-cart-impulse__image--placeholder {
  height: 150px;
}

.commerce-cart-impulse__title {
  font-weight: 600;
  line-height: 1.2;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.commerce-cart-impulse__price {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: auto;
  text-align: center;
}

