.tooltip-basket {
  padding: 0;
  min-width: 280px;
}

.cart-mini {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  margin: 0 0 4px;
  font-size: 13px;
  color: #000;
  line-height: 1.3;
  font-weight: 500;
}

.cart-item-price {
  font-size: 14px;
  color: #FFB800;
  font-weight: 700;
}

.cart-item-qty {
  font-size: 13px;
  color: #777;
  font-weight: 700;
  margin-right: 2px;
}

.cart-item-old-price {
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
}

.cart-item-discount {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #e74c3c;
  padding: 1px 4px;
}

.cart-btn {
  display: block;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 10px 0;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
