/*
 * LILO Crochet Creations — WordPress Theme CSS
 * Design: "Pressed Botanicals" — Artisan Editorial
 * Palette: Cream #FAF7F2 | Dark #2C2A27 | Mauve #A0677A | Gold #C9A96E | Sage #8A9A7E
 */

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: #FAF7F2;
  color: #2C2A27;
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
}

img { display: block; max-width: 100%; height: auto; }
a { color: #A0677A; text-decoration: none; transition: color 0.3s; }
a:hover { color: #8a5568; }
p { margin: 0; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.lilo-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 640px) {
  .lilo-container { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .lilo-container { padding-left: 4rem; padding-right: 4rem; max-width: 1400px; }
}

/* ── Utility classes ───────────────────────────────────────────────────────── */
.lilo-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A96E;
}
.lilo-body-text {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: rgba(44,42,39,0.7);
  font-weight: 300;
  line-height: 1.7;
}
.lilo-divider-line {
  width: 4rem;
  height: 2px;
  background: #C9A96E;
}
.lilo-divider-line--short { width: 3rem; }
.lilo-divider-line--center { margin: 1rem auto 0; }
.lilo-link { color: #A0677A; text-decoration: underline; text-underline-offset: 3px; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.lilo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}
.lilo-btn--primary {
  padding: 0.75rem 1.75rem;
  background: #A0677A;
  color: #FAF7F2;
}
.lilo-btn--primary:hover { background: #8a5568; color: #FAF7F2; }
.lilo-btn--outline {
  padding: 0.625rem 1.5rem;
  border: 1px solid #A0677A;
  color: #A0677A;
  background: transparent;
}
.lilo-btn--outline:hover { background: #A0677A; color: #FAF7F2; }
.lilo-btn--outline-white {
  padding: 0.625rem 1.5rem;
  border: 1px solid #FAF7F2;
  color: #FAF7F2;
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px #000, 0 -1px 3px #000, 1px 0 3px #000, -1px 0 3px #000;
}
.lilo-btn--outline-white:hover { background: #FAF7F2; color: #2C2A27; text-shadow: none; }
.lilo-btn:disabled, .lilo-btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* ── Botanical Divider ─────────────────────────────────────────────────────── */
.lilo-botanical-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.lilo-botanical-divider--flip { transform: scaleX(-1); }

/* ── Anchor scroll offset (fixed header compensation) ──────────────────────── */
#about, #contact { scroll-margin-top: 72px; }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.lilo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.lilo-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.lilo-nav__logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lilo-nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-decoration: none;
}
.lilo-nav__logo-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: #2C2A27;
  text-transform: uppercase;
}
.lilo-nav__logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A0677A;
}
.lilo-nav__sep {
  width: 1px;
  height: 1rem;
  background: rgba(201,169,110,0.5);
  flex-shrink: 0;
}
.lilo-nav__social {
  color: rgba(44,42,39,0.5);
  display: flex;
  align-items: center;
  transition: color 0.3s;
  text-decoration: none;
}
.lilo-nav__social:hover { color: #A0677A; }
.lilo-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .lilo-nav__links { display: flex; } }
.lilo-nav__links p { margin: 0; padding: 0; }
.lilo-nav__link {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.7);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.lilo-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #A0677A;
  transition: width 0.3s;
}
.lilo-nav__link:hover { color: #A0677A; }
.lilo-nav__link:hover::after { width: 100%; }
.lilo-nav__woo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lilo-nav__woo-btn {
  position: relative;
  color: rgba(44,42,39,0.6);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s;
}
.lilo-nav__woo-btn:hover { color: #A0677A; }
.lilo-nav__woo-count {
  position: absolute;
  top: -6px;
  right: -7px;
  background: #A0677A;
  color: #FAF7F2;
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lilo-nav__woo-count:not(:empty) { display: flex; }
.lilo-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
@media (min-width: 768px) { .lilo-nav__hamburger { display: none; } }
.lilo-nav__hamburger span {
  display: block;
  height: 1px;
  background: #2C2A27;
  transition: width 0.3s;
}
.lilo-nav__hamburger span:nth-child(1) { width: 20px; }
.lilo-nav__hamburger span:nth-child(2) { width: 12px; }
.lilo-nav__hamburger span:nth-child(3) { width: 20px; }
.lilo-nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.lilo-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.lilo-nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.lilo-nav__mobile {
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.3s, transform 0.3s;
}
.lilo-nav__mobile[aria-hidden="true"] { display: none; }
.lilo-nav__mobile-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.lilo-nav__mobile-link:hover { color: #A0677A; }

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.lilo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lilo-hero__bg {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  top: -37px;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
@media (max-width: 767px) {
  .lilo-hero__bg {
    background-image: url('/wp-content/themes/lilo-crochet/images/hero-background-mobile.webp') !important;
  }
}
.lilo-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,247,242,0.3);
  z-index: 1;
}
.lilo-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 8rem;
}
@media (min-width: 768px) {
  .lilo-hero__grid { grid-template-columns: 1fr 1fr; }
}
.lilo-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lilo-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #2C2A27;
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-top: 90px;
}
.lilo-hero__subtitle {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #A0677A;
}
.lilo-hero__desc {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: rgba(44,42,39,0.7);
  line-height: 1.7;
  max-width: 100%;
  font-weight: 300;
}
.lilo-hero__cta { display: flex; gap: 1rem; padding-top: 0.5rem; }
.lilo-hero__carousel-wrap {
  display: flex;
  flex-direction: column;
  transform: none;
  height: clamp(450px, 52.5vh, 630px);
  margin-left: 0;
}
@media (min-width: 768px) {
  .lilo-hero__carousel-wrap {
    transform: scale(1.09) translateY(-20px);
    transform-origin: center;
    height: clamp(460px, 74vh, 640px);
    margin-left: -3rem;
  }
}

/* ── Carousel (Polaroid Stack) ─────────────────────────────────────────────── */
.lilo-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0.75rem 1rem 0.75rem;
  gap: 0.75rem;
}
.lilo-carousel__stack {
  position: relative;
  width: 90%;
  flex: 1;
}
.lilo-carousel__card {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.6s, filter 0.6s;
}
.lilo-carousel__card[data-offset="0"] {
  transform: translateX(0) translateY(0) rotate(-1.5deg) scale(1);
  z-index: 3;
  opacity: 1;
  filter: none;
}
.lilo-carousel__card[data-offset="1"] {
  transform: translateX(7%) translateY(2%) rotate(3deg) scale(0.95);
  z-index: 2;
  opacity: 0.6;
  filter: saturate(0.85);
}
.lilo-carousel__card[data-offset="2"] {
  transform: translateX(13%) translateY(4%) rotate(5.5deg) scale(0.9);
  z-index: 1;
  opacity: 0.3;
  filter: saturate(0.85);
}
.lilo-carousel__card-polaroid {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 0.5rem 0.5rem 4.25rem;
  border: 1px solid rgba(201,169,110,0.25);
  position: relative;
  box-shadow: 0 8px 28px rgba(44,42,39,0.2), 0 2px 6px rgba(44,42,39,0.1);
}
.lilo-carousel__card[data-offset="1"] .lilo-carousel__card-polaroid,
.lilo-carousel__card[data-offset="2"] .lilo-carousel__card-polaroid {
  box-shadow: 0 2px 8px rgba(44,42,39,0.08);
}
.lilo-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.lilo-carousel__card-caption {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.lilo-carousel__card[data-offset="0"] .lilo-carousel__card-caption {
  opacity: 1;
}
.lilo-carousel__card-caption .lilo-btn {
  font-size: 0.58rem;
  padding: 0.3rem 0.85rem;
}
.lilo-carousel__card-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #2C2A27;
  font-style: italic;
  line-height: 1;
}
.lilo-carousel__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.lilo-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  border: none;
  background: rgba(44,42,39,0.2);
  cursor: pointer;
  padding: 0;
  transition: width 0.35s, background 0.35s;
}
.lilo-carousel__dot--active {
  background: #A0677A;
  width: 1.5rem;
  border-radius: 2px;
}

/* ── About Section ─────────────────────────────────────────────────────────── */
.lilo-about {
  padding-top: 0;
  padding-bottom: 2rem;
  background: #FAF7F2;
}
.lilo-about__header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lilo-about__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}
.lilo-about__images {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .lilo-about__images { width: 36%; }
}
.lilo-about__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.lilo-about__img { width: 100%; object-fit: cover; display: block; }
.lilo-about__img--tall {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}
.lilo-about__img-reveal-wrap {
  height: 0;
  overflow: hidden;
  transition: height 1s ease-in-out;
  margin-top: 0;
}
.lilo-about__img--reveal {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  transform: translateY(-100%);
  transition: transform 1s ease-in-out;
}
.lilo-about__img-reveal-wrap--open .lilo-about__img--reveal {
  transform: translateY(0);
}
.lilo-about__img-col { display: flex; flex-direction: column; gap: 0.75rem; }
.lilo-about__img--square { aspect-ratio: 1/1; object-position: center 30%; }
.lilo-about__quote-box {
  background: #A0677A;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.lilo-about__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: #FAF7F2;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
.lilo-about__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lilo-about__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #2C2A27;
  line-height: 1.2;
}
.lilo-about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 0.5rem;
}
.lilo-about__value {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.lilo-about__value-icon {
  color: #C9A96E;
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-style: normal;
}
.lilo-about__value span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.7);
  font-weight: 300;
}
.lilo-about__location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.lilo-about__location span {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.6);
  letter-spacing: 0.05em;
}

.lilo-about__expandable {
  height: 0;
  overflow: hidden;
  transition: height 0.75s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lilo-about__expand-btn,
.lilo-about__collapse-btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.lilo-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.2);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .lilo-stats { grid-template-columns: repeat(4, 1fr); }
}
.lilo-stats__item {
  background: #FAF7F2;
  padding: 1.5rem;
  text-align: center;
}
.lilo-stats__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  color: #A0677A;
  margin: 0;
}
.lilo-stats__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.5);
  margin-top: 0.25rem;
}

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.lilo-testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lilo-testimonials__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #2C2A27;
}
.lilo-testimonials__marquee {
  overflow: hidden;
}
.lilo-testimonials__track {
  display: flex;
  width: max-content;
  animation: lilo-marquee 45s linear infinite;
}
.lilo-testimonials__track:hover {
  animation-play-state: paused;
}
.lilo-testimonials__set {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}
@keyframes lilo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lilo-testimonial {
  flex: 0 0 clamp(280px, 44vw, 540px);
  background: #fff;
  border: 1px solid rgba(201,169,110,0.15);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.lilo-testimonial::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 88px;
  height: 88px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e53e3e'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(15deg);
  opacity: 0.05;
  pointer-events: none;
}
.lilo-testimonial__text {
  font-family: 'Jost', sans-serif;
  font-size: 0.9375rem;
  color: rgba(44,42,39,0.7);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.lilo-testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.lilo-testimonial__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: #2C2A27;
}
.lilo-testimonial__platform {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.lilo-testimonial__platform span {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(44,42,39,0.4);
}

/* ── Contact Section ───────────────────────────────────────────────────────── */
.lilo-contact {
  padding-top: 0;
  padding-bottom: 2rem;
  background: #FAF7F2;
}
.lilo-contact__header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.lilo-contact__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2C2A27;
  margin-top: 0.5rem;
}
.lilo-contact__subtext {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: rgba(44,42,39,0.7);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1rem;
  align-self: stretch;
}
.lilo-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .lilo-contact__grid { grid-template-columns: 1fr 1fr; } }
.lilo-contact__info { display: flex; flex-direction: column; gap: 2rem; }
.lilo-contact__item { display: flex; align-items: flex-start; gap: 1rem; }
.lilo-contact__icon-box {
  width: 2.4em;
  height: 2.4rem;
  border: 1px solid rgba(201,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.lilo-contact__item-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.4);
  margin-bottom: 2px;
}
.lilo-contact__item-val {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.8);
  transition: color 0.3s;
  text-decoration: none;
}
.lilo-contact__item-val:hover { color: #A0677A; }
.lilo-contact__social-section { padding-top: 1rem; border-top: 1px solid rgba(201,169,110,0.4); margin-top: -0.3rem; }
.lilo-contact__social-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.4);
  margin-bottom: 1rem;
}
.lilo-contact__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(44,42,39,0.6);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  transition: color 0.3s;
  margin-bottom: 0.75rem;
}
.lilo-contact__social-link:hover { color: #A0677A; }

/* ── Contact Form ──────────────────────────────────────────────────────────── */
.lilo-form { display: flex; flex-direction: column; gap: 1.25rem; }
.lilo-form__field { display: flex; flex-direction: column; }
.lilo-form__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.5);
  margin-bottom: 0.5rem;
}
.lilo-form__input,
.lilo-form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding: 0.625rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: #2C2A27;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  width: 100%;
}
.lilo-form__input::placeholder,
.lilo-form__textarea::placeholder { color: rgba(44,42,39,0.3); }
.lilo-form__input:focus,
.lilo-form__textarea:focus { border-bottom-color: #A0677A; }
.lilo-form__submit { margin-top: 0; justify-content: center; width: 100%; padding: 1rem 2rem; }
.lilo-form__feedback {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  min-height: 1.25rem;
}
.lilo-form__feedback--success { color: #4a7c59; }
.lilo-form__feedback--error { color: #c0392b; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.lilo-footer {
  background: #2C2A27;
  padding: 3rem 0;
}
.lilo-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .lilo-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.lilo-footer__brand { display: flex; flex-direction: column; gap: 0.25rem; }
.lilo-footer__logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #FAF7F2;
  letter-spacing: 0.3em;
  margin: 0;
}
.lilo-footer__logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin: 0;
}
.lilo-footer__center { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.lilo-footer__botanical { opacity: 0.6; }
.lilo-footer__copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.3);
  letter-spacing: 0.05em;
  margin: 0;
}
.lilo-footer__legal p { margin: 0; padding: 0; }
.lilo-footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
.lilo-footer__legal a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.lilo-footer__legal a:hover { color: #C9A96E; }
.lilo-footer__legal-sep {
  width: 1px;
  height: 0.75rem;
  background: rgba(250,247,242,0.2);
}
.lilo-footer__social { display: flex; gap: 1.25rem; }
.lilo-footer__social a {
  color: rgba(250,247,242,0.4);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.lilo-footer__social a:hover { color: #C9A96E; }

/* ── Cookie Consent ────────────────────────────────────────────────────────── */
.lilo-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.lilo-cookie.is-visible { transform: translateY(0); }
.lilo-cookie .lilo-container { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.lilo-cookie__basic,
.lilo-cookie__detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .lilo-cookie__basic {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.lilo-cookie__text {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.7);
  font-weight: 300;
  max-width: 42rem;
}
.lilo-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.lilo-cookie__details-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(44,42,39,0.5);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.lilo-cookie__details-btn:hover { color: #A0677A; }
.lilo-cookie__necessary-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(201,169,110,0.6);
  color: rgba(44,42,39,0.7);
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.lilo-cookie__necessary-btn:hover { border-color: #A0677A; color: #A0677A; }
.lilo-cookie__accept-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  background: #A0677A;
  color: #FAF7F2;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.lilo-cookie__accept-btn:hover { background: #8a5568; }
.lilo-cookie__toggles { display: flex; flex-direction: column; gap: 1rem; padding: 1rem 0; }
.lilo-cookie__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.lilo-cookie__toggle-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lilo-cookie__toggle-label strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2C2A27;
}
.lilo-cookie__toggle-label span {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(44,42,39,0.5);
}
.lilo-cookie__switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.lilo-cookie__switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.lilo-cookie__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(44,42,39,0.15);
  border-radius: 22px;
  transition: background 0.3s;
}
.lilo-cookie__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  bottom: 3px;
  background: #FAF7F2;
  border-radius: 50%;
  transition: transform 0.3s;
}
.lilo-cookie__switch input:checked + .lilo-cookie__slider { background: #A0677A; }
.lilo-cookie__switch input:checked + .lilo-cookie__slider::before { transform: translateX(18px); }
.lilo-cookie__switch--locked { opacity: 0.5; pointer-events: none; }
.lilo-cookie__switch--locked .lilo-cookie__slider { background: rgba(44,42,39,0.3); }

/* ── Legal Pages ───────────────────────────────────────────────────────────── */
.lilo-legal { min-height: 100vh; background: #FAF7F2; }
.lilo-legal__inner {
  max-width: 42rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.lilo-legal--wide .lilo-container { padding-top: 6rem; padding-bottom: 4rem; }
.lilo-legal__title-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.lilo-legal__title-block .lilo-legal__title { margin-bottom: 0; }
.lilo-legal__back {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A0677A;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.lilo-legal__back:hover { color: #8a5568; }
.lilo-legal__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #2C2A27;
  margin-bottom: 0.5rem;
}
.lilo-legal__divider {
  width: 3rem;
  height: 1px;
  background: #C9A96E;
  margin-bottom: 2.5rem;
}
.lilo-legal__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.8);
  line-height: 1.75;
}
.lilo-legal__section { display: flex; flex-direction: column; gap: 1rem; }
.lilo-legal__h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: #2C2A27;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.75rem;
}
.lilo-legal__h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: #C9A96E;
}
.lilo-legal__meta {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(44,42,39,0.5);
}
.lilo-legal__list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
}
.lilo-legal__items { display: flex; flex-direction: column; gap: 1.25rem; }
.lilo-legal__item { display: flex; gap: 1rem; }
.lilo-legal__bullet { color: #C9A96E; font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }
.lilo-legal__item-title { font-weight: 500; color: #2C2A27; margin-bottom: 0.25rem; }
.lilo-legal__contact-box {
  background: #F5F0E8;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lilo-legal__contact-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: #2C2A27;
}
.lilo-legal__contact-links p { margin: 0; padding: 0; }
.lilo-legal__contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.lilo-legal__contact-links a {
  color: #A0677A;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.lilo-legal__contact-links a:hover { text-decoration: underline; }
.lilo-legal__updated {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(44,42,39,0.3);
  margin-top: 4rem;
}

/* ── Shop / WooCommerce ────────────────────────────────────────────────────── */
.lilo-shop { padding-bottom: 6rem; }
.lilo-shop__header {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lilo-shop__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2C2A27;
}
.lilo-shop__subtext {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.6);
  max-width: 24rem;
  font-weight: 300;
}
.lilo-shop__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.lilo-shop__toolbar .wc-block-product-results-count,
.lilo-shop__toolbar .woocommerce-result-count {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(44,42,39,0.7);
  font-weight: 300;
  margin: 0;
}
.lilo-shop__toolbar .wc-block-catalog-sorting__options,
.lilo-shop__toolbar select,
.lilo-shop__toolbar .woocommerce-ordering select {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #2C2A27;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  text-align: center;
  text-align-last: center;
}
.lilo-shop__cat-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.lilo-shop__categories,
.lilo-shop__categories ul {
  display: contents;
}
.lilo-shop__categories ul { list-style: none; margin: 0; padding: 0; }
.lilo-shop__cat-all,
.lilo-shop__categories ul li a {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(160,103,122,0.35);
  border-radius: 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A0677A;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lilo-shop__cat-all:hover,
.lilo-shop__categories ul li a:hover,
.lilo-shop__categories ul li.current-cat a {
  background: #A0677A;
  color: #FAF7F2;
  border-color: #A0677A;
}
.lilo-shop__categories ul li.cat-item-none { display: none; }

.lilo-shop__cta {
  text-align: center;
  margin-top: 4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: rgba(44,42,39,0.6);
}

/* WooCommerce product grid override */
.lilo-woo-wrapper ul.products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .lilo-woo-wrapper ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lilo-woo-wrapper ul.products { grid-template-columns: repeat(3, 1fr); } }
.lilo-woo-wrapper ul.products li.product a img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; }
.lilo-woo-wrapper ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #2C2A27;
}
.lilo-woo-wrapper ul.products li.product .price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: #A0677A;
}
/* Termékkártya gomb — alap stílus (loop és single egyaránt) */
.lilo-woo-wrapper .button,
.lilo-woo-wrapper a.button,
.wc-block-components-product-button__button,
.wc-block-components-product-button .wp-block-button__link {
  background: #A0677A !important;
  color: #FAF7F2 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 2rem !important;
  padding: 0.625rem 1.25rem !important;
  width: 200px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  white-space: nowrap !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s;
}
.lilo-woo-wrapper .button:hover,
.lilo-woo-wrapper a.button:hover,
.wc-block-components-product-button__button:hover,
.wc-block-components-product-button .wp-block-button__link:hover {
  background: #8a5568 !important;
  color: #FAF7F2 !important;
}

/* Kártya és info: overflow visible hogy a gomb ne legyen levágva */
li.wc-block-product,
.lilo-product-card {
  overflow: visible !important;
}
.lilo-product-card__info {
  overflow: visible !important;
  margin-top: -1.25rem;
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  position: relative;
  z-index: 1;
}

/* Gomb: első elem a flex sorban, középen */
.lilo-product-card .wc-block-components-product-button {
  order: -1;
  align-self: center;
  margin-inline: auto;
  width: 200px;
  transform: translateY(-50%);
  margin-bottom: -1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  position: relative;
  z-index: 2;
}
.wc-block-product:hover .lilo-product-card .wc-block-components-product-button {
  opacity: 1;
  pointer-events: auto;
}

/* Termékkártya: cím és ár sötét szín */
.lilo-product-card .wp-block-post-title,
.lilo-product-card .wp-block-post-title a,
.lilo-product-card .woocommerce-loop-product__title,
.lilo-product-card h2,
.lilo-product-card h2 a,
.lilo-product-card h3 {
  color: #2C2A27 !important;
}
.lilo-product-card .wc-block-components-product-price,
.lilo-product-card .price,
.lilo-product-card .wc-block-components-product-price .woocommerce-Price-amount {
  color: #2C2A27 !important;
}

/* Kép zoom hover-re */
.lilo-product-card .wc-block-components-product-image,
.lilo-product-card .wp-block-woocommerce-product-image {
  overflow: hidden;
}
.lilo-product-card .wc-block-components-product-image img,
.lilo-product-card .wp-block-woocommerce-product-image img,
.lilo-product-card a img {
  transition: transform 0.45s ease !important;
}
.wc-block-product:hover .lilo-product-card .wc-block-components-product-image img,
.wc-block-product:hover .lilo-product-card .wp-block-woocommerce-product-image img,
.wc-block-product:hover .lilo-product-card a img {
  transform: scale(1.06) !important;
}

/* Hover: név és ár elhalványul */
.lilo-product-card__info > *:not(.wc-block-components-product-button) {
  transition: opacity 0.25s ease;
}
.wc-block-product:hover .lilo-product-card__info > *:not(.wc-block-components-product-button) {
  opacity: 0.5;
}

/* Single Product */
.lilo-single-product { min-height: 100vh; background: #FAF7F2; }
.lilo-single-product__inner { padding-top: 7rem; padding-bottom: 6rem; }
.lilo-single-product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .lilo-single-product__grid { grid-template-columns: 1fr 1fr; } }
.lilo-single-product__details { display: flex; flex-direction: column; gap: 1.25rem; }

/* WooCommerce single product overrides */
.lilo-single-product .woocommerce-product-gallery { position: relative; }
.lilo-single-product .woocommerce-product-gallery__image img { width: 100%; }
.lilo-single-product .price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; color: #A0677A; }
.lilo-single-product .single_add_to_cart_button {
  background: #A0677A;
  color: #FAF7F2;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.lilo-single-product .single_add_to_cart_button:hover { background: #8a5568; }

/* ── Blog Listing ──────────────────────────────────────────────────────────── */
.lilo-blog-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lilo-post-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.lilo-post-row:first-child { border-top: 1px solid rgba(201,169,110,0.25); }

/* featured image */
.lilo-post-row .wp-block-post-featured-image {
  flex: 0 0 220px;
  width: 220px;
  margin-right: 2rem !important;
}
.lilo-post-row .wp-block-post-featured-image img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  display: block;
}
.lilo-post-row .wp-block-post-featured-image a { display: block; }

/* when no featured image: content still aligns */
.lilo-post-row__content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

/* title */
.lilo-post-row .wp-block-post-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.25rem, 2vw, 1.625rem) !important;
  font-weight: 400 !important;
  line-height: 1.2;
  margin: 0 0 0.75rem 0 !important;
}
.lilo-post-row .wp-block-post-title a {
  color: #A0677A !important;
  text-decoration: none;
  transition: color 0.3s;
}
.lilo-post-row .wp-block-post-title a:hover {
  color: #8a5568 !important;
  text-decoration: underline;
}

/* excerpt */
.lilo-post-row .wp-block-post-excerpt {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  color: #2C2A27 !important;
  margin: 0 !important;
}
.lilo-post-row .wp-block-post-excerpt__excerpt {
  color: #2C2A27;
  margin: 0;
}
/* hide the "more" link since the title itself is the link */
.lilo-post-row .wp-block-post-excerpt__more-link { display: none; }

/* mobile */
@media (max-width: 600px) {
  .lilo-post-row {
    flex-direction: column !important;
  }
  .lilo-post-row .wp-block-post-featured-image {
    flex: none;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 1.25rem !important;
  }
  .lilo-post-row .wp-block-post-featured-image img {
    width: 100%;
    height: 200px;
  }
}

/* blog pagination */
.wp-block-query-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.wp-block-query-pagination a,
.wp-block-query-pagination-numbers .page-numbers {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #2C2A27;
  padding: 0.4rem 0.875rem;
  border: 1px solid rgba(201,169,110,0.5);
  text-decoration: none;
  transition: all 0.3s;
}
.wp-block-query-pagination a:hover { border-color: #A0677A; color: #A0677A; }
.wp-block-query-pagination .current { background: #C9A96E; border-color: #C9A96E; color: #fff; }


/* ── Scroll-in Animations ──────────────────────────────────────────────────── */
.lilo-anim {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
  transition-timing-function: ease-out;
}
.lilo-anim[data-anim="fade-up"]   { transform: translateY(2rem); }
.lilo-anim[data-anim="fade-left"] { transform: translateX(2.5rem); }
.lilo-anim.is-visible {
  opacity: 1;
  transform: none;
}
