/* Import Google Font Sora */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

/* Reset a základné štýly */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #e9f5ec; /* svetlo zelená namiesto f8f9fa */
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

form#orderForm {
  max-width: 900px;
  width: 100%;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(34, 77, 43, 0.15); /* jemnejší zelený tieň */
}

/* Karty s produktami */
.card-section {
  margin-bottom: 2.5rem;
}

.card-section > h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #2a7f3e; /* tmavozelená */
  padding-bottom: 0.3rem;
}

/* Produktová karta */
.product-card {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  border: 1px solid #7bbf7b; /* svetlá zelená hrana */
  border-radius: 12px;
  align-items: flex-start;
  background-color: #f4fbf4; /* veľmi svetlá zelená */
  position: relative;
  margin-bottom: 1.4rem;
}

.product-card > .image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.product-card img.product-image {
  width: 350px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #a3d4a5; /* svetlozelený rámček */
  background: white;
  transition: transform 0.3s ease;
  display: block;
  cursor: pointer;
}

/* Zoom efekt pri hover na PC, väčší scale */
@media (hover: hover) and (pointer: fine) {
  .product-card img.product-image:hover {
    transform: scale(1.4);
    z-index: 10;
  }
}

/* PDF tlačidlo pod obrázkom */
.pdf-button {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.4rem 0;
  background-color: #2a7f3e; /* tmavozelená */
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  text-align: center;
  width: 350px; /* rovnaká šírka ako obrázok */
  box-sizing: border-box;
}

.pdf-button:hover,
.pdf-button:focus {
  background-color: #1e5b28; /* tmavšia zelená */
  outline: none;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 0.95rem;
  color: #555;
  margin-top: -0.6rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}


/* Label + input vo vertikálnom usporiadaní */
.product-info label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1rem;
}

.product-info input[type="number"] {
  margin-top: 0.3rem;
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
  border: 1px solid #7bbf7b; /* zelený rám */
  border-radius: 6px;
  max-width: 130px;
}

/* Sekcia Dodacie údaje */
.card.dodacie-udaje {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: #f4fbf4; /* veľmi svetlá zelená */
  border: 1px solid #7bbf7b; /* svetlá zelená */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.dodacie-udaje label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: -0.75rem; /* zmenšená medzera z 0.25rem na 0.4rem, môžeš upraviť podľa chuti */
}

.card.dodacie-udaje input,
.card.dodacie-udaje textarea {
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #7bbf7b; /* zelený rám */
  border-radius: 6px;
  width: 100%;
  font-family: inherit;
}

.note-label textarea {
  resize: vertical;
  min-height: 80px;
  margin-top: 1.5rem; /* väčší odstup medzi poznámkou a kartou */
}

/* Checkbox label upravený pre GDPR súhlas */
.checkbox-label {
  display: flex;
  align-items: flex-start; /* lepšie zarovnanie s viacriadkovým textom */
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.3; /* pekné zalomenie textu */
  color: #2a7f3e; /* tmavozelená */
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px; /* jemné doladenie vertikálneho zarovnania */
  width: 18px;
  height: 18px;
  cursor: pointer;
  border: 1px solid #7bbf7b;
  background: white;
}

.required {
  color: #d93025;
}

/* Tlačidlo Odoslať */
.submit-section {
  text-align: center;
  margin-top: 2rem;
}

.submit-section button {
  background-color: #2a7f3e; /* tmavozelená */
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.7rem 2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-section button:hover,
.submit-section button:focus {
  background-color: #1e5b28; /* tmavšia zelená */
  outline: none;
}

/* Väčšie medzery medzi produktovými kartami */
.product-card:not(:last-child) {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 700px) {
  .product-card {
    flex-direction: column;
    align-items: center;
  }

  .product-card img.product-image,
  .pdf-button {
    width: 100%;
    max-width: 100%;
  }

  .product-info {
    width: 100%;
    margin-top: 0.8rem;
  }

  .product-info input[type="number"] {
    max-width: 100%;
  }
}