body {
  background: linear-gradient(135deg, #f7faff 60%, #e3edfa 100%);
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
}
.korzina-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 32px 18px 32px;
}
.korzina-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #e53935;
  letter-spacing: 1px;
}
.korzina-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
}
.korzina-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
  max-width: 700px;
}
.korzina-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(45,127,249,0.10);
  padding: 28px 32px 22px 32px;
  display: flex;
  gap: 28px;
  align-items: center;
  position: relative;
}
.korzina-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #f3f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.korzina-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.korzina-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.korzina-row-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.korzina-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a237e;
  letter-spacing: 0.5px;
}
.korzina-id {
  background-color: #eef2f9;
  color: #3949ab;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}
.korzina-row-info {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2px;
  display: flex;
  gap: 18px;
}
.korzina-cost {
  color: #e53935;
  font-weight: 600;
}
.korzina-sale {
  color: #1976f9;
  font-weight: 600;
}
.korzina-amount {
  color: #00897b;
  font-weight: 600;
}
.korzina-sold {
  color: #3949ab;
  font-weight: 600;
}
.korzina-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.korzina-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 4px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: background 0.2s;
}
.korzina-action-btn:hover {
  background: #e3edfa;
}
.korzina-back-btn {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px #e3edfa;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin-right: 18px;
}
.korzina-back-btn:hover {
  background: #e3edfa;
  box-shadow: 0 4px 18px #e3edfa;
} 