/** Shopify CDN: Minification failed

Line 79:19 Expected "}" to go with "{"

**/
/* Newsletter wrapper full-width */
.newsletter {
  width: 100%;
  background: #f3f4f6; /* tu nastav svoju farbu / gradient */
  padding: 60px 20px; /* hore/dole + trochu do strán */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Wrapper inputu */
.newsletter__wrapper {
  width: 100%;
  max-width: 600px; /* limit šírky inputu */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Obal a label */
.newsletter-email-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

/* Label */
.newsletter-email-label {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Input + šípka */
.modern-field {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  width: 100%; /* full width podľa wrappera */
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Input */
.modern-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.modern-input::placeholder {
  color: #9ca3af;
}

/* Focus efekt */
.modern-input:focus {
  background: #f9fafb;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  border-color: #3b82f6;
}

/* Šípka tlačidlo */
.modern-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14p