.kds-product-cart-preview {
  width: 100%;
  margin: 18px 0 14px;
  font-family: inherit;
}

/* Seçili renk + beden sepetteyse gösterilen küçük bilgi */
.kds-current-selection-status {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 15px;
  border: 1px solid #b8dfc1;
  background: #f2faf4;
}

.kds-current-selection-status[hidden] {
  display: none !important;
}

.kds-current-selection-status__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #1c9848;
  border-radius: 50%;
  color: #1c9848;
  font-size: 13px;
  line-height: 1;
}

.kds-current-selection-status > div {
  min-width: 0;
}

.kds-current-selection-status strong {
  display: block;
  margin: 0 0 4px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

.kds-current-selection-status small {
  display: block;
  color: #52705a;
  font-size: 12px;
  line-height: 1.4;
}

/* Sepet ön izleme ana kutusu */
.kds-cart-preview-box {
  overflow: hidden;
  width: 100%;
  border: 1px solid #dedede;
  background: #fff;
}

/* Ön izleme başlığı */
.kds-cart-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 15px;
  border-bottom: 1px solid #e7e7e7;
  background: #fafafa;
}

.kds-cart-preview-header > div {
  min-width: 0;
}

.kds-cart-preview-header strong {
  display: block;
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 600;
}

.kds-cart-preview-header small {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 11px;
}

/* Sepete git düğmesi */
.kds-cart-preview-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 130px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.kds-cart-preview-link:hover {
  background: #fff;
  color: #111;
}

/* Ürün listesi */
.kds-cart-preview-items {
  max-height: 210px;
  overflow-y: auto;
  padding: 0 15px;
}

.kds-cart-preview-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ededed;
}

.kds-cart-preview-item:last-child {
  border-bottom: 0;
}

.kds-cart-preview-item__info {
  min-width: 0;
}

.kds-cart-preview-item__info strong {
  display: block;
  overflow: hidden;
  margin: 0 0 5px;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kds-cart-preview-item__info small {
  display: block;
  color: #666;
  font-size: 11px;
  line-height: 1.45;
}

.kds-cart-preview-item__quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dedede;
  background: #f7f7f7;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.kds-cart-preview-remaining {
  padding: 11px 0;
  color: #666;
  font-size: 11px;
  text-align: center;
}

/* İnce scrollbar */
.kds-cart-preview-items {
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f2f2f2;
}

.kds-cart-preview-items::-webkit-scrollbar {
  width: 5px;
}

.kds-cart-preview-items::-webkit-scrollbar-track {
  background: #f2f2f2;
}

.kds-cart-preview-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #bdbdbd;
}

/* Mobil */
@media (max-width: 600px) {
  .kds-product-cart-preview {
    margin-top: 14px;
  }

  .kds-cart-preview-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .kds-cart-preview-link {
    width: 100%;
  }

  .kds-cart-preview-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .kds-cart-preview-item__info strong {
    white-space: normal;
  }
}
