/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Aby obsah pokryl celou výšku stránky */
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #1a1a1a;
  color: white;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d42a2a; /* Červená barva značky */
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #d42a2a;
  border-radius: 5px;
}

.accessories-container {
  flex: 1; /* Obsah se roztáhne tak, aby vyplnil dostupný prostor */
  max-width: 1200px;
  margin: 2rem auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* Vertikální zarovnání na střed */
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #d42a2a; /* Primární barva značky */
}

p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.accessories-section {
  display: flex; /* Flexbox pro zarovnání položek vedle sebe */
  flex-wrap: wrap; /* Zabalí položky na další řádek, pokud je málo místa */
  justify-content: center; /* Horizontální zarovnání na střed */
  gap: 20px; /* Mezera mezi položkami */
  width: 100%; /* Šířka sekce */
}

.accessory {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 300px; /* Fixní šířka pro konzistentní vzhled */
}

.accessory:hover {
  transform: scale(1.05);
}

.accessory-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

h2 {
  color: #444;
  margin-bottom: 10px;
}

.buy-button {
  background-color: #d42a2a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.buy-button:hover {
  background-color: #b12222;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #1a1a1a;
  color: white;
  margin-top: auto; /* Zajistí, že footer se posune na spodní okraj */
}
