@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   GLOBÁLNÍ FONT
   ============================================================ */

body, button, input, select, textarea, a, span, div, p, li, strong, b {
  font-family: 'Montserrat', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.homepage-group-title,
.latest-contribution-rating h2,
.news-item .title,
.p .name span {
  font-family: 'Montserrat', sans-serif !important;
}

/* ============================================================
   1) TRANSPARENTNÍ HEADER
   ============================================================ */

.carousel-wrapper {
  display: none !important;
}

.overall-wrapper {
  position: relative;
}

#header {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

#header .header-top,
#header .header-bottom,
#header .header-top-wrapper,
#header .header-bottom-wrapper,
#header .navigation-wrapper,
#header .navigation-in,
#header .site-name,
#header .site-name a {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#header .site-name img,
#linkWebsiteLogo img {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  width: auto !important;
  max-width: 250px !important;
  max-height: 78px !important;
  height: auto !important;
}

#header .menu-level-1 > li > a,
#header .menu-level-1 > li > a > b {
  color: #1f1f1f !important;
  transition: color .25s ease;
}

#header .menu-level-1 > li > a:hover > b,
#header .menu-level-1 > li:hover > a > b {
  color: #d79aae !important;
}

#header .navigation-buttons a,
#header .navigation-buttons button,
#header .navigation-buttons i,
#header .navigation-buttons .icon-cart,
#header .navigation-buttons .icon-login,
#header .navigation-buttons .icon-search {
  color: #1f1f1f !important;
}

#header .navigation-buttons a:hover i,
#header .navigation-buttons button:hover i {
  color: #d79aae !important;
}

#header .dropdown span,
#header .dropdown button,
#header .dropdown .caret {
  color: #1f1f1f !important;
}

#header .header-top-wrapper {
  padding-top: 10px !important;
  padding-bottom: 6px !important;
}

#header .header-bottom-wrapper {
  padding-top: 2px !important;
  padding-bottom: 10px !important;
}

#content-wrapper.content-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.content-wrapper-in > .content {
  padding: 0 !important;
  max-width: 100% !important;
}

/* ============================================================
   2) SPARKLES
   ============================================================ */

.mph-sparkles-wrap {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  overflow: hidden;
}

.sp {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--s) * 10px);
  height: calc(var(--s) * 10px);
  transform: translate(-50%, -50%);
  animation: sp-twinkle var(--dur) ease-in-out infinite var(--d);
  opacity: 0;
}

.sp::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--s) * 1.5px);
  height: calc(var(--s) * 10px);
  background: var(--c);
  border-radius: 999px;
}

.sp::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--s) * 10px);
  height: calc(var(--s) * 1.5px);
  background: var(--c);
  border-radius: 999px;
}

@keyframes sp-twinkle {
  0%   { opacity: 0;    transform: translate(-50%,-50%) scale(0.3) rotate(0deg);   }
  20%  { opacity: 1;    transform: translate(-50%,-50%) scale(1)   rotate(45deg);  }
  50%  { opacity: 0.75; transform: translate(-50%,-50%) scale(1.2) rotate(90deg);  }
  80%  { opacity: 1;    transform: translate(-50%,-50%) scale(1)   rotate(135deg); }
  100% { opacity: 0;    transform: translate(-50%,-50%) scale(0.3) rotate(180deg); }
}

/* ============================================================
   3) LIQUID GLASS PILLS
   ============================================================ */

.mph-edition-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 26px;
}

.mph-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #1f1f1f;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.80),
    inset 0 -1px 0 rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              background 0.22s ease, border-color 0.22s ease;
}

.mph-pill:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.62);
  border-color: rgba(255,255,255,0.92);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.09),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(0,0,0,0.03);
  color: #000;
}

.mph-pill__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.mph-pill--chrome   .mph-pill__dot { background: linear-gradient(135deg,#8e9eab,#c8d6df); }
.mph-pill--diamonds .mph-pill__dot { background: linear-gradient(135deg,#b8a9c9,#e0d5f0); }
.mph-pill--metallic .mph-pill__dot { background: linear-gradient(135deg,#c9a96e,#e8d5a3); }
.mph-pill--sateen   .mph-pill__dot { background: linear-gradient(135deg,#d4a5b5,#f0cdd8); }
.mph-pill--matt     .mph-pill__dot { background: linear-gradient(135deg,#7a8c7e,#b0c4b1); }
.mph-pill--refill   .mph-pill__dot { background: linear-gradient(135deg,#a0b4c8,#ccdde8); }

.mph-pill--chrome   { background: rgba(200,214,223,0.28); border-color: rgba(200,214,223,0.55); }
.mph-pill--diamonds { background: rgba(224,213,240,0.28); border-color: rgba(224,213,240,0.55); }
.mph-pill--metallic { background: rgba(232,213,163,0.28); border-color: rgba(232,213,163,0.55); }
.mph-pill--sateen   { background: rgba(240,205,216,0.28); border-color: rgba(240,205,216,0.55); }
.mph-pill--matt     { background: rgba(176,196,177,0.28); border-color: rgba(176,196,177,0.55); }
.mph-pill--refill   { background: rgba(204,221,232,0.28); border-color: rgba(204,221,232,0.55); }

.mph-pill--chrome:hover   { background: rgba(200,214,223,0.58); }
.mph-pill--diamonds:hover { background: rgba(224,213,240,0.58); }
.mph-pill--metallic:hover { background: rgba(232,213,163,0.58); }
.mph-pill--sateen:hover   { background: rgba(240,205,216,0.58); }
.mph-pill--matt:hover     { background: rgba(176,196,177,0.58); }
.mph-pill--refill:hover   { background: rgba(204,221,232,0.58); }

/* ============================================================
   4) HERO SEKCE
   ============================================================ */

.maibi-pastel-hero {
  --mph-mint-light: #dff1f3;
  --mph-mint: #c7e7ea;
  --mph-mint-dark: #8abdc7;
  --mph-pink-light: #fbe4eb;
  --mph-pink: #f4ced9;
  --mph-pink-dark: #d999b0;
  --mph-ink: #1f1f1f;
  --mph-ink-soft: #4f4f4f;
  --mph-muted: #8f8f8f;

  margin: 0 0 50px;
  font-family: 'Montserrat', sans-serif;
  color: var(--mph-ink);
  position: relative;
  z-index: 20;
}

.maibi-pastel-hero * {
  box-sizing: border-box;
}

.maibi-pastel-hero a {
  text-decoration: none;
  color: inherit;
}

/* ---- BANNER ---- */

.mph-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #dff1f3 0%, #ffffff 48%, #fbe4eb 100%);
}

.mph-banner__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: cover;
  object-position: center;
}

.mph-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.mph-banner__content {
  position: absolute;
  top: 20%;
  left: 7%;
  max-width: 430px;
  color: var(--mph-ink);
  pointer-events: auto;
  z-index: 10;
}

.mph-banner__edition {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.mph-banner__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: 74px;
  line-height: 0.95;
  letter-spacing: -1px;
}

.mph-banner__mint { color: #85bcc7; }
.mph-banner__pink { color: #d998af; }

.mph-banner__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 22px;
  color: #d7a7b7;
}

.mph-banner__divider span {
  display: block;
  width: 106px;
  height: 1px;
  background: #d9c5ce;
}

.mph-banner__divider i {
  font-style: normal;
  font-size: 18px;
}

.mph-banner__text {
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.45;
  color: #2f2f2f;
}

.mph-banner__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 10;
}

/* ---- TLAČÍTKA ---- */

.mph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none !important;
}

.mph-btn--primary {
  background: #111;
  color: #fff !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.mph-btn--primary:hover {
  background: #2b2b2b;
  color: #fff !important;
  transform: translateY(-1px);
}

.mph-btn--secondary {
  background: transparent;
  color: #333 !important;
  padding-left: 0;
  padding-right: 0;
  border: none;
}

.mph-btn--secondary:hover {
  color: #000 !important;
}

.mph-btn--ghost {
  background: transparent;
  color: var(--mph-ink);
  border: 1px solid var(--mph-ink);
}

.mph-btn--ghost:hover {
  background: var(--mph-ink);
  color: #fff;
}

.mph-arrow {
  transition: transform .3s ease;
}

.mph-btn:hover .mph-arrow {
  transform: translateX(4px);
}

/* ---- BADGE ---- */

.mph-banner__badge {
  position: absolute;
  right: 7.5%;
  top: 15%;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8e6477;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 10;
}

/* ---- FEATURES STRIP ---- */

.mph-features {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, #f6e1e8 0%, #f4eaef 48%, #dceff0 100%);
  padding: 28px 34px;
}

.mph-features__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mph-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mph-feature__icon {
  width: 40px;
  height: 40px;
  color: var(--mph-ink);
  flex-shrink: 0;
}

.mph-feature__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #222;
}

.mph-feature__desc {
  font-size: 13px;
  color: var(--mph-ink-soft);
  line-height: 1.45;
}

/* ---- SHOWCASE ---- */

.mph-showcase {
  position: relative;
  z-index: 1;
  padding: 70px 40px;
  background: #fff;
}

.mph-showcase__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

.mph-showcase__left .mph-edition-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mph-muted);
  font-weight: 500;
  margin-bottom: 18px;
}

.mph-showcase__left h2 {
  font-weight: 300;
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--mph-ink);
}

.mph-showcase__left h2 .mph-mint {
  color: var(--mph-mint-dark);
  font-style: italic;
  font-weight: 400;
}

.mph-showcase__left h2 .mph-pink {
  color: var(--mph-pink-dark);
  font-style: italic;
  font-weight: 400;
}

.mph-showcase__left h2 .mph-amp {
  font-weight: 200;
  opacity: .7;
}

.mph-showcase__left p {
  color: var(--mph-ink-soft);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 28px;
}

.mph-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
}

.mph-divider::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--mph-ink-soft);
}

.mph-divider--left {
  justify-content: flex-start;
}

.mph-heart {
  color: var(--mph-pink-dark);
  font-size: 14px;
}

.mph-showcase__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mph-pcard {
  position: relative;
  padding: 30px 20px 28px;
  text-align: center;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 360px;
}

.mph-pcard--mint { background: linear-gradient(160deg, #e5f3f3 0%, #cde8ea 100%); }
.mph-pcard--pink { background: linear-gradient(160deg, #fde8ee 0%, #f6d4de 100%); }

.mph-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.mph-novinka {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.9);
  color: var(--mph-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 11px;
  text-transform: uppercase;
}

.mph-pcard img {
  max-width: 170px;
  height: auto;
  margin: 20px auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.08));
}

.mph-pcard h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 3px;
}

.mph-pcard__subtitle {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mph-ink-soft);
  margin-bottom: 18px;
}

.mph-btn-card {
  display: inline-block;
  background: #fff;
  color: var(--mph-ink);
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .3s ease;
}

.mph-pcard:hover .mph-btn-card {
  background: var(--mph-ink);
  color: #fff;
}

/* ============================================================
   5) GIFT SEKCE
   ============================================================ */

.mph-gift {
  background: linear-gradient(90deg, #f8dfe8 0%, #f9eef3 45%, #e4f3f3 100%);
  padding: 0;
}

.mph-gift__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  align-items: center;
  gap: 30px;
}

.mph-gift__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
}

.mph-gift__content {
  text-align: center;
  padding: 20px 10px;
}

.mph-gift__content h3 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.2;
  color: #1f1f1f;
}

.mph-gift__content p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.mph-gift__icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-right: 20px;
}

.mph-gift-icon {
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.mph-gift-icon span {
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #444;
}

.mph-gift + .mph-gift {
  display: none !important;
}

/* ============================================================
   6) KOLEKCE MAIBI / BMB
   ============================================================ */

.mph-collections {
  position: relative;
  padding: 90px 28px 80px;
  background:
    radial-gradient(circle at 12% 18%, rgba(214,240,242,0.55) 0%, rgba(214,240,242,0) 28%),
    radial-gradient(circle at 87% 14%, rgba(248,220,230,0.52) 0%, rgba(248,220,230,0) 30%),
    linear-gradient(180deg, #fbf7f9 0%, #f9fcfc 100%);
}

.mph-collections__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.mph-section-head {
  text-align: center;
  margin-bottom: 42px;
}

.mph-section-head__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8c8c8c;
  margin-bottom: 14px;
}

.mph-section-head__title {
  margin: 0 0 14px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
  color: #1f1f1f;
}

.mph-section-head__text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #5b5b5b;
}

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

.mph-collection-card {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  text-decoration: none !important;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  align-items: center !important;
}

.mph-collection-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.82);
}

.mph-collection-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mph-collection-card--maibi .mph-collection-card__bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(248,214,226,0.55) 0%, rgba(248,214,226,0) 30%),
    radial-gradient(circle at 78% 15%, rgba(215,239,242,0.55) 0%, rgba(215,239,242,0) 28%),
    linear-gradient(135deg, rgba(255,248,251,0.9) 0%, rgba(243,251,251,0.88) 100%);
}

.mph-collection-card--bmb .mph-collection-card__bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(206,228,244,0.55) 0%, rgba(206,228,244,0) 30%),
    radial-gradient(circle at 84% 18%, rgba(242,221,230,0.42) 0%, rgba(242,221,230,0) 30%),
    linear-gradient(135deg, rgba(246,250,255,0.92) 0%, rgba(252,248,252,0.88) 100%);
}

.mph-collection-card__media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px 30px 30px;
}

.mph-collection-card__media img {
  max-width: 220px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.10));
}

.mph-collection-card__content {
  position: relative;
  z-index: 2;
  padding: 42px 40px 42px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mph-collection-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.mph-collection-card--maibi .mph-collection-card__label {
  background: linear-gradient(135deg, #de9db6 0%, #c786a0 100%);
}

.mph-collection-card--bmb .mph-collection-card__label {
  background: linear-gradient(135deg, #7daecf 0%, #6797b8 100%);
}

.mph-collection-card h3 {
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.08;
  color: #1f1f1f;
}

.mph-collection-card p {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.mph-collection-card__btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(20,20,20,0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .25s ease;
  text-decoration: none !important;
}

.mph-collection-card:hover .mph-collection-card__btn {
  background: #d998b0;
}

/* ============================================================
   7) PRODUKTOVÉ SEKCE — MPC
   ============================================================ */

.mpc-section {
  padding: 80px 28px;
  position: relative;
}

.mpc-section--bestsellers {
  background:
    radial-gradient(circle at 10% 20%, rgba(215,242,243,0.5) 0%, transparent 30%),
    radial-gradient(circle at 88% 15%, rgba(248,220,230,0.45) 0%, transparent 28%),
    linear-gradient(180deg, #fbf9fc 0%, #f8fcfc 100%);
}

.mpc-section--extrapacks {
  background:
    radial-gradient(circle at 85% 20%, rgba(215,242,243,0.45) 0%, transparent 30%),
    radial-gradient(circle at 12% 15%, rgba(232,213,163,0.3) 0%, transparent 28%),
    linear-gradient(180deg, #fdfcf8 0%, #f9fcfc 100%);
}

.mpc-section--bmb {
  background:
    radial-gradient(circle at 10% 20%, rgba(206,228,244,0.5) 0%, transparent 30%),
    radial-gradient(circle at 88% 15%, rgba(215,242,243,0.45) 0%, transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f5fafc 100%);
}

.mpc-section--bmb-packs {
  background:
    radial-gradient(circle at 85% 20%, rgba(206,228,244,0.45) 0%, transparent 30%),
    radial-gradient(circle at 12% 15%, rgba(232,213,163,0.3) 0%, transparent 28%),
    linear-gradient(180deg, #fdfcf8 0%, #f8fbff 100%);
}

.mpc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mpc-head {
  text-align: center;
  margin-bottom: 44px;
}

.mpc-head__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 12px;
}

.mpc-head__title {
  font-size: 42px;
  font-weight: 300;
  color: #1f1f1f;
  margin: 0;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.mpc-head__title::after {
  content: "♡";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #dfa2b6;
  font-size: 15px;
}

.mpc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.mpc-card {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.mpc-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.09),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.mpc-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 12px;
  overflow: hidden;
}

.mpc-card__img-wrap img {
  max-width: 75%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.10));
  transition: transform 0.35s ease;
}

.mpc-card:hover .mpc-card__img-wrap img {
  transform: scale(1.05) translateY(-3px);
}

.mpc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: none !important;
}

.mpc-card__body {
  padding: 14px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mpc-card__sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
}

.mpc-card__name {
  font-size: 17px;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.25;
}

.mpc-card__cta {
  font-size: 12px;
  color: #c47a8a;
  font-weight: 600;
  margin-top: auto;
  padding-top: 10px;
  transition: letter-spacing 0.2s ease;
}

.mpc-card:hover .mpc-card__cta {
  letter-spacing: 0.04em;
}

.mpc-cta {
  text-align: center;
}

.mpc-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid #1f1f1f;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #1f1f1f;
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease;
}

.mpc-btn:hover {
  background: #1f1f1f;
  color: #fff;
}

/* ============================================================
   8) SHOPTET — NADPISY, GRIDY, KARTY
   ============================================================ */

body.type-index .content-wrapper,
body.type-index .content-wrapper-in,
body.type-index #content {
  max-width: 100% !important;
}

body.type-index .products-wrapper,
body.type-index .homepage-latest-contribution,
body.type-index .homepage-latest-contribution-full-width .container-full-width {
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

body.type-index .homepage-group-title,
body.type-index .latest-contribution-rating h2 {
  font-weight: 300 !important;
  font-size: 52px !important;
  line-height: 1.05 !important;
  text-align: center !important;
  color: #1f1f1f !important;
  background: none !important;
  text-indent: 0 !important;
  height: auto !important;
  width: auto !important;
  margin-top: 80px !important;
  margin-bottom: 34px !important;
  position: relative !important;
  padding-bottom: 24px !important;
}

body.type-index .homepage-group-title::after,
body.type-index .latest-contribution-rating h2::after {
  content: "♡";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #dfa2b6;
  font-size: 17px;
}

body.type-index .homepage-group-title.homepage-products-heading-102,
body.type-index .homepage-group-title.homepage-products-heading-105,
body.type-index .homepage-group-title.homepage-products-heading-114,
body.type-index .homepage-group-title.homepage-products-heading-120,
body.type-index .homepage-group-title.homepage-products-heading-132 {
  background-image: none !important;
}

body.type-index #products-132.products,
body.type-index #products-102.products,
body.type-index #products-105.products,
body.type-index #products-120.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px !important;
  overflow: visible !important;
  padding-bottom: 20px !important;
}

body.type-index #products-132 .product,
body.type-index #products-102 .product,
body.type-index #products-105 .product,
body.type-index #products-120 .product {
  width: auto !important;
  float: none !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  margin: 0 !important;
}

body.type-index .product-slider-pagination,
body.type-index .carousel-control,
body.type-index .products-wrapper .next,
body.type-index .products-wrapper .prev {
  display: none !important;
}

/* produktová karta */
body.type-index .p {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  min-height: 500px;
  border-radius: 30px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.42) !important;
  border: 1px solid rgba(255,255,255,0.58) !important;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
}

body.type-index .p:hover {
  transform: translateY(-7px) !important;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.84) !important;
}

body.type-index .p .image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 290px !important;
  padding: 34px 24px 10px !important;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.20) 58%, rgba(255,255,255,0) 100%);
}

body.type-index .p .image img {
  max-height: 225px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.08));
}

body.type-index .p .p-in {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 0 24px 24px !important;
}

body.type-index .p .name {
  text-align: left !important;
  display: block !important;
  margin: 0 0 10px !important;
}

body.type-index .p .name span {
  font-size: 25px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  color: #1f1f1f !important;
}

body.type-index .p .p-bottom {
  margin-top: auto !important;
}

body.type-index .p .price-final strong {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #1f1f1f !important;
}

body.type-index .p .btn-cart,
body.type-index .p .btn-primary {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: rgba(20,20,20,0.94) !important;
  border: none !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  transition: all .25s ease !important;
}

body.type-index .p:hover .btn-cart,
body.type-index .p:hover .btn-primary {
  background: #d999b0 !important;
}

body.type-index .flags {
  top: 16px !important;
  left: 16px !important;
}

body.type-index .flag {
  border-radius: 999px !important;
  padding: 8px 12px !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

body.type-index .flag-new {
  background: linear-gradient(135deg, #83c7c1 0%, #71b3ac 100%) !important;
  color: #fff !important;
}

body.type-index .flag-tip {
  background: linear-gradient(135deg, #e2a3ba 0%, #cf8ea5 100%) !important;
  color: #fff !important;
}

body.type-index .flag-best-seller {
  background: linear-gradient(135deg, #8eb6d9 0%, #709dca 100%) !important;
  color: #fff !important;
}

body.type-index .products .quantity {
  display: none !important;
}

body.type-index #products-102 .p {
  background: linear-gradient(180deg, rgba(255,245,250,0.65) 0%, rgba(255,255,255,0.55) 100%) !important;
}

body.type-index #products-105 .p {
  background: linear-gradient(180deg, rgba(245,251,255,0.68) 0%, rgba(255,255,255,0.55) 100%) !important;
}

/* ============================================================
   9) BLOG — Příběh MaiBi
   ============================================================ */

body.type-index .homepage-blog-wrapper {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1200px !important;
  margin: 70px auto 0 !important;
  padding: 20px 28px 60px !important;
  /* POZOR: display záměrně není nastaven zde,
     řídí ho blok níže přes vyšší specificitu */
}

body.type-index .homepage-blog-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #fdf8fa 100%);
  z-index: -1;
}

body.type-index .homepage-blog-wrapper .h4 {
  font-size: 0 !important;
  text-align: center !important;
  margin-bottom: 44px !important;
  padding-bottom: 24px !important;
  position: relative !important;
  background: none !important;
  display: block !important;
  width: 100% !important;
}

body.type-index .homepage-blog-wrapper .h4::before {
  content: "Příběh MaiBi";
  font-size: 52px;
  font-weight: 300;
  color: #1f1f1f;
  display: block;
  font-family: 'Montserrat', sans-serif;
}

body.type-index .homepage-blog-wrapper .h4::after {
  content: "♡";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #dfa2b6;
  font-size: 17px;
}

/* ── BLOG GRID — jediné místo kde se řídí layout ── */
body.type-index .homepage-blog-wrapper .news-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100% !important;
  float: none !important;
}

body.type-index .homepage-blog-wrapper .news-list .news-item {
  width: auto !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* karta článku */
body.type-index .news-item {
  background: rgba(255,255,255,0.62) !important;
  border: 1px solid rgba(255,255,255,0.75) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition: transform 0.26s ease, box-shadow 0.26s ease !important;
  color: #1f1f1f !important;
}

body.type-index .news-item:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.09),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

body.type-index .news-item .image,
body.type-index .news-item a.image {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  position: relative !important;
  background: #f0f0f0 !important;
  height: auto !important;
  min-height: unset !important;
}

body.type-index .news-item .image img,
body.type-index .news-item a.image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  position: static !important;
  display: block !important;
  filter: none !important;
  opacity: 1 !important;
}

body.type-index .news-item .image::after,
body.type-index .news-item .image::before {
  display: none !important;
}

body.type-index .news-item .text,
body.type-index .news-item .news-item-text {
  padding: 22px 24px 26px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  background: transparent !important;
  position: static !important;
}

body.type-index .news-item .title,
body.type-index .news-item h3,
body.type-index .news-item .news-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1f1f1f !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
  display: block !important;
  text-shadow: none !important;
  background: none !important;
}

body.type-index .news-item .description,
body.type-index .news-item p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #666 !important;
  margin: 0 0 16px !important;
  text-shadow: none !important;
}

body.type-index .read-article,
body.type-index .news-item .read-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #c47a8a !important;
  text-decoration: none !important;
  margin-top: auto !important;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}

body.type-index .read-article:hover,
body.type-index .news-item .read-more:hover {
  color: #a85f75 !important;
  letter-spacing: 0.16em !important;
}

/* ============================================================
   10) HODNOCENÍ
   ============================================================ */

body.type-index .homepage-latest-contribution-full-width {
  position: relative;
  z-index: 2;
  margin-top: 40px !important;
  padding-top: 50px !important;
  padding-bottom: 70px !important;
  background: none !important;
}

body.type-index .homepage-latest-contribution-full-width::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(215,242,243,0.45) 0%, rgba(215,242,243,0) 30%),
    radial-gradient(circle at 82% 12%, rgba(248,219,230,0.45) 0%, rgba(248,219,230,0) 30%),
    linear-gradient(180deg, #fbffff 0%, #fff8fb 100%);
  z-index: -1;
}

body.type-index .homepage-latest-contribution {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

body.type-index .latest-contribution-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0 !important;
  background: #fff !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07) !important;
  padding: 36px 40px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}

body.type-index .latest-contribution-wrapper .latest-contribution + .latest-contribution {
  border-left: 1px solid rgba(0,0,0,0.07) !important;
  padding-left: 36px !important;
  margin-left: 36px !important;
}

body.type-index .latest-contribution-wrapper .latest-contribution {
  flex: 1 !important;
  min-width: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
}

body.type-index .latest-contribution-placeholder {
  display: none !important;
}

body.type-index .latest-contribution-rating h2 {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
  color: #1f1f1f !important;
}

body.type-index .latest-contribution-rating h2::after {
  display: none !important;
}

body.type-index .latest-contribution-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  text-decoration: none !important;
  color: inherit !important;
}

body.type-index .latest-contribution-inner:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

body.type-index .latest-contribution-image img {
  width: 60px !important;
  height: 60px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  flex-shrink: 0 !important;
}

body.type-index .latest-contribution-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  min-width: 0 !important;
}

body.type-index .latest-contribution-product {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #1f1f1f !important;
  margin: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.type-index .latest-contribution-info {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.76rem !important;
  color: #999 !important;
}

body.type-index .latest-contribution-info i {
  display: none !important;
}

body.type-index .latest-contribution-description {
  font-size: 0.82rem !important;
  color: #555 !important;
  margin-top: 2px !important;
  line-height: 1.5 !important;
}

/* ============================================================
   11) FOOTER
   ============================================================ */

#footer {
  background: linear-gradient(180deg, #fff 0%, #fdf6f8 100%);
  padding-top: 50px;
}

#footer .pageElement__heading {
  font-weight: 500 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px !important;
}

.footer-bottom-full-width {
  background: #fafafa;
}

/* ============================================================
   BMB — VÝBĚR PODLE VŮNĚ
   ============================================================ */

.mpc-section--bmb-scents {
  background:
    radial-gradient(circle at 85% 20%, rgba(206,228,244,0.45) 0%, transparent 30%),
    radial-gradient(circle at 12% 15%, rgba(215,242,243,0.35) 0%, transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f5fafc 100%);
}

.bmb-scents-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.bmb-scent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  color: #1f1f1f;
  border-radius: 24px;
  padding: 32px 18px 26px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  gap: 14px;
}

.bmb-scent-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.09),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.bmb-scent-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(206,228,244,0.45) 0%, rgba(215,242,243,0.45) 100%);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.bmb-scent-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.bmb-scent-card__icon-fallback {
  font-size: 32px;
  line-height: 1;
  position: absolute;
}

.bmb-scent-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.3;
}

.bmb-scent-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6797b8;
  margin-top: auto;
  transition: letter-spacing 0.2s ease;
}

.bmb-scent-card:hover .bmb-scent-card__cta {
  letter-spacing: 0.18em;
}

/* Menu hover - liquid glass efekt */
.shoptet-menu a:hover,
.shoptet-menu li:hover > a,
#navigation a:hover,
#navigation li:hover > a {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  border-radius: 8px !important;
  color: inherit !important;
  box-shadow: 0 4px 16px rgba(180, 180, 200, 0.25), inset 0 0 0 1.5px rgba(255,255,255,0.6) !important;
  transition: all 0.3s ease !important;
}

/* Blog sekce - 3 sloupce a menší mezera nahoře */
.homepage-blog-wrapper.blog-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  grid-template-rows: auto 1fr !important;
  gap: 24px !important;
  margin-top: 20px !important; /* zmenší mezeru nad sekcí */
  padding-top: 0 !important;
}

/* Nadpis "Nové články" přes celou šířku */
.homepage-blog-wrapper .homepage-group-title {
  grid-column: 1 / -1 !important;
  margin-bottom: 0 !important;
}

/* Každý článek stejně vysoký */
.homepage-blog-wrapper .news-item {
  width: 100% !important;
  float: none !important;
}

/* Zmenšení mezery nad sekcí Příběh MaiBi */
.mainContent-content-pills,
#content-pills,
.content-pills {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Zmenšení mezery u nadpisu Příběh MaiBi / Nové články */
.homepage-blog-wrapper .homepage-group-title.h4,
.dc-homepage-group-title.h4 {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1.2 !important;
}



/* ============================================================
   12) RESPONSIVE
   ============================================================ */

@media (max-width: 1280px) {
  body.type-index #products-132.products,
  body.type-index #products-102.products,
  body.type-index #products-105.products,
  body.type-index #products-120.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mpc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  body.type-index .homepage-blog-wrapper .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

@media (max-width: 1200px) {
  .mph-banner__content {
    top: 18%;
    max-width: 360px;
  }

  .mph-banner__title {
    font-size: 58px;
  }

  .mph-banner__text {
    font-size: 17px;
  }

  .mph-banner__badge {
    width: 120px;
    height: 120px;
    font-size: 17px;
  }
}

@media (max-width: 980px) {
  #header {
    position: relative !important;
    background: #fff !important;
  }

  #header .header-top,
  #header .header-bottom,
  #header .header-top-wrapper,
  #header .header-bottom-wrapper,
  #header .navigation-wrapper {
    background: #fff !important;
  }

  .mph-banner__overlay {
    position: static;
  }

  .mph-banner__content {
    position: static;
    max-width: none;
    padding: 30px 20px;
    background: linear-gradient(180deg, #eff8fb 0%, #fdf0f6 100%);
    z-index: auto;
  }

  .mph-banner__badge {
    display: none;
  }

  .mph-banner__title {
    font-size: 42px;
  }

  .mph-features {
    padding: 22px 20px;
  }

  .mph-features__inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .mph-showcase {
    padding: 45px 20px;
  }

  .mph-showcase__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mph-showcase__left h2 {
    font-size: 36px;
  }

  .mph-pcard {
    min-height: 300px;
  }

  .mph-collections__grid {
    grid-template-columns: 1fr;
  }

  .mph-collection-card {
    grid-template-columns: 1fr !important;
  }

  .mph-collection-card__media {
    padding: 30px 24px 0 24px;
  }

  .mph-collection-card__content {
    padding: 20px 28px 36px !important;
  }

  .mph-collection-card h3 {
    font-size: 30px;
  }

  .mph-gift__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 35px 20px 45px;
  }

  .mph-gift__image img {
    margin: 0 auto;
  }

  .mph-gift__icons {
    padding-right: 0;
  }

  .mph-gift__content h3 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  body.type-index .latest-contribution-wrapper {
    flex-direction: column !important;
    padding: 24px 20px !important;
  }

  body.type-index .latest-contribution-wrapper .latest-contribution + .latest-contribution {
    border-left: none !important;
    border-top: 1px solid rgba(0,0,0,0.07) !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    padding-top: 28px !important;
    margin-top: 28px !important;
  }
}

@media (max-width: 760px) {
  body.type-index .products-wrapper,
  body.type-index .homepage-latest-contribution,
  body.type-index .homepage-latest-contribution-full-width .container-full-width {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.type-index .homepage-blog-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.type-index .homepage-group-title,
  body.type-index .latest-contribution-rating h2 {
    font-size: 36px !important;
  }

  body.type-index #products-132.products,
  body.type-index #products-102.products,
  body.type-index #products-105.products,
  body.type-index #products-120.products {
    grid-template-columns: 1fr !important;
  }

  body.type-index .p {
    min-height: 430px !important;
  }

  body.type-index .news-item .title {
    font-size: 16px !important;
  }
}

@media (max-width: 640px) {
  .mph-features__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mph-banner__title {
    font-size: 34px;
  }

  .mph-banner__text {
    font-size: 16px;
  }

  .mpc-section {
    padding: 55px 16px;
  }

  .mpc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mpc-head__title {
    font-size: 32px;
  }

  .mpc-card__name {
    font-size: 15px;
  }

  body.type-index .homepage-blog-wrapper .news-list {
    grid-template-columns: 1fr !important;
  }

  body.type-index .homepage-blog-wrapper {
    padding: 20px 16px 55px !important;
  }

  .mph-collections {
    padding: 60px 18px 55px;
  }

  .mph-section-head__title {
    font-size: 34px;
  }

  .mph-collection-card h3 {
    font-size: 26px;
  }

  .bmb-scents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
