/* Lar — HU storefront */
:root {
  --cream: #fff8e7;
  --cream-deep: #fff0cc;
  --white: #fffef9;
  --orange: #e97b2c;
  --orange-dark: #c85f18;
  --orange-soft: #ffd7a8;
  --text: #2e271f;
  --text-muted: #5c5349;
  --cyan: #1fb3c9;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(46, 39, 31, 0.08);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cyan);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 123, 44, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--orange);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-main a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-main a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233, 123, 44, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 123, 44, 0.4);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--orange-soft);
}

.btn-ghost:hover {
  background: var(--cream-deep);
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 4rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
  border: 1px solid var(--orange-soft);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse at 50% 40%, var(--orange-soft), transparent 65%);
  opacity: 0.55;
  z-index: -1;
  border-radius: 50%;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Full-bleed banners */
.banner-full {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 39, 31, 0.75) 0%,
    rgba(46, 39, 31, 0.2) 45%,
    rgba(46, 39, 31, 0.1) 100%
  );
  pointer-events: none;
}

.banner-caption {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  color: var(--white);
}

.banner-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  max-width: 16ch;
  line-height: 1.2;
}

.banner-caption p {
  margin: 0;
  max-width: 42ch;
  font-size: 1.1rem;
  opacity: 0.95;
}

@media (max-width: 700px) {
  .banner-full {
    min-height: 70vh;
  }
}

/* Sections */
section:not(.banner-full) {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 60ch;
}

/* Product grid */
.product-grid-main {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 800px) {
  .product-grid-main {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-featured {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.product-featured img {
  border-radius: calc(var(--radius) - 4px);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.25rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--orange-dark);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tag-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  background: var(--cream-deep);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.variations h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.variation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card-var {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.card-var:hover {
  transform: translateY(-4px);
}

.card-var img {
  aspect-ratio: 1;
  object-fit: cover;
}

.card-var .card-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.card-var h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.card-var p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-var .from {
  display: block;
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--orange-dark);
}

/* USP grid */
.usps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .usps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usp {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(233, 123, 44, 0.12);
}

.usp h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.usp p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.usp-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: var(--cream-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Forms */
.forms-block {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .forms-block {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.form-panel > p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(46, 39, 31, 0.15);
  font-family: var(--font);
  font-size: 1rem;
  background: var(--cream);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233, 123, 44, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  display: none;
}

.form-msg.ok {
  display: block;
  background: #e8f7ef;
  color: #1d5c3a;
  border: 1px solid #9dceb8;
}

.form-msg.err {
  display: block;
  background: #fdecec;
  color: #8f2d2d;
  border: 1px solid #edb4b4;
}

/* Contact strip */
.contact-strip {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .contact-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-strip h3 {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
}

.contact-strip p {
  margin: 0;
  font-size: 0.95rem;
}

/* Cookie policy article */
.cookie-article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

.cookie-article h2 {
  font-family: var(--font-display);
  margin-top: 0;
}

.cookie-article h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
}

.cookie-article ul {
  padding-left: 1.25rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--cream-deep), var(--orange-soft));
  padding: 3rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  color: var(--orange-dark);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--orange-dark);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46, 39, 31, 0.12);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Cookie consent bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--orange-soft);
  box-shadow: 0 -12px 40px rgba(46, 39, 31, 0.12);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

/* Szakcikk (blog) */
.article-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 40%);
  border-top: 1px solid rgba(233, 123, 44, 0.18);
}

.article-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-card-inner {
  display: grid;
  gap: 0;
}

@media (min-width: 860px) {
  .article-card-inner {
    grid-template-columns: minmax(300px, 520px) 1fr;
    align-items: stretch;
  }
}

.article-media {
  margin: 0;
  background: var(--cream-deep);
  line-height: 0;
  min-height: 100%;
}

.article-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-height: 280px;
  height: 100%;
}

@media (max-width: 599px) {
  .article-media-grid {
    grid-template-columns: 1fr;
  }
}

.article-media-item {
  margin: 0;
  height: 100%;
  min-height: 200px;
}

.article-media-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 2rem 2rem 2.25rem;
}

@media (max-width: 859px) {
  .article-body {
    padding: 1.75rem 1.5rem 2rem;
  }
}

.article-body .section-kicker {
  margin-bottom: 0.35rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.article-prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.article-prose p:last-child {
  margin-bottom: 0;
}

.article-prose strong {
  color: var(--text);
}

.article-note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--cream-deep);
  border: 1px solid rgba(233, 123, 44, 0.2);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Olvasói hozzászólások */
.comments-section {
  background: var(--cream-deep);
  border-top: 1px solid rgba(233, 123, 44, 0.15);
}

.comments-section .section-head {
  margin-bottom: 1.5rem;
}

.comments-intro {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 62ch;
  font-size: 0.98rem;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.45rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(46, 39, 31, 0.06);
  border: 1px solid rgba(233, 123, 44, 0.1);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--orange-soft);
  background: var(--cream-deep);
}

.comment-main {
  min-width: 0;
  flex: 1;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin-bottom: 0.65rem;
}

.comment-meta strong {
  font-size: 1rem;
  color: var(--text);
}

.comment-meta time {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.comment-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.comments-disclosure {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Belső / jogi oldalak */
.page-wrap {
  padding-bottom: 3rem;
}

.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 65ch;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.legal-doc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.legal-doc .meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(46, 39, 31, 0.1);
}

.back-home {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}