/* === MEIRAA REAL EASY HOME FRONT START === */
.meiraa-home-page,
.meiraa-home-page * {
  box-sizing: border-box;
}

.meiraa-home-page {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
  color: #2b1711;
}

.mhp-section {
  margin: 0 0 26px;
}

.mhp-hero {
  border-radius: 34px;
}

.mhp-hero-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 140, 112, .34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(239, 178, 159, .34), transparent 38%),
    linear-gradient(135deg, #fffdfb 0%, #fff7f2 55%, #fffaf7 100%);
  box-shadow: 0 30px 90px rgba(91, 49, 36, .12);
}

.mhp-hero-slide {
  display: none;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.mhp-hero-slide.is-active {
  display: block;
}

.mhp-hero-slide picture,
.mhp-hero-slide img,
.mhp-promo-image picture,
.mhp-promo-image img {
  display: block;
  width: 100%;
}

.mhp-hero-slide img,
.mhp-promo-image img {
  height: auto;
  border-radius: 34px;
}

.mhp-hero-dots {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(216, 140, 112, .30);
  border-radius: 999px;
  background: rgba(255, 250, 246, .76);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(91, 49, 36, .12);
}

.mhp-hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(216, 140, 112, .52);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.mhp-hero-dots button.is-active {
  width: 30px;
  background: linear-gradient(135deg, #efb29f, #c86f5e);
  border-color: rgba(154, 78, 62, .34);
}

.mhp-placeholder,
.mhp-promo-text,
.mhp-editorial-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 360px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(216, 140, 112, .34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(239, 178, 159, .34), transparent 38%),
    linear-gradient(135deg, #fffdfb 0%, #fff7f2 100%);
  box-shadow: 0 30px 90px rgba(91, 49, 36, .12);
}

.mhp-mark,
.mhp-card i,
.mhp-benefit i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #5a2f25, #3a1f18);
  box-shadow: 0 18px 38px rgba(91, 49, 36, .22);
}

.mhp-placeholder p,
.mhp-section-head span,
.mhp-promo-text span,
.mhp-eyebrow {
  display: block;
  margin: 0 0 10px;
  color: #c86f5e;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.mhp-placeholder h1,
.mhp-section-head h2,
.mhp-promo-text h2,
.mhp-editorial-card h2 {
  margin: 0;
  color: #2b1711;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
}

.mhp-placeholder span,
.mhp-section-head p,
.mhp-promo-text p,
.mhp-editorial-card p {
  display: block;
  max-width: 680px;
  margin: 12px 0 0;
  color: #806b62;
  font-size: 17px;
  line-height: 1.45;
}

.mhp-section-head {
  margin: 48px 0 18px;
}

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

.mhp-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mhp-card,
.mhp-benefit,
.mhp-product {
  display: block;
  border: 1px solid rgba(216, 140, 112, .28);
  border-radius: 24px;
  background: rgba(255, 253, 251, .88);
  box-shadow: 0 18px 48px rgba(91, 49, 36, .08);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mhp-card,
.mhp-benefit {
  padding: 22px;
}

.mhp-card:hover,
.mhp-product:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 111, 94, .42);
  box-shadow: 0 26px 70px rgba(91, 49, 36, .14);
  text-decoration: none;
}

.mhp-card-img {
  display: block;
  aspect-ratio: 1.15 / 1;
  margin: -8px -8px 16px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff7f2;
}

.mhp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mhp-card strong,
.mhp-card small,
.mhp-benefit strong,
.mhp-benefit span,
.mhp-product strong,
.mhp-product small {
  display: block;
}

.mhp-card strong,
.mhp-benefit strong,
.mhp-product strong {
  color: #2b1711;
  font-weight: 900;
}

.mhp-card small,
.mhp-benefit span {
  margin-top: 7px;
  color: #806b62;
  font-size: 14px;
  line-height: 1.42;
}

.mhp-product {
  padding: 14px;
}

.mhp-product-img {
  display: block;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff7f2;
}

.mhp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mhp-product strong {
  min-height: 42px;
  padding: 0 6px;
  line-height: 1.25;
}

.mhp-product small {
  padding: 7px 6px 0;
  color: #c86f5e;
  font-weight: 900;
}

.mhp-promo-image {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(216, 140, 112, .34);
  border-radius: 34px;
  background: #fffaf7;
  box-shadow: 0 30px 90px rgba(91, 49, 36, .12);
}

.mhp-editorial-card {
  min-height: 260px;
}

@media (max-width: 991px) {
  .meiraa-home-page {
    width: min(100%, calc(100vw - 24px));
    padding-top: 26px;
  }

  .mhp-card-grid,
  .mhp-product-grid,
  .mhp-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mhp-placeholder,
  .mhp-editorial-card,
  .mhp-promo-text {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .meiraa-home-page {
    width: min(100%, calc(100vw - 18px));
  }

  .mhp-hero-stage,
  .mhp-hero-slide img,
  .mhp-placeholder,
  .mhp-promo-image,
  .mhp-promo-image img,
  .mhp-promo-text,
  .mhp-editorial-card {
    border-radius: 24px;
  }

  .mhp-placeholder,
  .mhp-editorial-card,
  .mhp-promo-text {
    display: block;
    min-height: 240px;
  }

  .mhp-mark {
    margin-bottom: 18px;
  }

  .mhp-card-grid,
  .mhp-benefit-grid,
  .mhp-product-grid {
    grid-template-columns: 1fr;
  }

  .mhp-hero-dots {
    right: 14px;
    bottom: 14px;
  }
}
/* === MEIRAA REAL EASY HOME FRONT END === */

/* C5.20 repeatable-hero-slider-clean START */
.mhp-repeat-slider {
  margin-top: 0;
}

.mhp-repeat-slider .mhp-hero-stage {
  width: 100%;
}

.mhp-repeat-slider .mhp-hero-slide,
.mhp-repeat-slider .mhp-hero-slide picture,
.mhp-repeat-slider .mhp-hero-slide img {
  width: 100%;
}

.mhp-repeat-slider .mhp-hero-slide img {
  object-fit: cover;
}

.mhp-repeat-slider .mhp-hero-dots {
  z-index: 5;
}
/* C5.20 repeatable-hero-slider-clean END */

/* C5.75 home-template-static-banners-text-image START */
.meiraa-home-page .mhp-static-banners {
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
}

.meiraa-home-page .mhp-static-banners__stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.meiraa-home-page .mhp-static-banner {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1920 / 820;
  border: 1px solid rgba(218, 143, 124, .22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 0%, rgba(233,155,135,.14), transparent 20rem),
    rgba(255, 250, 247, .76);
  box-shadow: 0 24px 72px rgba(74, 51, 39, .075);
  text-decoration: none !important;
  transform: translateZ(0);
}

.meiraa-home-page .mhp-static-banner picture,
.meiraa-home-page .mhp-static-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.meiraa-home-page .mhp-static-banner img {
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.meiraa-home-page a.mhp-static-banner:hover img,
.meiraa-home-page a.mhp-static-banner:focus img {
  transform: scale(1.018);
}

.meiraa-home-page .mhp-static-banner__caption {
  position: absolute;
  left: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex;
  max-width: min(520px, calc(100% - 2rem));
  padding: .58rem .9rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255, 250, 247, .70);
  color: #4b2b25;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(74, 51, 39, .08);
  backdrop-filter: blur(10px);
}

/* The current “Статични банери” output is emitted as a repeat hero section.
   Make that single repeat section behave visually like a static premium banner. */
.meiraa-home-page .mhp-repeat-slider {
  margin-top: clamp(1.25rem, 2.8vw, 2.25rem);
  border-radius: 34px;
  box-shadow: 0 24px 72px rgba(74, 51, 39, .075);
}

.meiraa-home-page .mhp-repeat-slider .mhp-hero-stage {
  overflow: hidden;
  aspect-ratio: 1920 / 820;
  border: 1px solid rgba(218, 143, 124, .22);
  border-radius: 34px;
  background: rgba(255, 250, 247, .76);
}

.meiraa-home-page .mhp-repeat-slider .mhp-hero-slide,
.meiraa-home-page .mhp-repeat-slider picture,
.meiraa-home-page .mhp-repeat-slider img {
  width: 100%;
  height: 100%;
}

.meiraa-home-page .mhp-repeat-slider img {
  object-fit: cover;
  object-position: center;
}

/* Text + image */
.meiraa-home-page .mhp-editorial--with-image .mhp-editorial-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2.6vw, 2.4rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 2rem);
  border: 1px solid rgba(218, 143, 124, .22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 0%, rgba(233,155,135,.18), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,246,241,.86));
  box-shadow: 0 24px 72px rgba(74, 51, 39, .075);
}

.meiraa-home-page .mhp-editorial-media {
  overflow: hidden;
  aspect-ratio: 1400 / 900;
  border: 1px solid rgba(218, 143, 124, .18);
  border-radius: 28px;
  background: #fff8f5;
  box-shadow: 0 18px 46px rgba(74, 51, 39, .065);
}

.meiraa-home-page .mhp-editorial-media picture,
.meiraa-home-page .mhp-editorial-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.meiraa-home-page .mhp-editorial-media img {
  object-fit: cover;
  object-position: center;
}

.meiraa-home-page .mhp-editorial--with-image .mhp-editorial-copy {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: clamp(.4rem, 1.5vw, 1.2rem);
}

.meiraa-home-page .mhp-editorial--with-image .mhp-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.meiraa-home-page .mhp-editorial--with-image h2 {
  margin: 0;
  color: #321d18;
  font-size: clamp(2.2rem, 4.7vw, 5rem);
  font-weight: 950;
  line-height: .92;
  letter-spacing: -.075em;
}

.meiraa-home-page .mhp-editorial--with-image p {
  max-width: 720px;
  margin: .85rem 0 0;
  color: rgba(50, 29, 24, .62);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 620;
  line-height: 1.46;
}

.meiraa-home-page .mhp-editorial-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  margin-top: 1.15rem;
  padding: .66rem 1.15rem;
  border: 1px solid rgba(218, 143, 124, .28);
  border-radius: 999px;
  background: linear-gradient(135deg, #f4c8bb, #bb695b);
  color: #fff !important;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(139, 76, 65, .15);
}

@media (max-width: 767px) {
  .meiraa-home-page .mhp-static-banner,
  .meiraa-home-page .mhp-repeat-slider .mhp-hero-stage {
    aspect-ratio: 900 / 1200;
    border-radius: 28px;
  }

  .meiraa-home-page .mhp-static-banner__caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    justify-content: center;
    text-align: center;
  }

  .meiraa-home-page .mhp-editorial--with-image .mhp-editorial-card {
    grid-template-columns: 1fr;
    padding: .85rem;
    border-radius: 28px;
  }

  .meiraa-home-page .mhp-editorial-media {
    aspect-ratio: 900 / 1200;
    border-radius: 24px;
  }

  .meiraa-home-page .mhp-editorial--with-image .mhp-editorial-copy {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: .85rem;
    padding: .9rem .4rem .45rem;
  }

  .meiraa-home-page .mhp-editorial--with-image .mhp-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .meiraa-home-page .mhp-editorial--with-image h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }
}
/* C5.75 home-template-static-banners-text-image END */

/* C5.76 home-hide-studio-banner-names START */
/* Studio item names are admin labels. They must not appear as storefront badges. */
.meiraa-home-page .mhp-static-banner__caption {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Safety net for any future static-banner rendering variant. */
.meiraa-home-page [data-mhp-c575="static-banners"] .mhp-static-banner__caption,
.meiraa-home-page .mhp-static-banners .mhp-static-banner__caption {
  display: none !important;
}
/* C5.76 home-hide-studio-banner-names END */
