:root {
  --ink: #171717;
  --muted: #68615d;
  --paper: #fffaf7;
  --rose: #e97d93;
  --coral: #ff9472;
  --moss: #7a9b78;
  --mint: #d7eadf;
  --plum: #51304f;
  --gold: #d7a95f;
  --white: #ffffff;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 24px 70px rgba(80, 45, 60, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  /* Offset for fixed navigation header */
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 148, 114, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(122, 155, 120, 0.22), transparent 24rem),
    linear-gradient(135deg, #fff7f1 0%, #fffaf7 42%, #edf7ef 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(233, 125, 147, 0.28), rgba(255, 148, 114, 0.12) 35%, transparent 70%);
  transition: opacity 0.25s ease;
  mix-blend-mode: multiply;
}

.cursor-glow.active {
  opacity: 1;
}

.cursor-glow.hover {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(122, 155, 120, 0.24), rgba(233, 125, 147, 0.16) 38%, transparent 72%);
}

.site-shell {
  position: relative;
  z-index: 3;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.74);
  box-shadow: 0 18px 50px rgba(68, 43, 50, 0.12);
  backdrop-filter: blur(20px);
  transition: min-height 0.28s ease, padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.nav.scrolled {
  min-height: 58px;
  padding: 9px 12px 9px 18px;
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 250, 247, 0.9);
  box-shadow: 0 14px 40px rgba(68, 43, 50, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100px;
  height: 44px;
}

.brand-logo-wrap {
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, 0.05);
  box-shadow: 0 10px 28px rgba(80, 45, 60, 0.16);
}

.brand-logo-wrap img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand:hover .brand-logo-wrap {
  transform: translateY(-50%) scale(1.08) rotate(-3deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #463f3b;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.28s ease, transform 0.2s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.86);
  color: var(--rose);
  box-shadow: 0 6px 14px rgba(233, 125, 147, 0.12);
}

.nav-cta,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta {
  padding: 0 16px;
  color: white;
  background: #171717;
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.18);
  white-space: nowrap;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 116px 24px 58px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.98) 0%, rgba(255, 250, 247, 0.78) 36%, rgba(255, 250, 247, 0.16) 72%),
    linear-gradient(0deg, rgba(255, 250, 247, 0.94) 0%, rgba(255, 250, 247, 0.06) 34%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.1) contrast(1.02);
  transform: scale(1.05);
  animation: cinematic 18s ease-in-out infinite alternate;
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  color: #5b4a43;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(233, 125, 147, 0.16);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 26px;
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.35rem, 8vw, 7.8rem);
  line-height: 0.9;
  color: #171717;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: #5f5752;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.72;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  isolation: isolate;
  padding: 0 18px;
  overflow: hidden;
}

.btn-primary {
  color: white;
  background: #171717;
  box-shadow: 0 18px 32px rgba(23, 23, 23, 0.18);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -120% -30%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.45) 48%, transparent 62%);
  transform: translateX(-55%);
  animation: sheen 3.6s ease-in-out infinite;
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid rgba(23, 23, 23, 0.13);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
}

.btn svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero-proof {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 142px));
  gap: 12px;
}

.proof-item {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
}

.proof-item strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.floating-card {
  position: relative;
  min-height: 470px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  animation: floaty 6s ease-in-out infinite;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  pointer-events: none;
}

.floating-card img {
  width: 100%;
  height: 324px;
  object-fit: cover;
  object-position: top center;
  /* ← ez a legfontosabb! */
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(90, 54, 64, 0.18);
}

.floating-card .tag {
  position: absolute;
  top: 38px;
  left: 36px;
  padding: 8px 10px;
  border-radius: 8px;
  color: white;
  background: rgba(23, 23, 23, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-copy {
  padding: 18px 6px 4px;
  display: flex;
  flex-direction: column;
}

.card-copy strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.card-copy span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.card-btn {
  align-self: flex-end;
  margin-top: 14px;
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 6px;
}

section {
  padding: 92px 24px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h2 {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.marquee {
  display: flex;
  gap: 14px;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.34);
}

.marquee-track {
  display: flex;
  gap: 14px;
  min-width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(23, 23, 23, 0.72);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700;
  white-space: nowrap;
}

.marquee span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  box-shadow: 0 22px 60px rgba(69, 42, 48, 0.13);
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0px)) scale(1.03);
  transition: transform 0.8s cubic-bezier(.2, .7, .2, 1), filter 0.8s ease;
}

.category:hover img {
  transform: translateY(var(--parallax-y, 0px)) scale(1.08);
  filter: saturate(1.1);
}

.category::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.72), rgba(23, 23, 23, 0.08) 56%);
}

.category-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: white;
}

.category-content small {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.category-content p {
  max-width: 320px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-weight: 600;
}

.product-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(23, 23, 23, 0.96), rgba(81, 48, 79, 0.94)),
    url("../images/ok-5659011.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
}

.product-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 12%, rgba(255, 148, 114, 0.24), transparent 24rem);
  pointer-events: none;
}

.product-band .container {
  position: relative;
  z-index: 1;
}

.product-band .section-kicker {
  color: #ffc5b4;
}

.product-band .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product {
  position: relative;
  min-height: 430px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.28) 50%,
      transparent);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

.product:hover::before {
  left: 150%;
  transition: left 0.82s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.product:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 50px rgba(68, 43, 50, 0.16);
}

.product img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product img:hover {
  opacity: 0.92;
  transform: scale(1.01);
}

.product-info {
  padding: 18px 4px 0;
}

.product-info h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

.product-info p {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-weight: 500;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffe1d7;
  font-weight: 900;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  color: #171717;
  background: #fff4ed;
  font-size: 0.76rem;
  font-weight: 900;
}

.ritual {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.ritual-visual {
  position: relative;
  min-height: 560px;
}

.ritual-visual img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(var(--parallax-y, 0px)) scale(1.03);
}

.ritual-visual img:first-child {
  inset: 0 auto auto 0;
  width: 72%;
  height: 78%;
}

.ritual-visual img:last-child {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 48%;
  border: 10px solid var(--paper);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 42px rgba(68, 43, 50, 0.1);
}

.step-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  font-weight: 900;
}

.step h3 {
  font-size: 1.08rem;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.testimonials {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(215, 234, 223, 0.34));
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(68, 43, 50, 0.08);
  backdrop-filter: blur(16px);
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.quote p {
  margin: 18px 0;
  color: #3e3734;
  line-height: 1.65;
  font-weight: 650;
}

.quote strong {
  display: block;
  font-size: 0.9rem;
}

.quote span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.cta {
  padding-bottom: 38px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 38px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.78), rgba(23, 23, 23, 0.26)),
    url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center 42%;
  box-shadow: var(--shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 23, 23, 0.5), transparent 45%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}

.cta-content h2 {
  color: white;
}

.cta-content p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  font-weight: 600;
}

.newsletter {
  display: flex;
  gap: 10px;
  max-width: 520px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  outline: 0;
  backdrop-filter: blur(12px);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter .btn {
  min-width: 142px;
  color: #171717;
  background: white;
}

.contact {
  padding-top: 38px;
  background:
    radial-gradient(circle at 16% 18%, rgba(233, 125, 147, 0.16), transparent 23rem),
    linear-gradient(180deg, rgba(255, 250, 247, 0.2), rgba(255, 255, 255, 0.42));
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(68, 43, 50, 0.08);
  backdrop-filter: blur(16px);
}

.contact-info {
  min-height: 480px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.contact-info::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(233, 125, 147, 0.32), rgba(215, 169, 95, 0.34), rgba(122, 155, 120, 0.34), rgba(233, 125, 147, 0.32));
  filter: blur(2px);
  opacity: 0.72;
}

.contact-info h2 {
  margin-top: 12px;
}

.contact-info p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.contact-list {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: #171717;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item strong {
  font-size: 0.88rem;
}

.contact-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #3f3936;
  font-size: 0.84rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 250, 247, 0.78);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 142px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.55;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(233, 125, 147, 0.72);
  background: white;
  box-shadow: 0 0 0 4px rgba(233, 125, 147, 0.14);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.contact-actions .btn {
  min-width: 168px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 650;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 850;
}

footer {
  padding: 28px 24px 42px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  padding-top: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-details {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.socials a:hover {
  transform: translateY(-3px) rotate(12deg);
  background: white;
  border-color: rgba(233, 125, 147, 0.4);
  box-shadow: 0 6px 16px rgba(233, 125, 147, 0.18);
}

.socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematic {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.8%, 1%, 0);
  }
}

@keyframes sheen {

  0%,
  58% {
    transform: translateX(-55%);
  }

  100% {
    transform: translateX(55%);
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.7deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: center;
    min-height: 58px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(255, 250, 247, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 16px;
    gap: 8px;
    box-shadow: 0 20px 50px rgba(68, 43, 50, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 15;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-inner,
  .section-head,
  .ritual,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .floating-card {
    max-width: 440px;
  }

  .category-grid,
  .product-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .category:nth-child(2) {
    margin-top: 0;
  }

  .category {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: calc(100% - 20px);
    top: 10px;
    padding: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 92px 16px 42px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 250, 247, 0.96), rgba(255, 250, 247, 0.58)),
      linear-gradient(0deg, rgba(255, 250, 247, 0.95), rgba(255, 250, 247, 0.05) 42%);
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .floating-card {
    min-height: auto;
  }

  .floating-card img {
    height: 260px;
  }

  section {
    padding: 66px 16px;
  }

  .ritual-visual {
    min-height: 390px;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter .btn {
    min-width: 0;
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 22px;
  }

  .cta-panel {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --- Új Prémium Effektek és Kiegészítők --- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--rose), var(--coral), var(--gold));
  transition: width 0.08s ease-out;
}

.counter.pulse-complete {
  animation: counter-pulse 0.45s ease-out;
}

@keyframes counter-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
    color: var(--rose);
  }

  100% {
    transform: scale(1);
  }
}

section {
  position: relative;
}

.bg-section-number {
  position: absolute;
  top: 24px;
  right: 48px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 700;
  color: rgba(23, 23, 23, 0.038);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.bg-section-number.light {
  color: rgba(255, 255, 255, 0.022);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 250, 247, 0.74);
  box-shadow: 0 8px 32px rgba(68, 43, 50, 0.12);
  backdrop-filter: blur(20px);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field-error {
  border-color: var(--rose) !important;
  box-shadow: 0 0 0 4px rgba(233, 125, 147, 0.2) !important;
  animation: field-shake 0.4s ease;
}

@keyframes field-shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-6px);
  }

  40%,
  80% {
    transform: translateX(6px);
  }
}

@media (max-width: 920px) {
  .bg-section-number {
    top: 10px;
    right: 20px;
    font-size: clamp(6rem, 12vw, 9rem);
  }
}

/* --- 5 Luxus Kategóriás Digitális Effektus stílusok --- */

/* 1. Görgetésre színeződő szavak */
.scroll-text-reveal {
  opacity: 1;
  /* override reveal */
  transform: none;
  /* override reveal */
}

.scroll-text-reveal .reveal-word {
  color: rgba(23, 23, 23, 0.14);
  transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-shadow 0.45s ease;
  display: inline-block;
  margin-right: 0.28em;
}

.scroll-text-reveal .reveal-word.active {
  color: var(--ink);
  text-shadow: 0 2px 8px rgba(23, 23, 23, 0.08);
}

.product-band .scroll-text-reveal .reveal-word {
  color: rgba(255, 255, 255, 0.22);
}

.product-band .scroll-text-reveal .reveal-word.active {
  color: white;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.38);
}

/* 2. Többrétegű parallax Hero Badge */
.hero-card-wrap {
  position: relative;
  width: 100%;
  align-self: start;
  margin-top: 34px;
  /* Hogy a menüsor alatt legyen kb. 50px-re desktopon */
}

.floating-badge {
  position: absolute;
  bottom: -22px;
  left: -48px;
  /* Overlaps nicely over the bottom-left boundary of the floating card */
  z-index: 10;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 250, 247, 0.84);
  box-shadow: 0 16px 42px rgba(80, 45, 60, 0.16);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  transition: transform 0.12s ease-out;
}

.badge-content strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--rose);
}

.badge-content span {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 3. Magnetic Glow Buttons */
.btn,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(233, 125, 147, 0.38) 0%, rgba(255, 148, 114, 0.12) 35%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.btn:hover .btn-glow,
.nav-cta:hover .btn-glow {
  opacity: 1;
}

.btn svg,
.btn strong,
.btn span:not(.btn-glow),
.nav-cta svg,
.nav-cta span:not(.btn-glow) {
  position: relative;
  z-index: 2;
}

/* 4. Editorial belépő keret és Title Reveal */
.editorial-frame {
  position: fixed;
  inset: 12px;
  border: 1px solid rgba(215, 169, 95, 0.28);
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 1.4s ease 0.2s, transform 1.4s cubic-bezier(0.15, 0.85, 0.15, 1) 0.2s;
}

body.loaded .editorial-frame {
  opacity: 1;
  transform: scale(1);
}

.editorial-title {
  opacity: 1 !important;
  /* override reveal */
  transform: none !important;
  /* override reveal */
  font-size: clamp(2.2rem, 4.2vw, 3.6rem) !important;
  line-height: 1.05;
}

.editorial-title .title-word-container {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
  padding: 0.18em 0.12em;
  margin-top: -0.18em;
  margin-bottom: -0.18em;
  margin-left: -0.12em;
}

.editorial-title .title-word {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.4s cubic-bezier(0.15, 0.85, 0.15, 1);
}

body.loaded .editorial-title .title-word {
  transform: translateY(0);
}

/* 5. Dynamic Step Accordion */
.step {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.step.active-step {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(233, 125, 147, 0.28);
  box-shadow: 0 16px 38px rgba(68, 43, 50, 0.08);
}

.ritual-img-main,
.ritual-img-sub {
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.65s ease;
}

/* Adjust overlay badge in responsive mobile */
@media (max-width: 640px) {
  .floating-badge {
    width: 88px;
    height: 88px;
    left: -22px;
    bottom: -14px;
  }

  .badge-content strong {
    font-size: 1.1rem;
  }

  .badge-content span {
    font-size: 0.55rem;
  }

  .editorial-frame {
    inset: 6px;
  }
}

/* --- Részletek Modal és Szöveges Link Gomb Stílusok --- */

.text-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--rose);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
  display: inline-block;
  margin-left: 4px;
}

.text-link-btn:hover {
  color: var(--coral);
}

.text-link-btn:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
  border-radius: 2px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(23, 23, 23, 0.45);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: rgba(255, 250, 247, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(80, 45, 60, 0.25);
  backdrop-filter: blur(24px);
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.modal-close-btn:hover {
  background: white;
  transform: rotate(90deg);
  border-color: rgba(233, 125, 147, 0.4);
  color: var(--rose);
}

.modal-close-btn:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.modal-content {
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 32px;
  align-items: start;
}

.modal-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(80, 45, 60, 0.15);
}

.modal-media img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-kicker {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#modalTitle {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 20px 0 0;
  text-align: center;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 18px;
}

.modal-divider {
  border: 0;
  height: 1px;
  background: rgba(23, 23, 23, 0.08);
  margin: 0 0 18px;
}

.modal-details {
  color: #3e3734;
  line-height: 1.65;
  font-weight: 500;
  font-size: 0.96rem;
}

.modal-details p {
  margin: 0 0 20px;
}

.modal-steps-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.modal-step-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.modal-step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  font-weight: 900;
  font-size: 0.9rem;
}

.modal-step-item h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--ink);
}

.modal-step-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal-media img {
    max-height: 280px;
  }

  .modal-content {
    padding: 24px;
  }
}

/* --- Head Spa Termékjellemzők Rács --- */

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.spec-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffc5b4;
  display: grid;
  place-items: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.spec-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 920px) {
  .product-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
    padding-top: 42px;
    gap: 20px 24px;
  }
}

@media (max-width: 640px) {
  .product-specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --- Termék Műszaki Adatok Táblázat --- */

.product-specs-table {
  margin-top: 24px;
  background: rgba(23, 23, 23, 0.04);
  border-radius: 8px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.product-specs-table h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
}

.product-specs-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.product-specs-table li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  border-bottom: 1px dashed rgba(23, 23, 23, 0.08);
  padding-bottom: 6px;
}

.product-meta .btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.8rem;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .product-specs-table ul {
    grid-template-columns: 1fr;
  }
}

/* --- Mobil Navigáció és Hamburger Menü --- */

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 30;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-only-cta {
  display: none !important;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }
  
  .desktop-only-cta {
    display: none !important;
  }
  
  .mobile-only-cta {
    display: inline-flex !important;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
}

/* --- Checkbox és Adatvédelmi Link Gomb Stílusok --- */

.checkbox-field {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 650;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: auto;
  border-radius: 4px;
  border: 1px solid rgba(23, 23, 23, 0.15);
  cursor: pointer;
  accent-color: var(--rose);
}

.privacy-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--rose);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline;
}

.privacy-link-btn:hover {
  color: var(--coral);
}

/* --- Prémium Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper); /* Megegyezik a body hátterével */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 140px;
}

.loader-logo-wrap {
  width: 80px;
  height: 80px;
  animation: loader-pulse 2s ease-in-out infinite;
}

.loader-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-line {
  width: 100%;
  height: 2px;
  background: rgba(23, 23, 23, 0.06);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--coral));
  animation: loader-slide 1.4s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
  border-radius: 2px;
}

@keyframes loader-pulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes loader-slide {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}