.cart-modal-body .cart-item.cart-set-item--visual {
  flex-direction: column;
  align-items: stretch;
}

.cart-modal-body .cart-set-item--visual .cart-item-details {
  width: 100%;
}

.cart-set-component-frame {
  --cart-set-tile-size: 88px;
  position: relative;
  width: 100%;
  height: 104px;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #f7e3da;
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
}

.cart-set-component-frame::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.cart-set-component-grid {
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  min-width: 100%;
  height: 100%;
  padding: 8px;
  box-sizing: border-box;
  touch-action: pan-x;
}

.cart-set-component-tile {
  position: relative;
  flex: 0 0 var(--cart-set-tile-size);
  width: var(--cart-set-tile-size);
  height: var(--cart-set-tile-size);
  overflow: hidden;
  border-radius: 10px;
  background: #fff8f4;
  touch-action: pan-x;
}

.cart-set-component-tile--group {
  padding: 4px;
  background: #fff1e8;
}

.cart-set-component-tile > img,
.cart-set-component-sauce-stack img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.cart-set-component-sauce-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 3px;
  width: 100%;
  height: 100%;
}

.cart-set-component-sauce-stack img {
  border-radius: 5px;
}

@media (max-width: 576px) {
  .cart-set-component-frame {
    --cart-set-tile-size: 78px;
    height: 94px;
  }
}
