.home-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 88px;

  background:
    radial-gradient(
      circle at 18% 55%,
      rgba(119, 85, 112, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, var(--color-bg, #f7f7f8) 0%, #f1f2f4 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  left: 4vw;
  bottom: -80px;
  width: 360px;
  height: 620px;
  background: url("/wp-content/uploads/2026/05/bg-shape.webp") center / contain
    no-repeat;
  opacity: 0.45;
  pointer-events: none;
}

.lumelle-container {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  /* max-height: calc(90vh - 124px); */
}

.home-hero__content {
  max-width: 560px;
}

.home-hero__eyebrow,
.home-advantages__eyebrow,
.home-portfolio__eyebrow,
.front-reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent, #6a4d67);
}

.home-gift-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}
.home-hero__eyebrow::before,
.home-advantages__eyebrow::before,
.home-portfolio__eyebrow::before,
.home-gift-banner__eyebrow::before,
.front-reviews__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.home-hero__title {
  margin: 0;
  font-size: clamp(3.2rem, 5.2vw, 5.25rem);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -0.06em;
  color: var(--color-text, #343036);
}

.home-hero__text {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 1rem;
  line-height: 1.78;
  font-weight: 400;
  color: var(--color-muted, #6d6870);
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.home-hero__btn {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--color-accent, #775570);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-hero__btn:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark, #5e4158);
  box-shadow: 0 18px 36px rgba(94, 65, 88, 0.22);
  color: #fff;
}

.home-hero__link {
  display: inline-flex;
  align-items: center;
  color: var(--color-text, #343036);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(
    90deg,
    var(--color-accent, #775570),
    var(--color-accent-light, #b997ad),
    var(--color-accent, #775570)
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  transition:
    background-position 0.35s ease,
    color 0.35s ease;
}

/* .home-portfolio__link:hover {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-position: 0 0;
} */

.home-hero__visual {
  min-width: 0;
}

.home-hero-slider {
  position: relative;
  width: 100%;

  height: clamp(420px, calc(100vh - var(--header-height, 150px) - 80px), 720px);
  max-height: calc(100vh - var(--header-height, 150px) - 80px);
  min-height: 420px;

  border-radius: 28px;
  overflow: hidden;
  background: #eee8ee;
  box-shadow: 0 28px 80px rgba(49, 37, 50, 0.14);
}

.home-hero-slider .swiper-wrapper,
.home-hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.home-hero-slide {
  position: relative;
  overflow: hidden;
}

.home-hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Нижній градієнт на фото */
.home-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(30, 23, 31, 0) 24%,
    rgba(30, 23, 31, 0.18) 45%,
    rgba(30, 23, 31, 0.5) 65%,
    rgba(30, 23, 31, 0.82) 84%,
    rgba(30, 23, 31, 0.96) 100%
  );
}
/* Текст поверх фото знизу */
.home-hero-slide__content {
  position: absolute;
  left: clamp(20px, 4vw, 46px);
  right: clamp(20px, 4vw, 46px);
  bottom: clamp(60px, 7vw, 55px);
  z-index: 3;
  max-width: 760px;
  padding: 0;
  background: transparent;
  color: #fff;
}

.home-hero-slide__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-lemon, #eef2a4);
  font-size: 0.95rem;
  font-weight: 200;
  padding-left: 22px;
}

.home-hero-slide__content h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.15vw, 2.35rem);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

/* Dots */
.home-hero-slider .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px !important;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-hero-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  opacity: 1;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.home-hero-slider .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--color-lemon, #eef2a4);
}
.home-hero-slide__brand-icon {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 4px;
}

/* =========================
   Advantages
========================= */

.home-advantages {
  position: relative;
  padding: clamp(30px, 5vw, 80px) 0;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(119, 85, 112, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff 0%, #f7f4f7 100%);
  overflow: hidden;
}

.home-advantages__head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.home-advantages__title,
.home-portfolio__title,
.front-instagram__title,
.front-reviews-title {
  margin: 0;
  color: var(--color-text, #343036);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.home-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.home-adv-card {
  position: relative;
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(119, 85, 112, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(49, 37, 50, 0.07);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.home-adv-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(119, 85, 112, 0.06);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.home-adv-card::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 20px;
  width: 123px;
  height: 198px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;

  background-image: url(/wp-content/uploads/2026/05/bg-shape.webp);
  overflow: visible;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.home-adv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 85, 112, 0.22);
  background: #fff;
  box-shadow: 0 26px 70px rgba(49, 37, 50, 0.11);
}

.home-adv-card:hover::after {
  transform: scale(1.18);
  background: rgba(119, 85, 112, 0.09);
}

.home-adv-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  height: 58px;
  margin-bottom: 24px;
}

.home-adv-card__icon img {
  width: auto;
  height: 40px;
  display: block;
  object-fit: contain;
}

.home-adv-card h3 {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0 0 12px;
  color: var(--color-text, #343036);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.home-adv-card p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0;
  color: var(--color-muted, #6d6870);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}
/* =========================
   Gift Banner
========================= */

.home-gift-banner {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(180deg, #f7f4f7 0%, #fff 100%);
  overflow: hidden;
}

.home-gift-banner::after {
  content: "";
  position: absolute;
  left: 32%;
  top: 0px;
  width: 411px;
  height: 645px;

  background-image: url("/wp-content/uploads/2026/05/bg-shape.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}
.home-gift-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: clamp(320px, 34vw, 430px);
  overflow: hidden;

  border-radius: 32px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #6f8193 0%, #5f7184 100%);

  box-shadow: 0 28px 80px rgba(49, 37, 50, 0.12);
}

.home-gift-banner__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 5vw, 72px);
}

.home-gift-banner__content h2 {
  max-width: 85%;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.home-gift-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 200px;
  min-height: 54px;
  margin-top: 36px;
  padding: 0 34px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  color: #6f8193;

  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 16px 36px rgba(49, 37, 50, 0.13);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.home-gift-banner__btn:hover {
  transform: translateY(-2px);
  background: var(--color-accent, #775570);
  color: #fff;
  box-shadow: 0 20px 46px rgba(49, 37, 50, 0.2);
}

.home-gift-banner__image {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
}

.home-gift-banner__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(95, 113, 132, 0.82) 0%,
      rgba(95, 113, 132, 0.18) 42%,
      rgba(95, 113, 132, 0) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(49, 37, 50, 0.08));
  pointer-events: none;
}

.home-gift-banner__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   Portfolio
========================= */

.home-portfolio {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0;
  /* background:
    radial-gradient(
      circle at 82% 18%,
      rgba(119, 85, 112, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #fff 0%, #f7f4f7 100%); */
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(119, 85, 112, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff 0%, #f7f4f7 100%);
  overflow: hidden;
}

.home-portfolio:before {
  content: "";
  position: absolute;
  left: -14%;
  top: 3%;
  width: 100%;
  height: 97%;
  background-image: url(/wp-content/uploads/2026/05/bg-shape.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

.home-portfolio__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.home-portfolio__link {
  display: inline-flex;
  align-items: center;

  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--color-accent, #b46787);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 14px 36px rgba(106, 77, 103, 0.22);
  margin-top: auto;
}

.home-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: clamp(14px, 2vw, 24px);
}
.home-portfolio-card.swiper-slide:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}
.home-portfolio-card.swiper-slide:nth-child(2) {
  grid-column: 1 / 4;
  grid-row: 3 / 6;
}
.home-portfolio-card.swiper-slide:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1 / 3;
}
.home-portfolio-card.swiper-slide:nth-child(4) {
  grid-column: 4/ 8;
  grid-row: 4 / 6;
}

.home-portfolio-card.swiper-slide:nth-child(5) {
  grid-column: 5 / 9;
  grid-row: 1 / 4;
}
.home-portfolio-card.swiper-slide:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 3 / 6;
}
.home-portfolio-card.swiper-slide:nth-child(7) {
  grid-column: 9 / 10;
  grid-row: 1 / 2;
}

.home-portfolio-card.swiper-slide:nth-child(8) {
  grid-column: 8 / 9;
  grid-row: 5 / 6;
}
.home-portfolio-card.swiper-slide:nth-child(7)::after,
.home-portfolio-card.swiper-slide:nth-child(8)::after {
  display: none;
}

.home-portfolio-card.swiper-slide:nth-child(7) .home-portfolio-card__overlay,
.home-portfolio-card.swiper-slide:nth-child(8) .home-portfolio-card__overlay {
  display: none;
}
.home-portfolio-logo-cell {
  grid-column: 9 / 10;
  grid-row: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: 0;

  pointer-events: none;
  z-index: 2;
}
.home-portfolio-logo-cell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.42;
}
.home-portfolio-card {
  position: relative;
  display: block;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  border-radius: 28px;
  background: #eee8ee;
  /* box-shadow: 0 20px 56px rgba(49, 37, 50, 0.1); */
  text-decoration: none;
  isolation: isolate;
}
.home-portfolio-card__title {
  max-width: 92%;
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.home-portfolio-card--wide {
  grid-column: span 4;
  grid-row: span 2;
}

.home-portfolio-card--tall {
  grid-column: span 4;
  grid-row: span 3;
}

.home-portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.home-portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(30, 23, 31, 0) 35%,
    rgba(30, 23, 31, 0.64) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-portfolio-card__overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.home-portfolio-card__label {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-portfolio-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.03);
}

.home-portfolio-card:hover::after {
  opacity: 1;
}

.home-portfolio-card:hover .home-portfolio-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.home-portfolio__bottom {
  display: none;
  margin-top: 32px;
}

.home-portfolio__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--color-accent, #775570);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}
.home-portfolio-slider__controls {
  display: none;
}

.firanka-instagram {
  padding: 5rem 0;
  background: var(--color-light, #f7f4ef);
}

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

/* ================================
   Front Instagram
================================ */

.front-instagram {
  padding: 5rem 0;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(119, 85, 112, 0.08),
      transparent 28%
    ),
    linear-gradient(270deg, #fff 0%, #f7f4f7 100%);
  overflow: hidden;
  overflow: hidden;
}

.front-instagram__container {
  position: relative;
}

.front-instagram__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.front-instagram__link {
  flex-shrink: 0;
  text-decoration: none;
}

/* Wrapper */
.front-instagram__feed {
  width: 100%;
}

/* Main plugin wrapper */
.front-instagram__feed #sb_instagram {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/* Images grid */
.front-instagram__feed #sb_instagram #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* Item */
.front-instagram__feed #sb_instagram #sbi_images .sbi_item {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  float: none !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 1.25rem;
  background: #f0ece6;
}

/* Image wrapper */
.front-instagram__feed #sb_instagram .sbi_photo_wrap {
  width: 100% !important;
  height: 100% !important;
}

/* Image itself */
.front-instagram__feed #sb_instagram .sbi_photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  background-size: cover !important;
  background-position: center !important;
  border-radius: inherit;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.front-instagram__feed #sb_instagram .sbi_photo:hover {
  transform: scale(1.04);
  opacity: 0.9 !important;
}

/* Hide plugin extras */
.front-instagram__feed #sb_instagram .sbi_header,
.front-instagram__feed #sb_instagram .sbi_follow_btn,
.front-instagram__feed #sb_instagram .sbi_load_btn,
.front-instagram__feed #sb_instagram .sbi_info {
  display: none !important;
}

/* Прибрати іконку відео */
.front-instagram__feed #sb_instagram .sbi_playbtn,
.front-instagram__feed #sb_instagram .sbi_playbtn svg {
  display: none !important;
}

/* Прибрати іконку каруселі / кількох фото */
.front-instagram__feed #sb_instagram .sbi_type_carousel,
.front-instagram__feed #sb_instagram .sbi_type_carousel svg {
  display: none !important;
}
/* Прибрати play-іконку на відео */
.front-instagram__feed #sb_instagram .sbi_playbtn,
.front-instagram__feed #sb_instagram svg.sbi_playbtn,
.front-instagram__feed #sb_instagram .fa-play {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.front-reviews-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(119, 85, 112, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff 0%, #f7f4f7 100%);
  overflow: hidden;
}

.front-reviews-section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  background:
    radial-gradient(
      circle at 35% 35%,
      rgba(154, 126, 151, 0.22),
      transparent 58%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(106, 77, 103, 0.16),
      transparent 56%
    );
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.front-reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.front-reviews-title {
  margin: 0;
}

.front-reviews-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.front-reviews-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* .front-reviews-slider {
  overflow: visible;
} */

.front-review-card {
  height: auto;
  min-height: 18rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(40, 34, 30, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.25rem 3rem rgba(35, 28, 24, 0.08);
  backdrop-filter: blur(1rem);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.front-review-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(156, 123, 95, 0.22);
  box-shadow: 0 1.5rem 3.5rem rgba(35, 28, 24, 0.12);
}

.front-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.front-review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  line-height: 1;
  color: rgba(40, 34, 30, 0.18);
}

.front-review-card__rating span.is-active {
  color: var(--color-accent, #9c7b5f);
}

.front-review-card__source {
  padding: 0.35rem 0.65rem;
  border-radius: 999rem;
  background: rgba(156, 123, 95, 0.1);
  color: var(--color-accent, #9c7b5f);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
}

.front-review-card__text {
  color: var(--color-text, #403a36);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.front-review-card__text p {
  margin: 0;
}

.front-review-card__text p + p {
  margin-top: 0.75rem;
}

.front-review-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(40, 34, 30, 0.08);
}

.front-review-card__name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--color-title, #2a2522);
  font-weight: 700;
}

.front-review-card__city {
  margin: 0.35rem 0 0;
  color: rgba(64, 58, 54, 0.62);
  font-size: 0.875rem;
  line-height: 1.35;
}

.front-review-card__date {
  flex: 0 0 auto;
  color: rgba(64, 58, 54, 0.52);
  font-size: 0.8125rem;
  line-height: 1.35;
  white-space: nowrap;
}

.front-reviews-pagination {
  position: static;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.front-reviews-pagination .swiper-pagination-bullet {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 !important;
  background: rgba(64, 58, 54, 0.22);
  opacity: 1;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.front-reviews-pagination .swiper-pagination-bullet-active {
  width: 1.35rem;
  border-radius: 999rem;
  background: var(--color-accent, #9c7b5f);
}

.front-reviews-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.front-reviews-link {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.front-reviews-link span {
  display: inline-flex;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.front-reviews-link:hover span {
  transform: translateX(0.18rem);
}

/* Стрілки під стиль товарних слайдерів */
.front-reviews-nav .swiper-button-prev,
.front-reviews-nav .swiper-button-next {
  position: static;
  width: 3rem;
  height: 3rem;
  margin: 0;
  flex: 0 0 3rem;
  border: 1px solid rgba(111, 73, 103, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0.875rem 2rem rgba(61, 35, 56, 0.08);
  color: var(--color-primary, #6f4967);
  backdrop-filter: blur(0.75rem);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.front-reviews-nav .swiper-button-prev::after,
.front-reviews-nav .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.front-reviews-nav .swiper-button-prev:hover,
.front-reviews-nav .swiper-button-next:hover {
  transform: translateY(-0.125rem);
  border-color: rgba(111, 73, 103, 0.22);
  background: rgba(111, 73, 103, 0.08);
  box-shadow: 0 1rem 2.25rem rgba(61, 35, 56, 0.12);
}

.front-reviews-nav .swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.front-reviews-nav.is-hidden {
  display: none;
}
.home-hero__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--color-accent, #775570);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* =========================
   Final CTA
========================= */

.home-final-cta {
  position: relative;
  padding: clamp(64px, 7vw, 110px) 0;
  background:
    radial-gradient(
      circle at 84% 24%,
      rgba(119, 85, 112, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff 0%, #f7f4f7 100%);
  overflow: hidden;
}

.home-final-cta__inner {
  position: relative;
  min-height: clamp(320px, 32vw, 440px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);

  padding: clamp(34px, 5vw, 72px);
  border-radius: 34px;

  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 255, 255, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, #775570 0%, #5e4158 100%);

  box-shadow: 0 28px 80px rgba(49, 37, 50, 0.16);
  overflow: hidden;
}

.home-final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.home-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-final-cta__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.home-final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.home-final-cta p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

.home-final-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.home-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-accent, #775570);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
}

.home-final-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.home-final-cta__link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.home-final-cta__link:hover::after {
  transform: translateX(4px);
}

.home-final-cta__decor {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.home-final-cta__decor img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.38;
  /* filter: brightness(1.4); */
  /* transform: rotate(8deg); */
  border-radius: 18px;
  object-fit: cover;
}

.home-final-cta__inner::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  background-image: url(/wp-content/uploads/2026/05/bg-shape.webp);
}

.home-final-cta__inner::before {
  content: "";
  position: absolute;
  right: 30%;
  bottom: 17px;
  width: 300px;
  height: 90%;
  background-image: url(/wp-content/uploads/2026/05/bg-shape.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.84;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .home-final-cta {
    padding: 56px 0;
  }

  .home-final-cta__inner {
    grid-template-columns: 1fr;
    padding: 34px 24px;
    border-radius: 28px;
  }

  .home-final-cta__decor {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    opacity: 0.4;
  }

  .home-final-cta__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-final-cta__btn,
  .home-final-cta__link {
    width: 100%;
    justify-content: center;
  }
  .home-final-cta__decor img {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-final-cta h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .home-final-cta p {
    font-size: 0.95rem;
  }
  .home-final-cta__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .front-reviews-actions {
    width: 100%;
    justify-content: space-between;
  }

  .front-reviews-link {
    min-height: 2.75rem;
    padding: 0.8rem 1.1rem;
    font-size: 0.875rem;
  }

  .front-reviews-nav .swiper-button-prev,
  .front-reviews-nav .swiper-button-next {
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
  }
}

@media (max-width: 640px) {
  .front-reviews-actions {
    align-items: stretch;
  }

  .front-reviews-nav {
    display: none;
  }

  .front-reviews-link {
    width: 100%;
  }
}
/*------------------------------------------------------------------1240 ------------------------------------------------------------------------*/
@media (max-width: 1240px) {
  /* .home-portfolio__grid {
    grid-auto-rows: 130px;
    gap: 18px;
  }

  .home-portfolio-card {
    border-radius: 24px;
  } */
}

/*-------------------------------------------------------------------------------------------------1440---------------------------------------------------------*/
@media (max-width: 1440px) {
  .home-hero::before {
    content: "";
    position: absolute;
    left: 21vw;
    bottom: auto;
    width: 397px;
    height: 700px;
  }
  .home-hero-slider {
    max-height: 600px;
  }
}
/*-------------------------------------------------------------------------------------------------1180---------------------------------------------------------*/
@media (max-width: 1180px) {
  .home-hero {
    padding: 24px 0 72px;
  }

  .home-hero__content {
    max-width: 760px;
  }

  .home-hero-slider {
    min-height: 520px;
  }
}
/*-------------------------------------------------------------------------------------------------1024---------------------------------------------------------*/
@media (max-width: 1024px) {
  .home-advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-adv-card {
    min-height: 220px;
  }
  .home-gift-banner__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    border-radius: 28px;
  }

  .home-gift-banner__content h2 {
    font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  }

  .home-gift-banner__content {
    padding: 40px;
  }
  .home-portfolio__head {
    align-items: flex-start;
  }

  /* .home-portfolio-card,
  .home-portfolio-card--wide,
  .home-portfolio-card--tall {
    grid-column: span 3;
    grid-row: span 2;
  } */

  .home-hero__inner {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
    gap: 40px;
  }

  .home-hero__btn {
    width: 50%;
  }
  .home-hero__link {
    width: 50%;
  }

  .home-hero::before {
    left: 18vw;
    bottom: 50px;
    width: 325px;
    height: 492px;
    right: 0;
    top: auto;
  }

  .home-portfolio-card:nth-child(8) {
    display: none;
  }

  .home-portfolio-logo-cell {
    grid-column: 7/ 9;
    grid-row: 3/ 4;
  }
  .home-portfolio-card:nth-child(3) .home-portfolio-card__overlay,
  .home-portfolio-card:nth-child(3)::after {
    display: none;
  }
  .home-portfolio-card.swiper-slide:nth-child(5) {
    grid-column: 5 / 10;
    grid-row: 1 / 3;
  }
  .home-portfolio-card.swiper-slide:nth-child(4) {
    grid-column: 4 / 9;
    grid-row: 4 / 6;
  }
  .home-portfolio-card.swiper-slide:nth-child(7) {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
  }
  .home-portfolio-card.swiper-slide:nth-child {
  }

  .home-hero__btn {
    width: 100%;
  }
  .home-hero__link {
    width: 100%;
  }
  .home-hero__actions {
    flex-wrap: wrap;
  }
}

/*-------------------------------------------------------------------------------------------------920---------------------------------------------------------*/
@media (max-width: 920px) {
}
/*-------------------------------------------------------------------------------------------------768---------------------------------------------------------*/
@media (max-width: 768px) {
  .home-portfolio__bottom {
    display: block;
  }
  .home-portfolio__link {
    display: none;
  }
  .home-hero__inner {
    grid-template-columns: 1fr;
  }
  .home-hero {
    padding: 16px 0 56px;
  }
  .home-hero__content {
    grid-row: 2;
  }
  /* .home-hero__title {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  } */

  .home-hero__text {
    margin-top: 22px;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .home-hero::before {
    left: auto;
    bottom: 0;
    width: 329px;
    height: 450px;
    right: 0;
    top: auto;
  }
  /* .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
  } */

  /* .home-hero__btn {
    width: 100%;
    max-width: 350px;
  } */

  .home-hero-slider {
    min-height: 440px;
    border-radius: 24px;
    .home-hero {
      padding: 36px 0 56px;
    }
  }

  .home-hero-slide__brand {
    margin-bottom: 18px;
  }
  .home-gift-banner {
    padding: 48px 0;
  }

  .home-gift-banner__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-gift-banner__content {
    min-height: 300px;
    padding: 34px 28px;
  }

  .home-gift-banner__image {
    min-height: 260px;
  }

  .home-gift-banner__image::before {
    background: linear-gradient(
      180deg,
      rgba(95, 113, 132, 0.34) 0%,
      rgba(95, 113, 132, 0) 58%
    );
  }

  .home-gift-banner__inner::after {
    right: -80px;
    top: -90px;
    width: 280px;
    height: 420px;
    opacity: 0.34;
  }

  .home-gift-banner__btn {
    width: 100%;
  }
  .front-instagram {
    padding: 4rem 0;
  }

  .front-instagram__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .front-instagram__feed #sb_instagram #sbi_images {
    gap: 0.75rem !important;
  }

  .front-instagram__feed #sb_instagram #sbi_images .sbi_item {
    border-radius: 1rem;
  }
  .front-reviews-section {
    padding: 4rem 0;
  }

  .front-reviews-header {
    align-items: flex-start;
  }

  .front-review-card {
    min-height: 16.5rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .home-hero__actions {
    flex-wrap: no-wrap;
  }
  .home-hero__link {
    width: auto;
  }
  .home-hero-slide__content h2 {
    font-size: 2rem;
  }
  .home-gift-banner--lumestar .home-gift-banner__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.4fr);
  }
  .front-instagram__feed #sb_instagram #sbi_images {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/*-------------------------------------------------------------------------------------------------640---------------------------------------------------------*/
@media (max-width: 640px) {
  .home-portfolio-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .home-portfolio-slider__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    padding: 0;

    border: 1px solid rgba(119, 85, 112, 0.18);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.86);
    color: var(--color-accent, #775570);

    font-size: 1.05rem;
    cursor: pointer;

    box-shadow: 0 14px 32px rgba(49, 37, 50, 0.08);

    transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease,
      opacity 0.25s ease;
  }

  .home-portfolio-slider__nav:hover {
    transform: translateY(-2px);
    background: var(--color-accent, #775570);
    border-color: var(--color-accent, #775570);
    color: #fff;
  }

  .home-portfolio-slider__nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }

  .home-portfolio-slider__pagination {
    position: static !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .home-advantages {
    padding: 56px 0;
  }

  .home-advantages__grid {
    grid-template-columns: 1fr;
  }

  .home-adv-card {
    min-height: auto;
    border-radius: 22px;
  }

  .home-adv-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .home-portfolio {
    padding: 56px 0;
  }

  .home-portfolio__head {
    margin-bottom: 28px;
  }

  .home-portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .home-portfolio-card,
  .home-portfolio-card--wide,
  .home-portfolio-card--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 0.78;
    border-radius: 22px;
  }

  .home-portfolio-card:nth-child(2),
  .home-portfolio-card:nth-child(5) {
    aspect-ratio: 1 / 1.18;
  }

  .home-portfolio-card::after,
  .home-portfolio-card__overlay {
    opacity: 1;
    transform: none;
  }

  .home-portfolio__btn {
    width: 100%;
  }
  .home-portfolio-card__title {
    margin: 0;
    color: white;
    font-size: clamp(1.5rem, 4vw, 4.5rem);
    line-height: 1.05;
    font-weight: 200;
    letter-spacing: +0.045em;
  }
  .home-portfolio-slider {
    overflow: hidden;
    padding-bottom: 0;
  }
  .home-portfolio__grid.swiper-wrapper {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    grid-auto-rows: auto;
  }

  .home-portfolio-card.swiper-slide,
  .home-portfolio-card:nth-child(1),
  .home-portfolio-card:nth-child(2),
  .home-portfolio-card:nth-child(3),
  .home-portfolio-card:nth-child(4),
  .home-portfolio-card:nth-child(5),
  .home-portfolio-card:nth-child(6),
  .home-portfolio-card:nth-child(7),
  .home-portfolio-card:nth-child(8),
  .home-portfolio-card:nth-child(9) {
    grid-column: auto;
    grid-row: auto;
    width: 82%;
    height: auto;
    aspect-ratio: 1 / 0.78;
  }

  .home-portfolio-card {
    border-radius: 24px;
  }

  .home-portfolio-logo-cell {
    display: none;
  }

  .home-portfolio-card::after,
  .home-portfolio-card__overlay {
    opacity: 1;
    transform: none;
  }

  .home-portfolio-slider__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .home-portfolio-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(119, 85, 112, 0.28);
    opacity: 1;
    transition:
      width 0.25s ease,
      background-color 0.25s ease;
  }

  .home-portfolio-slider__pagination .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--color-accent, #775570);
  }
  .front-reviews-header {
    flex-direction: column;
  }

  .front-reviews-nav {
    display: none;
  }

  .front-review-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*-------------------------------------------------------------------------------------------------480---------------------------------------------------------*/
@media (max-width: 480px) {
  .home-hero {
    padding: 58px 0 56px;
  }

  .home-hero-slider {
    min-height: 390px;
    border-radius: 20px;
  }

  .home-hero-slide__content h2 {
    font-size: 1.5rem;
  }
  .home-hero-slide__brand {
    margin-bottom: 8px;
  }

  .home-hero__title {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
  }
  .home-hero::before {
    left: auto;
    bottom: -20px;
    width: 239px;
    height: 479px;
    right: -10px;
    top: auto;
  }
  .home-adv-card::before {
    right: 6px;
    top: 6px;
  }
  .home-hero-slider {
    max-height: 500px;
  }
  .home-gift-banner__content {
    min-height: auto;
    padding: 30px 22px;
  }

  .home-gift-banner__content h2 {
    font-size: 1.5rem;
  }
  .home-gift-banner--lumestar .home-gift-banner__inner {
    grid-template-columns: 1fr !important;
  }

  .home-gift-banner__image {
    display: none;
  }
  .front-instagram {
    padding: 3.5rem 0;
  }

  .front-instagram__feed #sb_instagram #sbi_images .sbi_item {
    border-radius: 0.875rem;
  }
  .home-hero__actions {
    flex-wrap: wrap;
  }
  .home-hero__btn {
    width: 100%;
  }
  .home-hero__link {
    width: 100%;
  }
}

/* =========================
   Lumestar Registration Banner
========================= */

.home-gift-banner--lumestar .home-gift-banner__inner {
  grid-template-columns: 1.2fr 0.8fr;
  background:
    radial-gradient(
      circle at 15% 16%,
      rgba(255, 255, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 52% 78%,
      rgba(255, 255, 255, 0.12),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      var(--lm-accent-dark, #4f354c) 0%,
      var(--lm-accent, #6a4d67) 56%,
      #8a5b86 100%
    );
}

.home-gift-banner--lumestar .home-gift-banner__content {
  gap: 1.25rem;
}

/* .home-gift-banner--lumestar .home-gift-banner__content h2 {
  /* max-width: 42rem; */
/*font-size: clamp(2rem, 3.45vw, 3.45rem);
  line-height: 1.08;
} */

.home-gift-banner__text {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.16vw, 1.125rem);
  line-height: 1.7;
  font-weight: 500;
}

.home-gift-banner__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  /* max-width: 39rem; */
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.home-gift-banner__features li {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill, 999px);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: var(--fs-14, 0.875rem);
  font-weight: 700;
  line-height: 1.25;
  backdrop-filter: blur(0.625rem);
}

.home-gift-banner__features li::before {
  content: "✦";
  margin-right: 0.5rem;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
}

.home-gift-banner__bonus-card {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  width: fit-content;
  padding: 0.8rem 1rem 0.85rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 1.125rem 2.5rem rgba(49, 15, 59, 0.18);
  backdrop-filter: blur(1rem);
}

.home-gift-banner__bonus-card strong {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.home-gift-banner__bonus-card span:last-child {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  font-size: var(--fs-14, 0.875rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-gift-banner__bonus-plus {
  margin-right: 0.25rem;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.home-gift-banner--lumestar .home-gift-banner__btn {
  margin-top: 0.75rem;
  color: var(--lm-accent, #6a4d67);
}

.home-gift-banner--lumestar .home-gift-banner__btn:hover {
  background: var(--lm-accent-dark, #4f354c);
  color: #fff;
}

.home-gift-banner--lumestar .home-gift-banner__image::before {
  background:
    linear-gradient(
      90deg,
      rgba(79, 53, 76, 0.84) 0%,
      rgba(79, 53, 76, 0.25) 44%,
      rgba(79, 53, 76, 0) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(49, 15, 59, 0.12));
}

@media (max-width: 1024px) {
  .home-gift-banner--lumestar .home-gift-banner__content h2 {
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
  }

  .home-gift-banner__features {
    gap: 0.5rem;
  }

  .home-gift-banner__features li {
    min-height: 2.375rem;
    font-size: var(--fs-13, 0.8125rem);
  }
}

@media (max-width: 768px) {
  .home-gift-banner__bonus-card {
    border-radius: 1rem;
  }

  .home-gift-banner--lumestar .home-gift-banner__content {
    gap: 1rem;
  }

  .home-gift-banner__text {
    font-size: var(--fs-15, 0.9375rem);
    line-height: 1.6;
  }

  .home-gift-banner__features {
    flex-direction: column;
    width: 100%;
  }

  .home-gift-banner__features li {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 425px) {
  .home-gift-banner--lumestar .home-gift-banner__content h2 {
    font-size: 1.7rem;
  }

  .home-gift-banner__bonus-card strong {
    font-size: 2rem;
  }
}
.reviews-toolbar__group select:hover {
  border-color: rgba(106, 77, 103, 0.28);
  box-shadow:
    0 0.35rem 1.5rem rgba(41, 31, 44, 0.08),
    inset 0 0 1px rgba(255, 255, 255, 0.8);
}

.reviews-toolbar__group select:focus {
  border-color: rgba(106, 77, 103, 0.42);
  box-shadow:
    0 0 0 0.25rem rgba(106, 77, 103, 0.08),
    0 0.35rem 1.5rem rgba(41, 31, 44, 0.08);
}
.reviews-loadmore-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.reviews-loadmore {
  min-height: 3rem;
  padding: 0.85rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999rem;
  cursor: pointer;
}

.reviews-loadmore span {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.reviews-loadmore:hover span {
  transform: translateX(0.18rem);
}

.reviews-loadmore.is-loading,
.reviews-loadmore:disabled {
  opacity: 0.65;
  cursor: wait;
}

.reviews-grid.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.reviews-empty--grid {
  grid-column: 1 / -1;
}
.reviews-toolbar {
  margin-bottom: 1.5rem;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(49, 39, 51, 0.08);
  border-radius: 1.25rem;
  background: rgba(250, 247, 244, 0.72);
  box-shadow: 0 0.75rem 2rem rgba(41, 31, 44, 0.04);
}

.reviews-toolbar__group {
  min-width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.reviews-toolbar__group label {
  color: rgba(49, 39, 51, 0.58);
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reviews-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-toolbar__group {
    min-width: 0;
    width: 100%;
  }

  .reviews-loadmore {
    width: 100%;
  }
  .reviews-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-toolbar__group {
    min-width: 0;
    width: 100%;
  }

  .reviews-toolbar__group select {
    min-width: 0;
    width: 100%;
    font-size: 0.9375rem;
  }
}
.front-review-card__gallery {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.front-review-card__photo {
  display: block;
  width: 4.5rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #f7f0f6;
}

.front-review-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-review-card__related {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: #7b4d73;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.front-review-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1rem;
}

.front-review-card__photo {
  display: block;
  overflow: hidden;
  border-radius: 0.875rem;
  background: #f7f0f6;
}

.front-review-card__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.front-review-card__related {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  color: #7b4d73;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.front-review-card__related:hover {
  text-decoration: underline;
}
.review-lightbox .lm-lightbox__dialog {
  width: min(72rem, 100%);
}

.review-lightbox.has-one-photo .lm-lightbox__arrow,
.review-lightbox.has-one-photo .lm-lightbox__thumbs {
  display: none;
}

.front-review-card__photo,
.reviews-card__photo {
  cursor: zoom-in;
}

/* =====================================================
   HOME COLLECTIONS
===================================================== */

.home-collections {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 24%,
      rgba(119, 85, 112, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #f7f4f7 0%, #ffffff 100%);
}

.home-collections::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -7rem;
  width: 34rem;
  height: 42rem;

  background: url("/wp-content/uploads/2026/05/bg-shape.webp") center / contain
    no-repeat;

  opacity: 0.22;
  pointer-events: none;
}

.home-collections .container {
  position: relative;
  z-index: 2;
}

/* Header */

.home-collections__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;

  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-collections__heading {
  max-width: 47rem;
}

.home-collections__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  margin-bottom: 0.625rem;

  color: var(--color-accent, #775570);

  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-collections__eyebrow::before {
  content: "";
  width: 2.125rem;
  height: 0.0625rem;
  background: currentColor;
  opacity: 0.45;
}

.home-collections__title {
  margin: 0;

  color: var(--color-text, #343036);

  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-collections__subtitle {
  max-width: 43rem;
  margin: 1rem 0 0;

  color: var(--color-muted, #6d6870);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Header controls */

.home-collections__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.home-collections__navigation {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.home-collections__nav {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 3rem;
  height: 3rem;
  padding: 0;

  border: 0.0625rem solid rgba(119, 85, 112, 0.14);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.82);
  color: var(--color-accent, #775570);

  box-shadow: 0 0.875rem 2rem rgba(49, 37, 50, 0.07);
  backdrop-filter: blur(0.75rem);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.home-collections__nav:hover {
  transform: translateY(-0.125rem);

  border-color: var(--color-accent, #775570);
  background: var(--color-accent, #775570);
  color: #fff;

  box-shadow: 0 1rem 2.25rem rgba(94, 65, 88, 0.18);
}

.home-collections__nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.home-collections__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  min-height: 3.25rem;
  padding: 0 1.5rem;

  border-radius: 999px;
  background: var(--color-accent, #775570);
  color: #fff;

  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  box-shadow: 0 0.875rem 2.25rem rgba(94, 65, 88, 0.2);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-collections__all span {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.home-collections__all:hover {
  transform: translateY(-0.125rem);
  background: var(--color-accent-dark, #5e4158);
  color: #fff;
  box-shadow: 0 1.125rem 2.75rem rgba(94, 65, 88, 0.26);
}

.home-collections__all:hover span {
  transform: translateX(0.2rem);
}

/* Slider */

.home-collections-slider {
  position: relative;
  overflow: hidden;
  padding: 0.375rem 0 0.75rem;
}

.home-collections-slider .swiper-wrapper {
  align-items: stretch;
}

.home-collection-card {
  height: auto;
}

/* Card */

.home-collection-card__link {
  position: relative;

  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;

  border: 0.0625rem solid rgba(119, 85, 112, 0.1);
  border-radius: 1.75rem;

  background: rgba(255, 255, 255, 0.86);
  color: inherit;
  text-decoration: none;

  box-shadow: 0 1.125rem 3rem rgba(49, 37, 50, 0.06);
  backdrop-filter: blur(1rem);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.home-collection-card__link:hover {
  transform: translateY(-0.375rem);

  border-color: rgba(119, 85, 112, 0.22);

  box-shadow: 0 1.75rem 4rem rgba(49, 37, 50, 0.12);
}

/* Image */

.home-collection-card__image {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(119, 85, 112, 0.1),
      transparent 55%
    ),
    #f6f2f6;
}

.home-collection-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;

  height: 35%;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(35, 27, 36, 0.16) 100%
  );

  pointer-events: none;
}

.home-collection-card__image > img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  transform: scale(1.01);

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.home-collection-card__link:hover .home-collection-card__image > img {
  transform: scale(1.065);
  filter: saturate(1.04) contrast(1.02);
}

.home-collection-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.home-collection-card__placeholder img {
  width: 5rem;
  height: auto;
  object-fit: contain;
  opacity: 0.48;
}

/* Product count badge */

.home-collection-card__count {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 2rem;
  padding: 0.4rem 0.8rem;

  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.82);
  color: var(--color-accent, #775570);

  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 0.625rem 1.5rem rgba(35, 27, 36, 0.12);
  backdrop-filter: blur(0.75rem);
}

/* Upper right arrow */

.home-collection-card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.75rem;
  height: 2.75rem;

  border: 0.0625rem solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.84);
  color: var(--color-accent, #775570);

  box-shadow: 0 0.75rem 1.75rem rgba(35, 27, 36, 0.1);
  backdrop-filter: blur(0.75rem);

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.home-collection-card__link:hover .home-collection-card__arrow {
  transform: rotate(8deg) scale(1.06);
  background: var(--color-accent, #775570);
  color: #fff;
}

/* Card body */

.home-collection-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 1.375rem 1.375rem 1.5rem;
}

.home-collection-card__label {
  margin-bottom: 0.5rem;

  color: rgba(119, 85, 112, 0.68);

  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-collection-card__title {
  margin: 0;

  color: var(--color-text, #343036);

  font-size: clamp(1.25rem, 1.55vw, 1.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-collection-card__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  margin: 0.875rem 0 0;

  color: var(--color-muted, #6d6870);

  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
}

.home-collection-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  width: fit-content;
  margin-top: auto;
  padding-top: 1.25rem;

  color: var(--color-accent, #775570);

  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.home-collection-card__more span {
  transition: transform 0.25s ease;
}

.home-collection-card__link:hover .home-collection-card__more span {
  transform: translateX(0.25rem);
}

/* Pagination */

.home-collections__pagination {
  position: static !important;

  display: flex;
  justify-content: center;
  gap: 0.45rem;

  margin-top: 1.5rem;
}

.home-collections__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;

  border-radius: 999px;

  background: rgba(119, 85, 112, 0.25);
  opacity: 1;

  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.home-collections__pagination .swiper-pagination-bullet-active {
  width: 1.75rem;
  background: var(--color-accent, #775570);
}

/* =====================================================
   HOME COLLECTIONS RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .home-collections__head {
    align-items: flex-start;
  }

  .home-collections__actions {
    padding-top: 1rem;
  }

  .home-collection-card__body {
    padding: 1.125rem 1.125rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .home-collections {
    padding: 3.75rem 0;
  }

  .home-collections__head {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .home-collections__actions {
    justify-content: space-between;
    width: 100%;
    padding-top: 0;
  }

  .home-collections__all {
    margin-left: auto;
  }

  .home-collections-slider {
    overflow: visible;
  }

  .home-collection-card__image {
    aspect-ratio: 1 / 0.88;
  }
}

@media (max-width: 520px) {
  .home-collections {
    padding: 3.25rem 0;
  }

  .home-collections__subtitle {
    font-size: 0.9375rem;
  }

  /* .home-collections__navigation {
    display: none;
  } */

  .home-collections__all {
    width: 100%;
  }

  .home-collection-card__link {
    border-radius: 1.35rem;
  }

  .home-collection-card__image {
    aspect-ratio: 1 / 0.9;
  }

  .home-collection-card__arrow {
    top: 0.75rem;
    right: 0.75rem;

    width: 2.5rem;
    height: 2.5rem;
  }

  .home-collection-card__count {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}
