/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f4f6f8;
  padding: 16px;
}

/* Nagłówek */
h1 {
  font-size: 22px;
  margin-bottom: 6px;
}

p {
  color: #666;
  margin-bottom: 20px;
}

.container {
  max-width: 500px;
  margin: 0 auto;
}

/* Karta produktu */
.product {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Nazwa */
.product-name {
  font-size: 16px;
  font-weight: 500;
}

/* Kontrolki */
.controls {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  height: 56px;
  border-radius: 16px;
  border: none;
  font-size: 26px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  touch-action: manipulation;
}

.minus {
  background: #e9ecef;
}

.plus {
  background: #4CAF50;
  color: white;
}

.btn:active {
  transform: scale(0.95);
}

.order-btn {
  margin-top: 20px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: #007bff;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* Ilość */
.qty {
  min-width: 20px;
  text-align: center;
  font-size: 16px;
}