/* ---- Mobil-first, full-width design ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #f2f3f5;
}

/* minden container full-width, nincs margin auto */
.container {
  width: 100%;
  padding: 1rem;
}

/* sorkizárt cím és meta */
.product-info strong,
.product-info .meta {
  text-align: justify;
  text-justify: inter-word;
}

/* keresősáv full-width */
.search-bar {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
}

.search-bar input {
  flex: 1;
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}

.search-bar button {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 0 4px 4px 0;
}

/* új termék link full-width */
.add-product {
  margin-bottom: 1rem;
}

.add-product a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* terméklista full-width */
.product-list {
  list-style: none;
  padding: 0;
}

.product-card {
  background: #fafafa;
  border-radius: 6px;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  width: 100%;
}

.product-info {
  margin-bottom: 0.6rem;
}

.product-info strong {
  display: block;
  font-size: 1.1rem;
}

.product-info .meta {
  font-size: 0.9rem;
  color: #555;
}

.out-of-stock {
  color: #dc3545;
  font-weight: bold;
}

/* vezérlők full-width */
.controls {
  display: flex;
  align-items: center;
  justify-content: space-between; /* szétosztja a gombokat és mennyiséget szépen */
  width: 100%;
}

.controls form {
  display: inline-flex;
}

.controls button {
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  line-height: 1;
}

.controls span {
  font-size: 1rem;
  min-width: 2rem;
  text-align: center;
}
