/*
 * 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: 1px;
  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); }

/* ── 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__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__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;
}
.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: 24rem;
  font-weight: 300;
}
.lilo-hero__cta { display: flex; gap: 1rem; padding-top: 0.5rem; }
.lilo-hero__carousel-wrap {
  display: none;
  transform: scale(1.09) translateY(-20px);
  transform-origin: center;
}
@media (min-width: 768px) { .lilo-hero__carousel-wrap { display: block; } }

/* ── Carousel ──────────────────────────────────────────────────────────────── */
.lilo-carousel { position: relative; }
.lilo-carousel__frame {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  border: 1px solid rgba(201,169,110,0.3);
  pointer-events: none;
  z-index: 0;
}
.lilo-carousel__track {
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.lilo-carousel__slides-inner {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.lilo-carousel__slide {
  flex: 0 0 100%;
  position: relative;
}
.lilo-carousel__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.lilo-carousel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lilo-carousel__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  color: #FAF7F2;
  text-shadow: 0 1px 3px #000, 0 -1px 3px #000, 1px 0 3px #000, -1px 0 3px #000;
  margin: 0;
}
.lilo-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250,247,242,0.8);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #2C2A27;
  transition: background 0.2s;
}
.lilo-carousel__btn:hover { background: #FAF7F2; }
.lilo-carousel__btn--prev { left: 0.5rem; }
.lilo-carousel__btn--next { right: 0.5rem; }
.lilo-carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.lilo-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250,247,242,0.5);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  padding: 0;
}
.lilo-carousel__dot--active {
  background: #FAF7F2;
  width: 16px;
  border-radius: 3px;
}

/* ── About Section ─────────────────────────────────────────────────────────── */
.lilo-about {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #FAF7F2;
}
.lilo-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) { .lilo-about__grid { grid-template-columns: 1fr 1fr; } }
.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 { aspect-ratio: 3/4; grid-column: 1; }
.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 {
  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 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;
}
.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;
}

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.lilo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.2);
  margin-top: 5rem;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.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__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .lilo-testimonials__grid { grid-template-columns: 1fr 1fr; } }
.lilo-testimonial {
  background: #fff;
  border: 1px solid rgba(201,169,110,0.15);
  padding: 1.75rem;
  position: relative;
}
.lilo-testimonial__quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.75rem;
  color: rgba(201,169,110,0.2);
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  line-height: 1;
}
.lilo-testimonial__text {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: rgba(44,42,39,0.75);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.lilo-testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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;
  margin-top: 2px;
}
.lilo-testimonial__platform span {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(44,42,39,0.4);
}
.lilo-testimonial__reaction {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(44,42,39,0.4);
}

/* ── Contact Section ───────────────────────────────────────────────────────── */
.lilo-contact {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: #FAF7F2;
}
@media (min-width: 768px) { .lilo-contact { padding-bottom: 8rem; } }
.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.6);
  max-width: 28rem;
  font-weight: 300;
  margin-top: 1rem;
}
.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: 2rem;
  height: 2rem;
  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.2); }
.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.2em;
  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__textarea { rows: 5; }
.lilo-form__submit { margin-top: 0.5rem; 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 {
  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__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: 0.5rem; }
.lilo-legal__h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #2C2A27;
  font-weight: 400;
}
.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 {
  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: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.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;
}
.lilo-woo-wrapper .button,
.lilo-woo-wrapper .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.625rem 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}
.lilo-woo-wrapper .button:hover { background: #8a5568; color: #FAF7F2; }

/* 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; }

/* ── 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;
}
