/* LIHAY RistoHouse */
:root {
  --cream-page: #f2f1ed;
  --cream-soft: #f7f6f2;
  --white: #ffffff;
  --ink: #141414;
  --ink-soft: #3d3d3d;
  --muted: #6b6b6b;
  --line: #e4e3df;
  --orange: #f2711c;
  --orange-hover: #d86214;
  --yellow: #ffc72c;
  --yellow-soft: #fff3c9;
  --forest: #1f4d3a;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 22px 60px rgba(20, 20, 20, 0.08);
  --shadow-card: 0 12px 40px rgba(20, 20, 20, 0.06);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --max-w: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--cream-page);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; width: auto; height: auto; padding: 12px 16px;
  background: var(--orange); color: var(--white); z-index: 9999; border-radius: 8px;
}

.top-meta { background: var(--cream-soft); border-bottom: 1px solid var(--line); font-size: 13px; }
.top-meta__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 10px 24px;
  display: flex; justify-content: flex-end; gap: 20px; align-items: center; flex-wrap: wrap;
}
.top-meta a { color: var(--muted); text-decoration: none; }
.top-meta a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  padding: 11px 20px; border-radius: 999px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { filter: brightness(1.05); }
.btn--orange { background: var(--orange); color: var(--white); text-decoration: none; }
.btn--orange:hover { background: var(--orange-hover); color: var(--white); }
.btn--outline {
  background: var(--white); color: var(--ink); border: 2px solid var(--ink); text-decoration: none;
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 24px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__logo { height: 48px; width: auto; flex-shrink: 0; }

.main-nav { display: flex; justify-content: center; }
.main-nav ul {
  list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.main-nav a {
  display: block; padding: 10px 14px; font-weight: 600; font-size: 14px; color: var(--ink-soft);
  text-decoration: none; border-radius: 4px; transition: color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.is-active { color: var(--ink); font-weight: 700; box-shadow: inset 0 -2px 0 var(--orange); }

.header-actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.pin-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px;
  text-decoration: none; color: var(--ink);
}
.pin-link svg { color: var(--yellow); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%; background: var(--white);
    border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .main-nav.is-open { max-height: 520px; }
  .main-nav ul { flex-direction: column; padding: 12px 24px 20px; gap: 0; }
  .main-nav a.is-active { box-shadow: inset 3px 0 0 var(--orange); }
  .pin-link span:last-child { display: none; }
}
@media (max-width: 520px) {
  .top-meta__inner { justify-content: center; }
  .brand__logo { height: 40px; }
}

.shell { max-width: var(--max-w); margin: 0 auto; padding: 32px 24px 80px; }
.page-head { margin-bottom: 28px; }
.page-title {
  margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
}
.breadcrumbs { font-size: 14px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }

.hero-shell { padding-top: 16px; }
.hero-card {
  background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; align-items: stretch;
}
.hero-copy {
  padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column;
  justify-content: center; gap: 18px;
}
.kicker {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; background: var(--yellow-soft);
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
}
.hero-title {
  margin: 0; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.08; color: var(--ink);
}
.hero-lead { margin: 0; font-size: 18px; max-width: 34ch; color: var(--ink-soft); }

.brush-badge {
  display: inline-flex; align-self: flex-start; padding: 10px 18px; border-radius: 6px;
  background: var(--ink); color: var(--white); font-weight: 800; font-size: 14px; letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 1px 2px rgba(20, 20, 20, 0.08);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.hero-visual {
  position: relative; min-height: 380px;
  background: linear-gradient(165deg, #ebe9e4 0%, #dccdbf 55%, #cfc0ae 100%);
}
.hero-visual__photo {
  width: 100%; height: 100%; min-height: 380px; object-fit: cover; object-position: center 42%;
}
.hero-visual__photo[src$=".svg"] {
  object-fit: contain; object-position: center bottom; padding: clamp(20px, 5vw, 48px);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; order: -1; }
}

.section { margin-top: 56px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head h2 {
  margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
}
.section-head p { margin: 0; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-card); text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-4px); box-shadow: 0 18px 50px rgba(20, 20, 20, 0.1);
}
.product-card h3 { margin: 0 0 12px; font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.product-card p { margin: 0; font-size: 15px; color: var(--muted); }

.kids-band {
  margin-top: 56px; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--yellow) 100%); box-shadow: var(--shadow-card);
}
.kids-band__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center;
  padding: clamp(28px, 5vw, 48px);
}
.kids-band h2 {
  margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--ink);
}
.kids-band p { margin: 0 0 18px; color: var(--ink-soft); }

.kids-photo {
  border-radius: var(--radius-lg); overflow: hidden; border: 4px solid var(--white);
  box-shadow: var(--shadow-soft); background: var(--white); min-height: 220px;
}
.kids-photo--featured { min-height: min(320px, 52vw); aspect-ratio: 4 / 3; }
.kids-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

@media (max-width: 820px) {
  .kids-photo--featured { max-height: 380px; aspect-ratio: 16 / 10; }
  .kids-band__inner { grid-template-columns: 1fr; }
}

.page-banner {
  margin: -8px 24px 0; max-width: calc(var(--max-w) + 48px); margin-left: auto; margin-right: auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(110deg, var(--yellow) 0%, #ffdf73 45%, var(--yellow) 100%);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px); position: relative; overflow: hidden;
}
.page-banner::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.35);
}
.page-banner h1 {
  margin: 0; position: relative; z-index: 1; font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.03em; color: var(--ink);
}
.page-banner + .shell { padding-top: 40px; }

.contact-email-banner {
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: var(--cream-soft);
  border: 1px solid var(--line);
}
.contact-email-banner__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-email-banner__link {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  word-break: break-all;
}
.contact-email-banner__link:hover {
  text-decoration: underline;
}

.two-col {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1fr); gap: 40px; align-items: start;
}
@media (max-width: 920px) { .two-col { grid-template-columns: 1fr; } }

.sidebar-card {
  background: var(--yellow); border-radius: var(--radius-lg); padding: 32px 24px;
  color: var(--ink); box-shadow: var(--shadow-card);
}
.sidebar-card--muted { background: var(--cream-soft); border: 1px solid var(--line); }
.sidebar-card h3 { margin: 0 0 10px; font-size: 1.25rem; font-weight: 800; }
.sidebar-card p { margin: 0; font-size: 15px; }
.sidebar-photo { margin-top: 20px; border-radius: var(--radius-md); overflow: hidden; border: 3px solid rgba(255, 255, 255, 0.75); }
.sidebar-photo img { width: 100%; height: auto; object-fit: cover; }

.icon-tile {
  width: 72px; height: 72px; margin-bottom: 16px; border-radius: 18px; background: var(--white);
  display: grid; place-items: center; box-shadow: var(--shadow-card);
}

.form-panel {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.form-intro { margin: 0 0 24px; font-size: 15px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field-full { grid-column: 1 / -1; }

label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.req { color: var(--orange); }

input, select, textarea {
  width: 100%; font: inherit; padding: 13px 14px; border-radius: 10px; border: 1px solid #d9d8d4;
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 113, 28, 0.18);
}
textarea { min-height: 140px; resize: vertical; }
.field-hint { margin: 6px 0 0; font-size: 12px; color: var(--muted); }
.form-section-title {
  grid-column: 1 / -1; margin: 12px 0 4px; font-size: 15px; font-weight: 800; color: var(--ink);
}
.form-actions { margin-top: 24px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; }
.checkbox-row input { width: auto; margin-top: 4px; }

.upload-zone {
  border: 2px dashed var(--line); border-radius: var(--radius-md); padding: 28px 16px;
  text-align: center; background: var(--cream-soft); cursor: pointer;
}
.upload-zone strong { display: block; margin-bottom: 6px; color: var(--ink); }
.upload-zone span { font-size: 13px; color: var(--muted); }

.faq-block { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger {
  width: 100%; text-align: left; padding: 18px 44px 18px 0; border: none; background: none;
  font: inherit; font-weight: 600; color: var(--ink); cursor: pointer; position: relative;
}
.faq-trigger::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s;
}
.faq-trigger[aria-expanded="true"]::after { transform: translateY(-20%) rotate(225deg); }
.faq-panel { display: none; padding: 0 0 18px; color: var(--muted); font-size: 15px; }
.faq-panel.is-open { display: block; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--line);
}
.value-card h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.value-card p { margin: 0; font-size: 15px; color: var(--muted); }

.site-footer { margin-top: 0; background: var(--white); }
.footer-wave {
  height: 48px; background: var(--cream-page);
  clip-path: polygon(0 80%, 8% 70%, 18% 85%, 28% 60%, 40% 78%, 52% 55%, 64% 75%, 76% 58%, 88% 72%, 100% 50%, 100% 100%, 0 100%);
}
.footer-yellow { background: var(--yellow); padding: 36px 24px 40px; }
.footer-yellow__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
}
.footer-logo-tile {
  width: 96px; height: 96px; border-radius: 50%; background: var(--white); padding: 4px;
  display: grid; place-items: center; box-shadow: var(--shadow-card); flex-shrink: 0;
}
.footer-logo-tile img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.footer-yellow h2 {
  margin: 0 0 6px; font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 900; color: var(--ink);
}
.footer-yellow p { margin: 0; font-size: 14px; color: var(--ink-soft); }

@media (max-width: 760px) {
  .footer-yellow__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

.footer-social { padding: 28px 24px; text-align: center; background: var(--white); }
.footer-social h3 { margin: 0 0 16px; font-size: 15px; font-weight: 700; color: var(--muted); }
.social-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-btn {
  width: 46px; height: 46px; border-radius: 50%; background: var(--yellow);
  display: grid; place-items: center; text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: 13px; transition: transform 0.15s;
}
.social-btn:hover { transform: translateY(-2px); color: var(--ink); }

.footer-links { padding: 24px 24px 32px; border-top: 1px solid var(--line); }
.footer-links__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; align-items: center;
}
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }

.pill-legal {
  display: inline-flex; padding: 8px 14px; border-radius: 999px; background: var(--forest);
  color: var(--white); font-size: 12px; font-weight: 700; text-decoration: none;
}
.pill-legal:hover { color: var(--white); filter: brightness(1.08); }

.copy-line { text-align: center; font-size: 12px; color: #a8a8a8; padding: 8px 16px 28px; }

.toast {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px;
  background: var(--cream-soft); border: 1px solid var(--line); font-size: 14px;
}
.toast.is-visible { display: block; }
.toast.toast--error { border-color: #f5c6cb; background: #fdecef; color: #842029; }
button[type="submit"][aria-busy="true"] { opacity: 0.72; cursor: wait; }

.honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Pagina sedi */
.stores-intro { max-width: 640px; margin-bottom: 32px; color: var(--muted); }
.stores-intro p { margin: 0; line-height: 1.6; }

.stores-layout {
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr); gap: 28px; align-items: start;
}

.store-list { display: flex; flex-direction: column; gap: 16px; }

.store-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.store-card h2 { margin: 0 0 10px; font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }

.store-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 10px; border-radius: 6px;
  background: var(--yellow-soft); color: var(--ink); margin-bottom: 14px;
}

.store-address {
  margin: 0 0 18px; font-size: 16px; line-height: 1.55; color: var(--ink-soft);
}

.store-hours { margin: 0 0 20px; }
.store-hours dt {
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); margin-bottom: 6px;
}
.store-hours dd { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

.store-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.store-map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-card); background: var(--cream-soft); min-height: 320px;
}
.store-map-wrap iframe {
  width: 100%; height: min(460px, 58vh); min-height: 320px; border: 0; display: block;
}

.store-map-note {
  margin-top: 12px; font-size: 13px; color: var(--muted);
}

@media (max-width: 920px) {
  .stores-layout { grid-template-columns: 1fr; }
  .store-map-wrap iframe { height: 360px; min-height: 280px; }
}

/* Cookie consent banner */
body.cookie-banner-open {
  padding-bottom: clamp(112px, 18vh, 180px);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 20, 20, 0.94);
  color: var(--cream-soft);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.18);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  flex: 1 1 260px;
  max-width: 640px;
  color: rgba(247, 246, 242, 0.92);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner__link {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-right: 4px;
}

.cookie-banner__link:hover {
  color: var(--yellow-soft);
}

.cookie-banner .cookie-banner__btn {
  white-space: nowrap;
}

.cookie-banner .cookie-banner__btn--reject {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.cookie-banner .cookie-banner__btn--reject:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width: 560px) {
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }
  .cookie-banner .cookie-banner__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Legal / cookie policy page */
.legal-page .legal-body {
  max-width: 760px;
  margin: 0 auto 48px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

.legal-h2 {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.legal-body p {
  margin: 0 0 14px;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0 0 14px;
  padding-left: 1.25rem;
}

.legal-list li {
  margin-bottom: 10px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}
