Kokios gūnios Jūsų žirgui reikės šiąnakt?

3clink rel="stylesheet" href="https://nuvallo.de/apps/blog/assets/styles.css"3e
/* Page-specific styles */ .decken-page { background: var(--green-light); min-height: 100vh; } .decken-page main { max-width: 520px; padding: 1.5rem 1rem; margin: 0 auto; } .decken-page h1 { font-size: 1.6rem; margin-bottom: 0.5rem; text-align: center; } .decken-subtitle { text-align: center; color: var(--gray); margin-bottom: 2rem; font-size: 0.95rem; } /* Horse type selector */ .horse-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; } .horse-type-btn { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1rem 0.5rem; border: 2px solid var(--gray-light); border-radius: var(--radius-md); background: var(--white); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--black); } .decken-page .horse-type-btn:hover { border-color: var(--green-dark); } .decken-page .horse-type-btn.active, .decken-page button.horse-type-btn.active { border-color: var(--green-dark) !important; background: var(--green-dark) !important; color: var(--white) !important; box-shadow: 0 0 0 3px rgba(74, 144, 110, 0.35); } .decken-page .horse-type-btn.active .horse-type-label, .decken-page .horse-type-btn.active .horse-type-icon { color: var(--white) !important; } .horse-type-icon { font-size: 2.2rem; } .horse-type-label { text-align: center; line-height: 1.2; } /* Postal code input */ .plz-row { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; } .plz-row input { flex: 1; padding: 0.85rem 1rem; border: 2px solid var(--gray-light); border-radius: var(--radius-md); font-size: 1.1rem; font-family: var(--font-body); text-align: center; letter-spacing: 2px; transition: border-color 0.2s; } .plz-row input:focus { outline: none; border-color: var(--green-dark); } .go-btn { padding: 0.85rem 2rem; border: none; border-radius: var(--radius-md); background: var(--green-dark); color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: background 0.2s; white-space: nowrap; } .go-btn:hover { background: #3d7e5e; } .go-btn:disabled { opacity: 0.5; cursor: default; } /* Loading */ .loading { text-align: center; padding: 2rem 0; display: none; } .loading.visible { display: block; } .spinner { display: inline-block; width: 36px; height: 36px; border: 3px solid var(--gray-light); border-top-color: var(--green-dark); border-radius: 50%; animation: spin 0.7s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .loading p { margin-top: 0.75rem; color: var(--gray); font-size: 0.9rem; } /* Result card */ .result-card { display: none; animation: fadeUp 0.4s ease; } .result-card.visible { display: block; } @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } } .recommendation-box { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; margin-bottom: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); } .rec-icon { font-size: 3.5rem; margin-bottom: 0.5rem; } .rec-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.25rem; } .rec-detail { color: var(--gray); font-size: 0.95rem; line-height: 1.5; } .rec-fill { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 0.75rem 0 0.25rem; } .rec-fill-label { font-size: 0.85rem; color: var(--gray); } .fill-bar { display: flex; gap: 3px; } .fill-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gray-light); transition: background 0.3s; } .fill-dot.filled { background: var(--green-dark); } /* Weather panel */ .weather-panel { background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 1rem; } .weather-panel h2 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--black); text-align: center; } .weather-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } .weather-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem; background: var(--green-light); border-radius: var(--radius-sm); } .weather-item-icon { font-size: 1.5rem; flex-shrink: 0; } .weather-item-info { line-height: 1.3; } .weather-item-label { font-size: 0.75rem; color: var(--gray); } .weather-item-value { font-weight: 600; font-size: 0.95rem; } /* Embed / share section */ .embed-section { background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center; margin-top: 1.5rem; } .embed-section h2 { font-size: 1rem; margin-bottom: 0.75rem; } .embed-code { width: 100%; padding: 0.6rem; border: 1px solid var(--gray-light); border-radius: var(--radius-sm); font-family: monospace; font-size: 0.8rem; resize: none; color: var(--gray); } .copy-btn { margin-top: 0.5rem; padding: 0.5rem 1.5rem; border: 1px solid var(--green-dark); border-radius: var(--radius-sm); background: var(--white); color: var(--green-dark); font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; } .copy-btn:hover { background: var(--green-light); } /* Error */ .error-msg { text-align: center; color: #d32f2f; font-size: 0.9rem; padding: 0.75rem; display: none; } .error-msg.visible { display: block; } /* Retry */ .retry-row { text-align: center; margin-top: 1rem; } .retry-btn { padding: 0.6rem 1.5rem; border: 2px solid var(--green-dark); border-radius: var(--radius-md); background: var(--white); color: var(--green-dark); font-family: var(--font-heading); font-weight: 600; cursor: pointer; transition: all 0.2s; } .retry-btn:hover { background: var(--green-light); }

(function() { var selectedHorse = null; var plzInput = document.getElementById('plz-input'); var goBtn = document.getElementById('go-btn'); /* Set embed code — always point to nuvallo.de regardless of current host */ var nuvalloURL = 'https://nuvallo.de/pages/pferdedecken'; document.getElementById('embed-code').value = '