/* MA-ZAL Gateway Slider — full-bleed nested portal/media slider */

/* ============================================================
   Slider frame — no card feeling, no inner edges
   ============================================================ */

.mz-portal-carousel {
  position: relative;
  width: 100%;
  height: clamp(430px, 55vh, 620px);
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #080501;
  box-shadow: none;
}

.mz-portal-carousel__viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.mz-portal-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  transition: transform .7s cubic-bezier(.22,.75,.25,1);
  will-change: transform;
}

/* ============================================================
   Portal slide
   ============================================================ */

.mz-portal-card {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  color: #f3e6c3;
  text-decoration: none;
  background: #080501;
}

.mz-portal-card__media,
.mz-portal-card__overlay {
  position: absolute;
  inset: 0;
  display: block;
}

.mz-portal-card__media {
  z-index: 0;
  overflow: hidden;
}

/* ============================================================
   Inner media slider
   ============================================================ */

.mz-portal-card__media-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  transition: transform .72s cubic-bezier(.22,.75,.25,1);
  will-change: transform;
}

.mz-portal-card__media-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.mz-portal-card__media-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02) brightness(1.02);
  transform: scale(1.01);
  transition: transform 5s ease, filter .35s ease;
}

.mz-portal-card.is-active .mz-portal-card__media-slide.is-active img {
  transform: scale(1.045);
}

/* ============================================================
   Open gradient — no bordered text box
   The dark area starts from text side and fades naturally.
   ============================================================ */

.mz-portal-card__overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 1, .72) 0%,
      rgba(5, 4, 1, .54) 18%,
      rgba(5, 4, 1, .32) 36%,
      rgba(5, 4, 1, .12) 58%,
      rgba(5, 4, 1, .03) 78%,
      rgba(5, 4, 1, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 4, 1, .02) 0%,
      rgba(5, 4, 1, .04) 45%,
      rgba(5, 4, 1, .20) 100%
    );
}

/* ============================================================
   Text area — text only, no box behind it
   ============================================================ */

.mz-portal-card__content {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 5vw, 76px);
  right: clamp(34px, 5vw, 76px);
  bottom: clamp(76px, 8vw, 106px);
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

/* intentionally disabled: no local bounded panel */
.mz-portal-card__content::before {
  content: none;
}

.mz-portal-card__title {
  display: block;
  color: #fff1cb;
  font-size: clamp(27px, 3.45vw, 44px);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .58);
}

.mz-portal-card__subtitle {
  display: block;
  color: #e7c96d;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.24;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .50);
  transition: opacity .25s ease, transform .25s ease;
}

.mz-portal-card__text {
  display: block;
  max-width: 540px;
  color: rgba(246, 233, 198, 0.88);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .48);
  transition: opacity .25s ease, transform .25s ease;
}

.mz-portal-card.is-text-changing .mz-portal-card__subtitle,
.mz-portal-card.is-text-changing .mz-portal-card__text {
  opacity: .15;
  transform: translateY(4px);
}

.mz-portal-card__open {
  position: relative;
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  margin-top: 6px;
  border-radius: 999px;
  border: 1px solid rgba(231, 201, 109, 0.58);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(8, 6, 2, 0.34));
  color: #f4df9a;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, .18),
    inset 0 0 0 1px rgba(255, 241, 203, .05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.mz-portal-card__open::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-inline-start: 2px;
  border-radius: 50%;
  background: rgba(231, 201, 109, .16);
  color: #fff1cb;
  font-size: 12px;
  line-height: 1;
  transition: transform .18s ease, background .18s ease;
}

.mz-portal-card:hover .mz-portal-card__open {
  transform: translateY(-1px);
  border-color: rgba(231, 201, 109, 0.86);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.26), rgba(8, 6, 2, 0.42));
  color: #fff1cb;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .22),
    0 0 0 3px rgba(201, 168, 76, .08),
    inset 0 0 0 1px rgba(255, 241, 203, .08);
}

.mz-portal-card:hover .mz-portal-card__open::after {
  transform: translateX(3px);
  background: rgba(231, 201, 109, .26);
}

/* ============================================================
   Arrows — elegant edge controls
   ============================================================ */

.mz-portal-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 72px;
  border: 1px solid rgba(232, 217, 184, 0.22);
  background: rgba(5, 4, 1, 0.24);
  color: rgba(255, 241, 203, 0.82);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: .42;
  transform: translateY(-50%);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition:
    opacity .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease;
}

.mz-portal-carousel:hover .mz-portal-carousel__arrow {
  opacity: .82;
}

.mz-portal-carousel__arrow--prev {
  left: 0;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.mz-portal-carousel__arrow--next {
  right: 0;
  border-right: 0;
  border-radius: 999px 0 0 999px;
}

.mz-portal-carousel__arrow:hover {
  opacity: 1;
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.58);
  color: #fff1cb;
}

.mz-portal-carousel__arrow--prev:hover {
  transform: translateY(-50%) translateX(2px);
}

.mz-portal-carousel__arrow--next:hover {
  transform: translateY(-50%) translateX(-2px);
}

/* ============================================================
   Dynamic dots — portal navigation only
   ============================================================ */

.mz-portal-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 13;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(5, 4, 1, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.mz-portal-carousel__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(232, 217, 184, 0.38);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, opacity .22s ease;
}

.mz-portal-carousel__dot.is-active {
  width: 22px;
  background: rgba(201, 168, 76, 0.95);
}

/* ============================================================
   Preview section — cinematic full-bleed slider
   Image edges extend beyond the visible screen.
   ============================================================ */

#mz101GatewaySliderPreview {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#mz101GatewaySliderPreview > .mz101Container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

#mz101GatewaySliderPreview .mz-portal-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#mz101GatewaySliderPreview .mz-portal-card__media-slide img {
  width: 116%;
  left: -8%;
  right: auto;
  max-width: none;
}


/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 760px) {
  .mz-portal-carousel {
    height: 430px;
    border-radius: 0;
  }

  .mz-portal-card__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 4, 1, .76) 0%,
        rgba(5, 4, 1, .54) 42%,
        rgba(5, 4, 1, .12) 76%,
        rgba(5, 4, 1, .02) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5, 4, 1, .02) 0%,
        rgba(5, 4, 1, .18) 100%
      );
  }

  .mz-portal-card__content {
    left: 24px;
    right: 24px;
    bottom: 76px;
    max-width: calc(100% - 48px);
  }

  .mz-portal-card__title {
    font-size: 31px;
  }

  .mz-portal-card__subtitle {
    font-size: 16px;
  }

  .mz-portal-card__text {
    font-size: 12px;
  }

  .mz-portal-carousel__arrow {
    width: 38px;
    height: 38px;
  }

  .mz-portal-carousel__dots {
    bottom: 22px;
  }
}

/* ============================================================
   Mobile controls hard reset
   Prevent global theme button styles from breaking slider dots/arrows.
   ============================================================ */

.mz-portal-carousel__dot {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  min-height: 0;
  width: 6px;
  height: 6px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 999px;
  line-height: 0;
  font-size: 0;
  display: inline-block;
}

.mz-portal-carousel__dot.is-active {
  width: 22px;
  height: 6px;
}

.mz-portal-carousel__arrow {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .mz-portal-carousel {
    height: 390px;
    border-radius: 0;
  }

  .mz-portal-card__media-slide img {
    width: 100%;
    left: 0;
    right: auto;
    object-fit: cover;
    object-position: center;
  }

  .mz-portal-card__content {
    left: 22px;
    right: 22px;
    bottom: 66px;
    max-width: calc(100% - 44px);
    gap: 7px;
  }

  .mz-portal-card__title {
    font-size: 30px;
    line-height: 1.05;
  }

  .mz-portal-card__subtitle {
    font-size: 15px;
    line-height: 1.25;
  }

  .mz-portal-card__text {
    font-size: 12px;
    line-height: 1.45;
    max-width: 100%;
  }

  .mz-portal-card__open {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .mz-portal-carousel__arrow {
    width: 34px;
    height: 52px;
    font-size: 24px;
    opacity: .44;
  }

  .mz-portal-carousel__arrow--prev {
    left: 0;
  }

  .mz-portal-carousel__arrow--next {
    right: 0;
  }

  .mz-portal-carousel__dots {
    bottom: 18px;
    gap: 6px;
    padding: 7px 9px;
  }

  .mz-portal-carousel__dot {
    width: 5px;
    height: 5px;
  }

  .mz-portal-carousel__dot.is-active {
    width: 20px;
    height: 5px;
  }
}

/* ============================================================
   Mobile typography tuning
   Smaller, calmer text for narrow screens.
   ============================================================ */

@media (max-width: 760px) {
  .mz-portal-card__content {
    bottom: 62px;
    gap: 6px;
  }

  .mz-portal-card__title {
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  .mz-portal-card__subtitle {
    font-size: 13px;
    line-height: 1.25;
  }

  .mz-portal-card__text {
    font-size: 11px;
    line-height: 1.42;
  }

  .mz-portal-card__open {
    min-height: 28px;
    padding: 0 11px;
    font-size: 9px;
  }
}

/* Mobile portal button tuning */
@media (max-width: 760px) {
  .mz-portal-card__open {
    min-height: 31px;
    padding: 0 13px;
    gap: 7px;
    font-size: 10px;
  }

  .mz-portal-card__open::after {
    width: 15px;
    height: 15px;
    font-size: 10px;
  }
}

/* ============================================================
   Hero host — slider replaces old hero completely
   ============================================================ */

.mz-gateway-hero {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #080501;
}

.mz-gateway-hero .mz-portal-carousel {
  width: 100%;
  margin: 0;
}

.mz-gateway-hero__fallback {
  padding: 24px;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, .35);
}

/* ============================================================
   Hero top-gap fix
   The fixed header already creates body padding-top.
   Hero and slider must not add another internal top gap.
   ============================================================ */

#mz101Hero.mz-gateway-hero {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#mz101Hero.mz-gateway-hero .mz-portal-carousel {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#mz101Hero.mz-gateway-hero .mz-portal-carousel__viewport {
  top: 0;
}

/* Desktop image focus tuning
   Wide desktop hero crops vertical images; keep focus slightly higher.
   Mobile rules remain untouched.
*/
@media (min-width: 761px) {
  .mz-portal-card__media-slide img {
    object-position: center 28%;
  }
}

/* ============================================================
   FIX: Gateway slider media track must not inherit RTL direction
   Reason:
   Language switching sets html/body to dir="rtl".
   The inner image track is a mechanical carousel layer and must
   keep LTR order so JS mediaIndex/transform remain stable.
   Text/content direction remains controlled by the page direction.
   ============================================================ */

.mz-portal-card__media,
.mz-portal-card__media-track,
.mz-portal-card__media-slide {
  direction: ltr !important;
}

.mz-portal-card__content {
  direction: inherit;
}


/* ============================================================
   RTL-aware text readability overlay
   Keep dark gradient behind text side according to page direction.
   ============================================================ */

html[dir="ltr"] .mz-portal-card__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 4, 1, .72) 0%,
      rgba(5, 4, 1, .54) 18%,
      rgba(5, 4, 1, .32) 36%,
      rgba(5, 4, 1, .12) 58%,
      rgba(5, 4, 1, .03) 78%,
      rgba(5, 4, 1, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 4, 1, .02) 0%,
      rgba(5, 4, 1, .04) 45%,
      rgba(5, 4, 1, .20) 100%
    );
}

html[dir="rtl"] .mz-portal-card__overlay {
  background:
    linear-gradient(
      270deg,
      rgba(5, 4, 1, .72) 0%,
      rgba(5, 4, 1, .54) 18%,
      rgba(5, 4, 1, .32) 36%,
      rgba(5, 4, 1, .12) 58%,
      rgba(5, 4, 1, .03) 78%,
      rgba(5, 4, 1, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 4, 1, .02) 0%,
      rgba(5, 4, 1, .04) 45%,
      rgba(5, 4, 1, .20) 100%
    );
}

@media (max-width: 760px) {
  html[dir="ltr"] .mz-portal-card__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 4, 1, .76) 0%,
        rgba(5, 4, 1, .54) 42%,
        rgba(5, 4, 1, .12) 76%,
        rgba(5, 4, 1, .02) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5, 4, 1, .02) 0%,
        rgba(5, 4, 1, .18) 100%
      );
  }

  html[dir="rtl"] .mz-portal-card__overlay {
    background:
      linear-gradient(
        270deg,
        rgba(5, 4, 1, .76) 0%,
        rgba(5, 4, 1, .54) 42%,
        rgba(5, 4, 1, .12) 76%,
        rgba(5, 4, 1, .02) 100%
      ),
      linear-gradient(
        180deg,
        rgba(5, 4, 1, .02) 0%,
        rgba(5, 4, 1, .18) 100%
      );
  }
}

/* ============================================================
   Hero slider final visual tuning
   Slightly taller hero, smaller text group, lower text position.
   ============================================================ */

.mz-portal-carousel {
  height: clamp(470px, 62vh, 680px);
}

.mz-portal-card__content {
  bottom: clamp(54px, 5.6vw, 82px);
  transform: scale(0.92);
}

html[dir="ltr"] .mz-portal-card__content {
  transform-origin: left bottom;
}

html[dir="rtl"] .mz-portal-card__content {
  transform-origin: right bottom;
}

@media (max-width: 760px) {
  .mz-portal-carousel {
    height: 460px;
  }

  .mz-portal-card__content {
    bottom: 58px;
    transform: scale(0.92);
  }
}

@media (max-width: 520px) {
  .mz-portal-carousel {
    height: 420px;
  }

  .mz-portal-card__content {
    bottom: 54px;
    transform: scale(0.90);
  }
}

/* MA-ZAL Hero Coffee Gateway Strip — trial */
.mz-gateway-hero {
  padding-bottom: 0 !important;
}

.mz-gateway-hero .mz-gateway-slider__dots,
.mz-gateway-hero .mz-gateway-slider-dots,
.mz-gateway-hero .mz-slider-dots,
.mz-gateway-hero .swiper-pagination,
.mz-gateway-hero [class*="pagination"],
.mz-gateway-hero [class*="dots"] {
  display: none !important;
}

.mz-hero-coffee-strip {
  position: relative;
  z-index: 8;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 64px);
  transform: translateY(0);
}

.mz-hero-coffee-strip__inner {
  max-width: 1360px;
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(220px, .95fr) minmax(360px, 1.7fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(201, 168, 76, .36);
  border-top-color: rgba(201, 168, 76, .58);
  background:
    linear-gradient(90deg, rgba(20, 13, 4, .94), rgba(35, 25, 10, .90), rgba(20, 13, 4, .96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mz-hero-coffee-strip__intro {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mz-hero-coffee-strip__eyebrow {
  color: rgba(201, 168, 76, .88);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mz-hero-coffee-strip__title {
  color: #f2e4c4;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mz-hero-coffee-strip__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
}

.mz-hero-coffee-strip__links a,
.mz-hero-coffee-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.mz-hero-coffee-strip__links a {
  padding: 8px 14px;
  color: rgba(242, 228, 196, .86);
  border: 1px solid rgba(201, 168, 76, .25);
  background: rgba(255, 255, 255, .035);
  font-size: 13px;
  font-weight: 750;
}

.mz-hero-coffee-strip__cta {
  padding: 8px 18px;
  color: #2c2416;
  border: 1px solid rgba(232, 217, 184, .22);
  background: linear-gradient(135deg, #d7b85f, #b88d27);
  font-size: 13px;
  font-weight: 900;
}

.mz-hero-coffee-strip__links a:hover,
.mz-hero-coffee-strip__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 168, 76, .62);
}

/* Phone */
@media (max-width: 900px) {
  .mz-hero-coffee-strip {
    padding: 0 12px;
  }

  .mz-hero-coffee-strip__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px;
  }

  .mz-hero-coffee-strip__intro {
    text-align: center;
  }

  .mz-hero-coffee-strip__title {
    white-space: normal;
  }

  .mz-hero-coffee-strip__links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .mz-hero-coffee-strip__links::-webkit-scrollbar {
    display: none;
  }

  .mz-hero-coffee-strip__links a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .mz-hero-coffee-strip__cta {
    width: 100%;
    min-height: 40px;
  }
}

/* =========================================================
   MA-ZAL Premium Coffee Product Dock
   ========================================================= */

.mz-gateway-hero {
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.mz-hero-coffee-strip {
  position: relative;
  z-index: 20;
  margin: -118px auto 0;
  padding: 0 clamp(14px, 3.2vw, 54px);
  pointer-events: none;
}

.mz-hero-coffee-strip a {
  pointer-events: auto;
}

.mz-hero-coffee-strip__products {
  position: relative;
  z-index: 22;
  max-width: 1180px;
  margin: 0 auto -26px;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
  padding: 0 12px;
}

.mz-hero-coffee-pack {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  transition: transform .22s ease, filter .22s ease;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.30));
}

.mz-hero-coffee-pack:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.38));
}

.mz-hero-coffee-pack img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.mz-hero-coffee-pack--plain {
  width: clamp(120px, 10vw, 180px);
  transform: translateY(18px);
  z-index: 2;
}

.mz-hero-coffee-pack--medium {
  width: clamp(150px, 12vw, 220px);
  transform: translateY(-8px);
  z-index: 4;
}

.mz-hero-coffee-pack--extra {
  width: clamp(120px, 10vw, 180px);
  transform: translateY(10px);
  z-index: 3;
}

.mz-hero-coffee-strip__inner {
  position: relative;
  z-index: 21;
  max-width: 1360px;
  margin: 0 auto;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(200px, .9fr) minmax(380px, 1.8fr) auto;
  align-items: end;
  gap: 14px;
  padding: 44px 18px 14px;
  border: 1px solid rgba(201, 168, 76, .28);
  border-top-color: rgba(201, 168, 76, .42);
  background:
    linear-gradient(180deg, rgba(29, 20, 8, .86) 0%, rgba(18, 12, 5, .94) 100%);
  box-shadow: 0 16px 32px rgba(0,0,0,.26);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.mz-hero-coffee-strip__side {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mz-hero-coffee-strip__side--start {
  text-align: start;
}

.mz-hero-coffee-strip__side--end {
  justify-items: end;
}

.mz-hero-coffee-strip__eyebrow {
  color: rgba(201, 168, 76, .88);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mz-hero-coffee-strip__title {
  color: #f3e6c7;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.2;
  font-weight: 900;
}

.mz-hero-coffee-strip__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.mz-hero-coffee-strip__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(242, 228, 196, .90);
  border: 1px solid rgba(201, 168, 76, .22);
  background: rgba(255,255,255,.035);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.mz-hero-coffee-strip__links a:hover {
  transform: translateY(-1px);
  border-color: rgba(201,168,76,.56);
  background: rgba(255,255,255,.06);
}

.mz-hero-coffee-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #2c2416;
  border: 1px solid rgba(232,217,184,.26);
  background: linear-gradient(135deg, #d8b860, #ba912e);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}

.mz-hero-coffee-strip__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
}

/* Large laptop tune */
@media (max-width: 1280px) {
  .mz-hero-coffee-strip {
    margin-top: -104px;
  }

  .mz-hero-coffee-strip__products {
    min-height: 154px;
  }

  .mz-hero-coffee-strip__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 40px;
  }

  .mz-hero-coffee-strip__side--end {
    justify-items: center;
  }
}

/* Tablet / phone */
@media (max-width: 900px) {
  .mz-hero-coffee-strip {
    margin-top: -56px;
    padding: 0 12px;
  }

  .mz-hero-coffee-strip__products {
    min-height: 96px;
    gap: 6px;
    margin-bottom: -10px;
    padding: 0 6px;
  }

  .mz-hero-coffee-pack--plain,
  .mz-hero-coffee-pack--extra {
    width: 82px;
    transform: translateY(8px);
  }

  .mz-hero-coffee-pack--medium {
    width: 98px;
    transform: translateY(-2px);
  }

  .mz-hero-coffee-strip__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 12px 12px;
    min-height: auto;
  }

  .mz-hero-coffee-strip__side,
  .mz-hero-coffee-strip__side--start,
  .mz-hero-coffee-strip__side--end {
    justify-items: center;
    text-align: center;
  }

  .mz-hero-coffee-strip__title {
    font-size: 15px;
  }

  .mz-hero-coffee-strip__links {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .mz-hero-coffee-strip__links::-webkit-scrollbar {
    display: none;
  }

  .mz-hero-coffee-strip__links a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .mz-hero-coffee-strip__cta {
    width: 100%;
  }
}

/* MA-ZAL — Coffee Product Stage refinement */
.mz-hero-coffee-strip {
  margin-top: -150px !important;
  padding-inline: clamp(14px, 4vw, 72px) !important;
}

.mz-hero-coffee-strip__products {
  min-height: 210px !important;
  margin-bottom: -54px !important;
  gap: clamp(8px, 1.3vw, 18px) !important;
}

.mz-hero-coffee-strip__products::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(620px, 78vw);
  height: 92px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,.22), rgba(201,168,76,.08) 42%, transparent 72%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.mz-hero-coffee-pack {
  z-index: 3 !important;
}

.mz-hero-coffee-pack--plain {
  width: clamp(118px, 8.2vw, 148px) !important;
  transform: translateY(-2px) !important;
}

.mz-hero-coffee-pack--medium {
  width: clamp(145px, 10.2vw, 186px) !important;
  transform: translateY(-28px) !important;
}

.mz-hero-coffee-pack--extra {
  width: clamp(118px, 8.2vw, 148px) !important;
  transform: translateY(-4px) !important;
}

.mz-hero-coffee-pack:hover {
  transform: translateY(-34px) !important;
}

.mz-hero-coffee-pack--plain:hover,
.mz-hero-coffee-pack--extra:hover {
  transform: translateY(-10px) !important;
}

.mz-hero-coffee-strip__inner {
  min-height: 82px !important;
  padding: 42px 20px 12px !important;
  grid-template-columns: minmax(220px, 1fr) auto !important;
  justify-content: space-between !important;
  background:
    linear-gradient(180deg, rgba(20,13,4,.78), rgba(12,8,3,.94)) !important;
}

.mz-hero-coffee-strip__links {
  display: none !important;
}

.mz-hero-coffee-strip__side--start {
  text-align: start !important;
}

.mz-hero-coffee-strip__side--end {
  justify-items: end !important;
}

.mz-hero-coffee-strip__title {
  font-size: clamp(17px, 1.45vw, 23px) !important;
}

.mz-hero-coffee-strip__cta {
  min-height: 44px !important;
  padding-inline: 24px !important;
}

/* Phone refinement */
@media (max-width: 900px) {
  .mz-hero-coffee-strip {
    margin-top: -74px !important;
    padding-inline: 10px !important;
  }

  .mz-hero-coffee-strip__products {
    min-height: 120px !important;
    margin-bottom: -30px !important;
    gap: 4px !important;
  }

  .mz-hero-coffee-strip__products::before {
    width: 330px !important;
    height: 58px !important;
    bottom: 12px !important;
  }

  .mz-hero-coffee-pack--plain,
  .mz-hero-coffee-pack--extra {
    width: 72px !important;
    transform: translateY(0) !important;
  }

  .mz-hero-coffee-pack--medium {
    width: 90px !important;
    transform: translateY(-14px) !important;
  }

  .mz-hero-coffee-strip__inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
    padding: 30px 12px 12px !important;
    min-height: auto !important;
  }

  .mz-hero-coffee-strip__side--start,
  .mz-hero-coffee-strip__side--end {
    justify-items: center !important;
    text-align: center !important;
  }

  .mz-hero-coffee-strip__cta {
    width: 100% !important;
  }
}

/* MA-ZAL — Coffee Product Stage refinement */
.mz-hero-coffee-strip {
  margin-top: -150px !important;
  padding-inline: clamp(14px, 4vw, 72px) !important;
}

.mz-hero-coffee-strip__products {
  min-height: 210px !important;
  margin-bottom: -54px !important;
  gap: clamp(8px, 1.3vw, 18px) !important;
}

.mz-hero-coffee-strip__products::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(620px, 78vw);
  height: 92px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,.22), rgba(201,168,76,.08) 42%, transparent 72%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.mz-hero-coffee-pack {
  z-index: 3 !important;
}

.mz-hero-coffee-pack--plain {
  width: clamp(118px, 8.2vw, 148px) !important;
  transform: translateY(-2px) !important;
}

.mz-hero-coffee-pack--medium {
  width: clamp(145px, 10.2vw, 186px) !important;
  transform: translateY(-28px) !important;
}

.mz-hero-coffee-pack--extra {
  width: clamp(118px, 8.2vw, 148px) !important;
  transform: translateY(-4px) !important;
}

.mz-hero-coffee-pack:hover {
  transform: translateY(-34px) !important;
}

.mz-hero-coffee-pack--plain:hover,
.mz-hero-coffee-pack--extra:hover {
  transform: translateY(-10px) !important;
}

.mz-hero-coffee-strip__inner {
  min-height: 82px !important;
  padding: 42px 20px 12px !important;
  grid-template-columns: minmax(220px, 1fr) auto !important;
  justify-content: space-between !important;
  background:
    linear-gradient(180deg, rgba(20,13,4,.78), rgba(12,8,3,.94)) !important;
}

.mz-hero-coffee-strip__links {
  display: none !important;
}

.mz-hero-coffee-strip__side--start {
  text-align: start !important;
}

.mz-hero-coffee-strip__side--end {
  justify-items: end !important;
}

.mz-hero-coffee-strip__title {
  font-size: clamp(17px, 1.45vw, 23px) !important;
}

.mz-hero-coffee-strip__cta {
  min-height: 44px !important;
  padding-inline: 24px !important;
}

/* Phone refinement */
@media (max-width: 900px) {
  .mz-hero-coffee-strip {
    margin-top: -74px !important;
    padding-inline: 10px !important;
  }

  .mz-hero-coffee-strip__products {
    min-height: 120px !important;
    margin-bottom: -30px !important;
    gap: 4px !important;
  }

  .mz-hero-coffee-strip__products::before {
    width: 330px !important;
    height: 58px !important;
    bottom: 12px !important;
  }

  .mz-hero-coffee-pack--plain,
  .mz-hero-coffee-pack--extra {
    width: 72px !important;
    transform: translateY(0) !important;
  }

  .mz-hero-coffee-pack--medium {
    width: 90px !important;
    transform: translateY(-14px) !important;
  }

  .mz-hero-coffee-strip__inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
    padding: 30px 12px 12px !important;
    min-height: auto !important;
  }

  .mz-hero-coffee-strip__side--start,
  .mz-hero-coffee-strip__side--end {
    justify-items: center !important;
    text-align: center !important;
  }

  .mz-hero-coffee-strip__cta {
    width: 100% !important;
  }
}

/* =========================================================
   MA-ZAL Coffee Promo Zone — between slider and footer
   ========================================================= */

.mz-gateway-hero {
  padding-bottom: 0 !important;
  overflow: visible !important;
}

.mz-gateway-hero .mz-gateway-slider__dots,
.mz-gateway-hero .mz-gateway-slider-dots,
.mz-gateway-hero .mz-slider-dots,
.mz-gateway-hero .swiper-pagination,
.mz-gateway-hero [class*="pagination"],
.mz-gateway-hero [class*="dots"] {
  display: none !important;
}

.mz-hero-coffee-promo {
  position: relative !important;
  z-index: 30 !important;
  margin: 0 !important;
  padding: 0 clamp(18px, 5vw, 86px) !important;
  min-height: 170px !important;
  border-top: 1px solid rgba(201,168,76,.22);
  border-bottom: 1px solid rgba(201,168,76,.18);
  background:
    radial-gradient(circle at 76% 0%, rgba(201,168,76,.16), transparent 34%),
    linear-gradient(180deg, rgba(12,8,3,.94), rgba(18,12,4,.98));
  box-shadow: inset 0 1px 0 rgba(232,217,184,.05);
}

.mz-hero-coffee-promo__inner {
  position: relative;
  max-width: 1480px;
  min-height: 170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
}

.mz-hero-coffee-promo__copy {
  position: relative;
  z-index: 4;
  max-width: 610px;
  padding: 24px 0 22px;
}

.mz-hero-coffee-promo__eyebrow {
  display: inline-flex;
  margin-bottom: 7px;
  color: rgba(201,168,76,.94);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mz-hero-coffee-promo__title {
  display: block;
  color: #f4e7c7;
  font-size: clamp(27px, 2.7vw, 44px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.028em;
}

.mz-hero-coffee-promo__text {
  margin: 10px 0 16px;
  color: rgba(232,217,184,.82);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.72;
  font-weight: 550;
}

.mz-hero-coffee-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #2c2416;
  background: linear-gradient(135deg, #d9bb64, #b68c2a);
  border: 1px solid rgba(232,217,184,.26);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.mz-hero-coffee-promo__products {
  position: relative;
  z-index: 3;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 24px);
  padding-top: 0;
  direction: ltr;
}

.mz-hero-coffee-promo__products::before {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 14px;
  width: min(620px, 90%);
  height: 86px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.22), rgba(201,168,76,.08) 45%, transparent 75%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.mz-hero-coffee-promo__pack {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-items: end;
  gap: 6px;
  text-decoration: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.32));
  transition: transform .22s ease, filter .22s ease;
}

.mz-hero-coffee-promo__pack:hover {
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.40));
}

.mz-hero-coffee-promo__pack img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.mz-hero-coffee-promo__pack span {
  color: rgba(242,228,196,.88);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
}

.mz-hero-coffee-promo__pack--plain {
  order: 1;
  width: clamp(96px, 7.2vw, 138px);
  transform: translateY(-8px);
}

.mz-hero-coffee-promo__pack--medium {
  order: 2;
  width: clamp(122px, 8.8vw, 166px);
  transform: translateY(-22px);
}

.mz-hero-coffee-promo__pack--extra {
  order: 3;
  width: clamp(148px, 10.2vw, 196px);
  transform: translateY(-34px);
}

.mz-hero-coffee-promo__pack--plain:hover {
  transform: translateY(-14px);
}

.mz-hero-coffee-promo__pack--medium:hover {
  transform: translateY(-30px);
}

.mz-hero-coffee-promo__pack--extra:hover {
  transform: translateY(-44px);
}

/* RTL: text moves right, products move left, Extra remains outer side */
html[dir="rtl"] .mz-hero-coffee-promo__inner {
  grid-template-columns: minmax(520px, 1.08fr) minmax(360px, .92fr);
}

html[dir="rtl"] .mz-hero-coffee-promo__copy {
  grid-column: 2;
  text-align: right;
}

html[dir="rtl"] .mz-hero-coffee-promo__products {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start;
}

html[dir="rtl"] .mz-hero-coffee-promo__pack--extra {
  order: 1;
}

html[dir="rtl"] .mz-hero-coffee-promo__pack--medium {
  order: 2;
}

html[dir="rtl"] .mz-hero-coffee-promo__pack--plain {
  order: 3;
}

/* LTR */
html[dir="ltr"] .mz-hero-coffee-promo__copy {
  text-align: left;
}

html[dir="ltr"] .mz-hero-coffee-promo__products {
  justify-content: flex-end;
}

/* Tablet */
@media (max-width: 1100px) {
  .mz-hero-coffee-promo {
    padding-inline: 18px !important;
  }

  .mz-hero-coffee-promo__inner,
  html[dir="rtl"] .mz-hero-coffee-promo__inner {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
  }

  .mz-hero-coffee-promo__copy,
  html[dir="rtl"] .mz-hero-coffee-promo__copy {
    grid-column: auto;
    text-align: center;
    justify-self: center;
    padding: 18px 0 0;
  }

  .mz-hero-coffee-promo__products,
  html[dir="rtl"] .mz-hero-coffee-promo__products {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    min-height: 130px;
  }
}

/* Phone */
@media (max-width: 700px) {
  .mz-hero-coffee-promo {
    min-height: auto !important;
    padding-inline: 12px !important;
  }

  .mz-hero-coffee-promo__copy {
    padding-top: 16px;
  }

  .mz-hero-coffee-promo__title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .mz-hero-coffee-promo__text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .mz-hero-coffee-promo__products {
    min-height: 108px !important;
    gap: 4px;
    padding-top: 4px;
  }

  .mz-hero-coffee-promo__products::before {
    width: 330px;
    height: 58px;
    bottom: 9px;
  }

  .mz-hero-coffee-promo__pack--plain {
    width: 72px;
    transform: translateY(-4px);
  }

  .mz-hero-coffee-promo__pack--medium {
    width: 88px;
    transform: translateY(-12px);
  }

  .mz-hero-coffee-promo__pack--extra {
    width: 104px;
    transform: translateY(-20px);
  }

  .mz-hero-coffee-promo__pack span {
    display: none;
  }

  .mz-hero-coffee-promo__cta {
    width: 100%;
  }
}

/* MA-ZAL — Coffee Promo Zone visibility fix */
.mz-hero-coffee-promo {
  min-height: 230px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
}

.mz-hero-coffee-promo__inner {
  min-height: 230px !important;
  align-items: center !important;
}

.mz-hero-coffee-promo__copy {
  padding: 26px 0 32px !important;
  align-self: center !important;
}

.mz-hero-coffee-promo__products {
  min-height: 230px !important;
  align-items: flex-end !important;
  padding-bottom: 24px !important;
  overflow: visible !important;
}

.mz-hero-coffee-promo__pack--plain {
  width: clamp(94px, 7vw, 130px) !important;
  transform: translateY(-8px) !important;
}

.mz-hero-coffee-promo__pack--medium {
  width: clamp(118px, 8.4vw, 158px) !important;
  transform: translateY(-22px) !important;
}

.mz-hero-coffee-promo__pack--extra {
  width: clamp(142px, 9.8vw, 188px) !important;
  transform: translateY(-34px) !important;
}

.mz-hero-coffee-promo__products::before {
  bottom: 36px !important;
}

/* Ensure footer does not visually cover the coffee promo */
.mz-gateway-hero + .mz101-footer,
.mz-gateway-hero ~ .mz101-footer,
.mz-gateway-hero + footer,
.mz-gateway-hero ~ footer {
  position: relative !important;
  z-index: 5 !important;
}

.mz-hero-coffee-promo {
  z-index: 20 !important;
}

/* Phone visibility */
@media (max-width: 700px) {
  .mz-hero-coffee-promo {
    min-height: 250px !important;
  }

  .mz-hero-coffee-promo__inner {
    min-height: 250px !important;
  }

  .mz-hero-coffee-promo__copy {
    padding: 18px 0 10px !important;
  }

  .mz-hero-coffee-promo__products {
    min-height: 112px !important;
    padding-bottom: 18px !important;
  }

  .mz-hero-coffee-promo__pack--plain {
    width: 70px !important;
    transform: translateY(-2px) !important;
  }

  .mz-hero-coffee-promo__pack--medium {
    width: 86px !important;
    transform: translateY(-10px) !important;
  }

  .mz-hero-coffee-promo__pack--extra {
    width: 102px !important;
    transform: translateY(-18px) !important;
  }
}

/* =========================================================
   MA-ZAL — HERO VIEWPORT BASE / Coffee Promo fixed logic
   Rule:
   - Hero occupies visible screen area only.
   - Slider is top area.
   - Promo text strip is narrow below slider.
   - Coffee packs float 95% over slider, 5% into promo strip.
   ========================================================= */

#mz101Hero.mz-gateway-hero {
  --mz-header-visible-h: 96px;
  --mz-footer-visible-h: 108px;
  --mz-coffee-promo-h: 96px;

  position: relative !important;
  height: calc(100svh - var(--mz-header-visible-h) - var(--mz-footer-visible-h)) !important;
  min-height: 520px !important;
  max-height: 760px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #070502 !important;
}

/* The rendered slider is the first child before promo */
#mz101Hero.mz-gateway-hero > :first-child:not(.mz-hero-coffee-promo) {
  height: calc(100% - var(--mz-coffee-promo-h)) !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
}

/* Force common slider internals to respect the available top area */
#mz101Hero .mz-gateway-slider,
#mz101Hero .mz-gateway-slider__viewport,
#mz101Hero .mz-gateway-slider__track,
#mz101Hero .mz-gateway-slide,
#mz101Hero [class*="slider"],
#mz101Hero [class*="slide"] {
  max-height: 100% !important;
}

#mz101Hero img {
  max-height: none;
}

/* Remove old dots / pagination */
#mz101Hero .mz-gateway-slider__dots,
#mz101Hero .mz-gateway-slider-dots,
#mz101Hero .mz-slider-dots,
#mz101Hero .swiper-pagination,
#mz101Hero [class*="pagination"],
#mz101Hero [class*="dots"] {
  display: none !important;
}

/* Promo strip: this is ONLY the narrow visible area below the slider */
#mz101Hero .mz-hero-coffee-promo {
  position: relative !important;
  z-index: 30 !important;
  height: var(--mz-coffee-promo-h) !important;
  min-height: var(--mz-coffee-promo-h) !important;
  max-height: var(--mz-coffee-promo-h) !important;
  margin: 0 !important;
  padding: 0 clamp(18px, 5vw, 86px) !important;
  overflow: visible !important;
  border-top: 1px solid rgba(201,168,76,.28) !important;
  border-bottom: 0 !important;
  background:
    linear-gradient(180deg, rgba(18,12,5,.92), rgba(9,6,2,.98)) !important;
  box-shadow: inset 0 1px 0 rgba(232,217,184,.05) !important;
}

/* Promo content must fit inside the narrow strip */
#mz101Hero .mz-hero-coffee-promo__inner {
  position: relative !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: 1480px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(320px, .95fr) minmax(440px, 1.05fr) !important;
  align-items: center !important;
  gap: clamp(20px, 4vw, 72px) !important;
}

#mz101Hero .mz-hero-coffee-promo__copy {
  position: relative !important;
  z-index: 6 !important;
  max-width: 650px !important;
  padding: 0 !important;
  align-self: center !important;
}

#mz101Hero .mz-hero-coffee-promo__eyebrow {
  margin-bottom: 3px !important;
  font-size: 10px !important;
  line-height: 1.1 !important;
  letter-spacing: .13em !important;
}

#mz101Hero .mz-hero-coffee-promo__title {
  font-size: clamp(20px, 2.05vw, 32px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
}

#mz101Hero .mz-hero-coffee-promo__text {
  margin: 5px 0 0 !important;
  max-width: 620px !important;
  font-size: clamp(12px, .95vw, 15px) !important;
  line-height: 1.48 !important;
}

/* Keep CTA hidden for now to preserve the narrow strip */
#mz101Hero .mz-hero-coffee-promo__cta {
  display: none !important;
}

/* Product group: not inside strip visually.
   Its anchor is the top edge of promo strip.
   translateY(-95%) means only 5% enters the text strip. */
#mz101Hero .mz-hero-coffee-promo__products {
  position: absolute !important;
  top: 0 !important;
  inset-inline-end: 0 !important;
  z-index: 7 !important;
  width: min(520px, 44vw) !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: clamp(8px, 1.2vw, 18px) !important;
  direction: ltr !important;
  transform: translateY(-95%) !important;
  pointer-events: none !important;
}

#mz101Hero .mz-hero-coffee-promo__products::before {
  content: "" !important;
  position: absolute !important;
  left: 54% !important;
  bottom: 6px !important;
  width: min(500px, 100%) !important;
  height: 72px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.20), rgba(201,168,76,.07) 45%, transparent 74%) !important;
  filter: blur(2px) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

#mz101Hero .mz-hero-coffee-promo__pack {
  position: relative !important;
  z-index: 3 !important;
  display: grid !important;
  justify-items: center !important;
  text-decoration: none !important;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.34)) !important;
  pointer-events: auto !important;
}

#mz101Hero .mz-hero-coffee-promo__pack img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  pointer-events: none !important;
  user-select: none !important;
}

#mz101Hero .mz-hero-coffee-promo__pack span {
  display: none !important;
}

/* LTR order: Plain left, Medium middle, Extra largest at far right */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* RTL: products on opposite side, Extra largest at far left */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  inset-inline-end: auto !important;
  inset-inline-start: 0 !important;
  justify-content: flex-start !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 2 !important;
  text-align: right !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 1 !important;
  text-align: left !important;
}

/* Sizes: Extra biggest, Medium smaller, Plain smaller */
#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(82px, 6.2vw, 118px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(102px, 7.4vw, 142px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(126px, 8.8vw, 170px) !important;
}

/* Phone: hero still viewport-based, strip remains narrow */
@media (max-width: 900px) {
  #mz101Hero.mz-gateway-hero {
    --mz-header-visible-h: 74px;
    --mz-footer-visible-h: 92px;
    --mz-coffee-promo-h: 118px;

    min-height: 520px !important;
    max-height: none !important;
  }

  #mz101Hero .mz-hero-coffee-promo {
    padding: 0 12px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
    grid-column: 1 !important;
    text-align: center !important;
    max-width: 94vw !important;
  }

  #mz101Hero .mz-hero-coffee-promo__title {
    font-size: clamp(18px, 5.6vw, 25px) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__text {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  #mz101Hero .mz-hero-coffee-promo__products,
  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
    left: 50% !important;
    right: auto !important;
    inset-inline-start: auto !important;
    inset-inline-end: auto !important;
    justify-content: center !important;
    width: min(320px, 94vw) !important;
    transform: translate(-50%, -92%) !important;
    gap: 5px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--plain {
    width: 62px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--medium {
    width: 76px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--extra {
    width: 92px !important;
  }
}

/* =========================================================
   MA-ZAL HERO COFFEE — TWO CONTAINERS FINAL BASE
   Slider container above + promo container below.
   Coffee bags are anchored to bottom of hero and float upward.
   ========================================================= */

#mz101Hero.mz-gateway-hero {
  --mz-top-header-h: 96px;
  --mz-bottom-footer-h: 108px;
  --mz-promo-h: 104px;

  position: relative !important;
  height: calc(100svh - var(--mz-top-header-h) - var(--mz-bottom-footer-h)) !important;
  min-height: 520px !important;
  max-height: 680px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #080501 !important;
}

/* السلايدر: الحاوية العلوية */
#mz101Hero.mz-gateway-hero > *:not(.mz-hero-coffee-promo) {
  height: calc(100% - var(--mz-promo-h)) !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
}

/* إجبار عناصر السلايدر الداخلية على ملء الحاوية العلوية بدون خلق فراغ أسود */
#mz101Hero .mz-gateway-slider,
#mz101Hero .mz-gateway-slider__viewport,
#mz101Hero .mz-gateway-slider__track,
#mz101Hero .mz-gateway-slider__slide,
#mz101Hero .mz-gateway-slide,
#mz101Hero [data-mz-gateway-slider],
#mz101Hero [data-mz-gateway-slide] {
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
}

#mz101Hero .mz-gateway-slider img,
#mz101Hero .mz-gateway-slide img,
#mz101Hero [class*="slide"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* إلغاء النقاط */
#mz101Hero .mz-gateway-slider__dots,
#mz101Hero .mz-gateway-slider-dots,
#mz101Hero .mz-slider-dots,
#mz101Hero .swiper-pagination,
#mz101Hero [class*="pagination"],
#mz101Hero [class*="dots"] {
  display: none !important;
}

/* الدعاية: الحاوية السفلى فقط */
#mz101Hero .mz-hero-coffee-promo {
  position: relative !important;
  z-index: 30 !important;
  height: var(--mz-promo-h) !important;
  min-height: var(--mz-promo-h) !important;
  max-height: var(--mz-promo-h) !important;
  margin: 0 !important;
  padding: 0 clamp(28px, 6vw, 110px) !important;
  overflow: visible !important;
  border-top: 1px solid rgba(201,168,76,.30) !important;
  background:
    radial-gradient(circle at 78% 10%, rgba(201,168,76,.14), transparent 30%),
    linear-gradient(180deg, rgba(22,14,5,.94), rgba(9,6,2,.99)) !important;
}

/* داخل حاوية الدعاية */
#mz101Hero .mz-hero-coffee-promo__inner {
  position: relative !important;
  height: 100% !important;
  max-width: 1480px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(360px, .88fr) minmax(520px, 1.12fr) !important;
  align-items: center !important;
  gap: clamp(24px, 5vw, 90px) !important;
}

/* النص الدعائي داخل المساحة الضيقة */
#mz101Hero .mz-hero-coffee-promo__copy {
  position: relative !important;
  z-index: 50 !important;
  grid-column: 1 !important;
  max-width: 680px !important;
  padding: 0 !important;
  align-self: center !important;
}

#mz101Hero .mz-hero-coffee-promo__eyebrow {
  display: block !important;
  margin: 0 0 3px !important;
  color: rgba(201,168,76,.96) !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
}

#mz101Hero .mz-hero-coffee-promo__title {
  display: block !important;
  color: #fff0c8 !important;
  font-size: clamp(24px, 2.45vw, 40px) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 10px 24px rgba(0,0,0,.32) !important;
}

#mz101Hero .mz-hero-coffee-promo__text {
  margin: 5px 0 0 !important;
  max-width: 660px !important;
  color: rgba(232,217,184,.84) !important;
  font-size: clamp(12px, .95vw, 15px) !important;
  line-height: 1.42 !important;
  font-weight: 600 !important;
}

#mz101Hero .mz-hero-coffee-promo__cta {
  display: none !important;
}

/* الأكياس: لا تعيش داخل النص، بل مثبتة من أسفل الهيرو وتطفو للأعلى */
#mz101Hero .mz-hero-coffee-promo__products {
  position: absolute !important;
  z-index: 45 !important;
  right: clamp(42px, 8vw, 150px) !important;
  bottom: 0 !important;
  width: min(520px, 42vw) !important;
  height: calc(var(--mz-promo-h) + 150px) !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: clamp(8px, 1.3vw, 20px) !important;
  padding: 0 !important;
  direction: ltr !important;
  pointer-events: none !important;
}

#mz101Hero .mz-hero-coffee-promo__products::before {
  content: "" !important;
  position: absolute !important;
  left: 56% !important;
  bottom: 4px !important;
  width: min(520px, 100%) !important;
  height: 84px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.22), rgba(201,168,76,.07) 46%, transparent 74%) !important;
  filter: blur(2px) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* كل الأكياس محاذية من الأسفل */
#mz101Hero .mz-hero-coffee-promo__pack {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  align-self: flex-end !important;
  text-decoration: none !important;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.38)) !important;
  pointer-events: auto !important;
  transition: transform .22s ease, filter .22s ease !important;
}

#mz101Hero .mz-hero-coffee-promo__pack:hover {
  filter: drop-shadow(0 25px 36px rgba(0,0,0,.46)) !important;
  transform: translateY(-6px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  pointer-events: none !important;
  user-select: none !important;
}

#mz101Hero .mz-hero-coffee-promo__pack span {
  display: none !important;
}

/* LTR: Extra أكبر في أقصى اليمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* RTL: الأكياس تتحول لليسار، Extra أكبر في أقصى اليسار */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  right: auto !important;
  left: clamp(42px, 8vw, 150px) !important;
  justify-content: flex-start !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 2 !important;
  text-align: right !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  text-align: left !important;
}

/* أحجام الأكياس: القاعدة من الأسفل، التدرج من الحجم */
#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(88px, 6.4vw, 124px) !important;
}
#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(112px, 7.7vw, 152px) !important;
}
#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(150px, 10.2vw, 210px) !important;
}

/* Laptop tighter */
@media (max-width: 1280px) {
  #mz101Hero.mz-gateway-hero {
    --mz-promo-h: 96px;
  }

  #mz101Hero .mz-hero-coffee-promo__products {
    right: clamp(24px, 5vw, 80px) !important;
    width: min(450px, 42vw) !important;
  }

  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
    left: clamp(24px, 5vw, 80px) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--plain {
    width: clamp(78px, 6vw, 108px) !important;
  }
  #mz101Hero .mz-hero-coffee-promo__pack--medium {
    width: clamp(96px, 7.1vw, 132px) !important;
  }
  #mz101Hero .mz-hero-coffee-promo__pack--extra {
    width: clamp(128px, 9vw, 176px) !important;
  }
}

/* Phone */
@media (max-width: 900px) {
  #mz101Hero.mz-gateway-hero {
    --mz-top-header-h: 74px;
    --mz-bottom-footer-h: 92px;
    --mz-promo-h: 118px;

    min-height: 520px !important;
    max-height: none !important;
  }

  #mz101Hero .mz-hero-coffee-promo {
    padding: 0 12px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
    grid-column: 1 !important;
    text-align: center !important;
    max-width: 94vw !important;
  }

  #mz101Hero .mz-hero-coffee-promo__title {
    font-size: clamp(20px, 6.2vw, 29px) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__text {
    font-size: 12px !important;
    line-height: 1.42 !important;
  }

  #mz101Hero .mz-hero-coffee-promo__products,
  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
    left: 50% !important;
    right: auto !important;
    width: min(320px, 94vw) !important;
    height: 176px !important;
    justify-content: center !important;
    transform: translateX(-50%) !important;
    gap: 5px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--plain {
    width: 62px !important;
  }
  #mz101Hero .mz-hero-coffee-promo__pack--medium {
    width: 78px !important;
  }
  #mz101Hero .mz-hero-coffee-promo__pack--extra {
    width: 100px !important;
  }
}

/* =========================================================
   MA-ZAL Coffee Bags — match Photoshop reference
   هدف هذا البلوك: ضبط الصور فقط مثل لقطة الفوتوشوب
   ========================================================= */

/* مكان مجموعة الأكياس */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
  right: clamp(70px, 9vw, 165px) !important;
  left: auto !important;
  bottom: 18px !important;
  width: min(545px, 43vw) !important;
  height: 285px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: clamp(10px, 1.35vw, 22px) !important;
  transform: none !important;
  pointer-events: none !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  left: clamp(70px, 9vw, 165px) !important;
  right: auto !important;
  bottom: 18px !important;
  width: min(545px, 43vw) !important;
  height: 285px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: clamp(10px, 1.35vw, 22px) !important;
  transform: none !important;
  pointer-events: none !important;
}

/* الهالة أسفل الأكياس مثل قاعدة خفيفة */
#mz101Hero .mz-hero-coffee-promo__products::before {
  left: 56% !important;
  bottom: 4px !important;
  width: min(540px, 100%) !important;
  height: 92px !important;
  background:
    radial-gradient(ellipse at center,
      rgba(201,168,76,.22),
      rgba(201,168,76,.08) 44%,
      transparent 74%
    ) !important;
  filter: blur(3px) !important;
  opacity: .95 !important;
}

/* محاذاة الأسفل لكل الأكياس */
#mz101Hero .mz-hero-coffee-promo__pack {
  align-self: flex-end !important;
  transform-origin: center bottom !important;
}

/* ترتيب LTR مثل الفوتوشوب: Plain ثم Medium ثم Extra على اليمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* ترتيب RTL مع عكس الجهة: Extra يصبح أقصى اليسار */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

/* الأحجام مثل لقطة الفوتوشوب */
#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(88px, 6.5vw, 128px) !important;
  margin-bottom: 0 !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(118px, 8.2vw, 160px) !important;
  margin-bottom: 0 !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(165px, 11.1vw, 222px) !important;
  margin-bottom: 0 !important;
}

/* حركة خفيفة فقط بدون تغيير التكوين */
#mz101Hero .mz-hero-coffee-promo__pack:hover {
  transform: translateY(-5px) !important;
}

/* اخفِ أسماء المنتجات تحت الصور */
#mz101Hero .mz-hero-coffee-promo__pack span {
  display: none !important;
}

/* ضبط الدعاية حتى لا تصطدم بالصور */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  max-width: min(720px, 46vw) !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  max-width: min(720px, 46vw) !important;
}

/* Laptop */
@media (max-width: 1280px) {
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
    right: clamp(42px, 6vw, 95px) !important;
    width: min(455px, 42vw) !important;
    height: 246px !important;
  }

  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
    left: clamp(42px, 6vw, 95px) !important;
    width: min(455px, 42vw) !important;
    height: 246px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--plain {
    width: clamp(78px, 6vw, 108px) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--medium {
    width: clamp(100px, 7.1vw, 132px) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--extra {
    width: clamp(132px, 9vw, 176px) !important;
  }
}

/* Phone: ترتيب مصغر ومركزي */
@media (max-width: 900px) {
  #mz101Hero .mz-hero-coffee-promo__products,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products,
  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
    left: 50% !important;
    right: auto !important;
    bottom: 78px !important;
    width: min(310px, 92vw) !important;
    height: 150px !important;
    justify-content: center !important;
    gap: 5px !important;
    transform: translateX(-50%) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--plain {
    width: 62px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--medium {
    width: 78px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--extra {
    width: 102px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
    max-width: 94vw !important;
  }
}

/* =========================================================
   TEST ONLY — Coffee lower promo split into two columns
   Arabic/RTL: images left, text right
   ========================================================= */

/* الحاوية السفلى */
#mz101Hero .mz-hero-coffee-promo {
  height: var(--mz-promo-h) !important;
  min-height: var(--mz-promo-h) !important;
  max-height: var(--mz-promo-h) !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* تقسيم الحاوية السفلى إلى يمين ويسار */
#mz101Hero .mz-hero-coffee-promo__inner {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  display: grid !important;
  grid-template-columns: 50% 50% !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 0 !important;
}

/* العربي: النص في اليمين */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 7vw 0 3vw !important;
  text-align: right !important;
  justify-self: stretch !important;
}

/* العربي: الصور في اليسار */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  grid-column: 1 !important;
  left: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  width: 50vw !important;
  height: calc(var(--mz-promo-h) + 190px) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: clamp(8px, 1.4vw, 22px) !important;
  transform: none !important;
  pointer-events: none !important;
}

/* الإنجليزي: النص في اليسار */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0 3vw 0 7vw !important;
  text-align: left !important;
  justify-self: stretch !important;
}

/* الإنجليزي: الصور في اليمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
  grid-column: 2 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  width: 50vw !important;
  height: calc(var(--mz-promo-h) + 190px) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: clamp(8px, 1.4vw, 22px) !important;
  transform: none !important;
  pointer-events: none !important;
}

/* مؤقتًا: النص داخل نصفه فقط */
#mz101Hero .mz-hero-coffee-promo__title {
  font-size: clamp(22px, 2.15vw, 36px) !important;
  line-height: 1.05 !important;
}

#mz101Hero .mz-hero-coffee-promo__text {
  max-width: 620px !important;
}

/* الصور محاذاة من الأسفل */
#mz101Hero .mz-hero-coffee-promo__pack {
  align-self: flex-end !important;
  transform-origin: center bottom !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(82px, 6.2vw, 120px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(110px, 7.6vw, 150px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(152px, 10.4vw, 215px) !important;
}

/* الهاتف مؤقتًا: عمود واحد حتى لا ينكسر */
@media (max-width: 900px) {
  #mz101Hero .mz-hero-coffee-promo__inner {
    grid-template-columns: 1fr !important;
  }

  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
    grid-column: 1 !important;
    padding: 0 14px !important;
    text-align: center !important;
  }

  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
    left: 50% !important;
    right: auto !important;
    width: 320px !important;
    height: 170px !important;
    justify-content: center !important;
    transform: translateX(-50%) !important;
  }
}

/* =========================================================
   FINAL OVERRIDE — LOWER PROMO ONLY
   المطلوب فقط:
   - الحاوية السفلى مقسومة 50% / 50%
   - عربي: الصور يسار، النص يمين
   - إنجليزي: الصور يمين، النص يسار
   - لا تغيير في السلايدر نفسه
   ========================================================= */

#mz101Hero .mz-hero-coffee-promo {
  position: relative !important;
  z-index: 50 !important;
  height: var(--mz-promo-h, 112px) !important;
  min-height: var(--mz-promo-h, 112px) !important;
  max-height: var(--mz-promo-h, 112px) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

#mz101Hero .mz-hero-coffee-promo__inner {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 50% 50% !important;
  align-items: stretch !important;
  gap: 0 !important;
}

/* النص داخل نصفه فقط */
#mz101Hero .mz-hero-coffee-promo__copy {
  position: relative !important;
  z-index: 70 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: stretch !important;
  transform: none !important;
}

/* الصور داخل نصفها فقط، لكنها تسمح للأكياس أن تطفو للأعلى */
#mz101Hero .mz-hero-coffee-promo__products {
  position: relative !important;
  z-index: 65 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: flex-end !important;
  gap: clamp(8px, 1.4vw, 22px) !important;
  overflow: visible !important;
  pointer-events: none !important;
  direction: ltr !important;
}

/* عربي: الصور يسار، النص يمين */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  grid-column: 1 !important;
  justify-content: center !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 2 !important;
  text-align: right !important;
  padding: 0 7vw 0 3vw !important;
}

/* إنجليزي وباقي LTR: النص يسار، الصور يمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 1 !important;
  text-align: left !important;
  padding: 0 3vw 0 7vw !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
  grid-column: 2 !important;
  justify-content: center !important;
}

/* إلغاء أي حركة/موضع قديم على الأكياس */
#mz101Hero .mz-hero-coffee-promo__pack {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  align-self: flex-end !important;
  transform: none !important;
  transform-origin: center bottom !important;
  pointer-events: auto !important;
  display: block !important;
  text-decoration: none !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.38)) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack:hover {
  transform: translateY(-5px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  pointer-events: none !important;
  user-select: none !important;
}

#mz101Hero .mz-hero-coffee-promo__pack span {
  display: none !important;
}

/* ترتيب الصور:
   RTL: Extra أقصى اليسار داخل حاوية الصور
   LTR: Extra أقصى اليمين داخل حاوية الصور */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* أحجام الصور فقط */
#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(78px, 6vw, 118px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(104px, 7.5vw, 148px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(150px, 10.6vw, 220px) !important;
}

/* النص داخل نصفه */
#mz101Hero .mz-hero-coffee-promo__eyebrow {
  margin: 0 0 4px !important;
}

#mz101Hero .mz-hero-coffee-promo__title {
  font-size: clamp(22px, 2.15vw, 36px) !important;
  line-height: 1.05 !important;
}

#mz101Hero .mz-hero-coffee-promo__text {
  margin: 6px 0 0 !important;
  max-width: 620px !important;
  font-size: clamp(12px, .95vw, 15px) !important;
  line-height: 1.45 !important;
}

#mz101Hero .mz-hero-coffee-promo__cta {
  display: none !important;
}

/* الهاتف: لا نحكم عليه الآن، فقط لا نكسره */
@media (max-width: 900px) {
  #mz101Hero .mz-hero-coffee-promo {
    height: 132px !important;
    min-height: 132px !important;
    max-height: 132px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__inner {
    grid-template-columns: 1fr !important;
  }

  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
    grid-column: 1 !important;
    text-align: center !important;
    padding: 0 14px !important;
  }

  html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products,
  html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 92px !important;
    width: min(320px, 92vw) !important;
    height: 150px !important;
    justify-content: center !important;
    transform: translateX(-50%) !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--plain {
    width: 58px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--medium {
    width: 74px !important;
  }

  #mz101Hero .mz-hero-coffee-promo__pack--extra {
    width: 96px !important;
  }
}

/* =========================================================
   HARD FIX — Coffee lower split with absolute floating images
   هذا البلوك يلغي نتيجة البلوك السابق القبيحة.
   ========================================================= */

#mz101Hero .mz-hero-coffee-promo {
  position: relative !important;
  height: 118px !important;
  min-height: 118px !important;
  max-height: 118px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  z-index: 80 !important;
  background:
    linear-gradient(90deg, rgba(5,3,1,.96), rgba(22,14,5,.94), rgba(5,3,1,.96)) !important;
  border-top: 1px solid rgba(201,168,76,.26) !important;
}

/* الحاوية السفلى: نصفين حقيقيين */
#mz101Hero .mz-hero-coffee-promo__inner {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 118px !important;
  min-height: 118px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 50% 50% !important;
  align-items: stretch !important;
  gap: 0 !important;
  overflow: visible !important;
}

/* النص */
#mz101Hero .mz-hero-coffee-promo__copy {
  position: relative !important;
  z-index: 90 !important;
  width: 100% !important;
  height: 118px !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  transform: none !important;
}

/* العربي: النص يمين */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 2 !important;
  padding: 0 7vw 0 2vw !important;
  text-align: right !important;
}

/* الإنجليزي: النص يسار */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 1 !important;
  padding: 0 2vw 0 7vw !important;
  text-align: left !important;
}

/* الصور: لا تكون relative داخل الشريط، بل absolute وتطفو للأعلى */
#mz101Hero .mz-hero-coffee-promo__products {
  position: absolute !important;
  z-index: 100 !important;
  top: auto !important;
  bottom: 0 !important;
  width: 50vw !important;
  height: 300px !important;
  min-height: 300px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: clamp(10px, 1.45vw, 24px) !important;
  transform: none !important;
  overflow: visible !important;
  pointer-events: none !important;
  direction: ltr !important;
}

/* العربي: الصور يسار */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  left: 0 !important;
  right: auto !important;
}

/* الإنجليزي: الصور يمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
  right: 0 !important;
  left: auto !important;
}

/* إلغاء الهالة الكبيرة مؤقتًا حتى لا تخفي التفاصيل */
#mz101Hero .mz-hero-coffee-promo__products::before {
  display: none !important;
}

/* الأكياس نفسها */
#mz101Hero .mz-hero-coffee-promo__pack {
  position: relative !important;
  z-index: 110 !important;
  display: block !important;
  align-self: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  inset: auto !important;
  transform: none !important;
  transform-origin: center bottom !important;
  pointer-events: auto !important;
  text-decoration: none !important;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.42)) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  pointer-events: none !important;
  user-select: none !important;
}

#mz101Hero .mz-hero-coffee-promo__pack span {
  display: none !important;
}

/* العربي: Extra أقصى اليسار */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

/* الإنجليزي: Extra أقصى اليمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* أحجام واضحة لرؤية التقسيم */
#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(86px, 6.4vw, 122px) !important;
}
#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(112px, 7.8vw, 154px) !important;
}
#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(160px, 11vw, 224px) !important;
}

/* النص */
#mz101Hero .mz-hero-coffee-promo__eyebrow {
  margin: 0 0 3px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

#mz101Hero .mz-hero-coffee-promo__title {
  font-size: clamp(25px, 2.35vw, 40px) !important;
  line-height: 1.02 !important;
  margin: 0 !important;
}

#mz101Hero .mz-hero-coffee-promo__text {
  margin: 6px 0 0 !important;
  max-width: 660px !important;
  font-size: clamp(12px, .95vw, 15px) !important;
  line-height: 1.4 !important;
}

#mz101Hero .mz-hero-coffee-promo__cta {
  display: none !important;
}

/* =========================================================
   FIX ONLY — keep RTL text inside its right 50% column
   ========================================================= */

/* الحاوية السفلى تبقى نصفين */
#mz101Hero .mz-hero-coffee-promo__inner {
  grid-template-columns: 50% 50% !important;
  overflow: visible !important;
}

/* العربي: الصور في النصف اليسار فقط */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  width: 50% !important;
  height: 300px !important;
  justify-content: center !important;
  z-index: 100 !important;
}

/* العربي: النص في النصف اليمين فقط */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 0 7vw 0 2vw !important;
  text-align: right !important;
  overflow: hidden !important;
  z-index: 120 !important;
}

/* منع العنوان العربي من الخروج إلى نصف الصور */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__title,
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__text,
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__eyebrow {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-align: right !important;
}

/* تصغير العنوان العربي قليلًا لأن الجملة أطول من الإنجليزية */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__title {
  font-size: clamp(22px, 2vw, 34px) !important;
  line-height: 1.08 !important;
}

/* الوصف العربي يبقى تحت العنوان داخل نفس النصف */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__text {
  font-size: clamp(12px, .9vw, 14px) !important;
  line-height: 1.45 !important;
  max-width: 560px !important;
  margin-inline-start: auto !important;
  margin-inline-end: 0 !important;
}

/* الإنجليزي يبقى كما هو */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
  width: 50% !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  overflow: visible !important;
}

/* =========================================================
   HARD ISOLATION — Coffee promo halves
   الهدف:
   - لا تداخل بين النص والصور نهائياً
   - RTL/Arabic: الصور يسار، النص يمين
   - LTR: النص يسار، الصور يمين
   - لا تغيير في السلايدر
   ========================================================= */

#mz101Hero .mz-hero-coffee-promo {
  position: relative !important;
  height: 126px !important;
  min-height: 126px !important;
  max-height: 126px !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  z-index: 60 !important;
  background: linear-gradient(90deg, rgba(5,3,1,.97), rgba(22,14,5,.95), rgba(5,3,1,.97)) !important;
  border-top: 1px solid rgba(201,168,76,.28) !important;
}

#mz101Hero .mz-hero-coffee-promo__inner {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 126px !important;
  min-height: 126px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

/* ألغِ أي Grid/Flex قديم على النص والصور */
#mz101Hero .mz-hero-coffee-promo__copy,
#mz101Hero .mz-hero-coffee-promo__products {
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  align-self: auto !important;
  transform: none !important;
}

/* نصف النص — مستقل تماماً */
#mz101Hero .mz-hero-coffee-promo__copy {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 50% !important;
  height: 126px !important;
  max-width: 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 90 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* نصف الصور — مستقل تماماً */
#mz101Hero .mz-hero-coffee-promo__products {
  position: absolute !important;
  top: auto !important;
  bottom: 0 !important;
  width: 50% !important;
  height: 310px !important;
  max-width: 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 80 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: clamp(10px, 1.35vw, 22px) !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  pointer-events: none !important;
  direction: ltr !important;
}

/* LTR: النص يسار، الصور يمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy,
body[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  left: 0 !important;
  right: auto !important;
  padding: 0 2vw 0 7vw !important;
  text-align: left !important;
  direction: ltr !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products,
body[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__products {
  right: 0 !important;
  left: auto !important;
}

/* RTL: الصور يسار، النص يمين */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
body[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
body.rtl #mz101Hero .mz-hero-coffee-promo__copy {
  right: 0 !important;
  left: auto !important;
  padding: 0 7vw 0 2vw !important;
  text-align: right !important;
  direction: rtl !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products,
body[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__products,
body.rtl #mz101Hero .mz-hero-coffee-promo__products {
  left: 0 !important;
  right: auto !important;
}

/* منع أي خلفية/هالة من عمل فوضى */
#mz101Hero .mz-hero-coffee-promo__products::before {
  display: none !important;
}

/* الأكياس */
#mz101Hero .mz-hero-coffee-promo__pack {
  position: relative !important;
  display: block !important;
  align-self: flex-end !important;
  inset: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transform-origin: center bottom !important;
  pointer-events: auto !important;
  text-decoration: none !important;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.45)) !important;
  z-index: 85 !important;
}

#mz101Hero .mz-hero-coffee-promo__pack:hover {
  transform: translateY(-5px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  pointer-events: none !important;
  user-select: none !important;
}

#mz101Hero .mz-hero-coffee-promo__pack span {
  display: none !important;
}

/* LTR ترتيب الصور: Plain ثم Medium ثم Extra في أقصى اليمين */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain,
body[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium,
body[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra,
body[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* RTL ترتيب الصور: Extra في أقصى اليسار */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra,
body[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra,
body.rtl #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium,
body[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium,
body.rtl #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain,
body[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain,
body.rtl #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

/* أحجام الأكياس */
#mz101Hero .mz-hero-coffee-promo__pack--plain {
  width: clamp(82px, 6vw, 118px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--medium {
  width: clamp(108px, 7.4vw, 150px) !important;
}

#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(158px, 10.6vw, 220px) !important;
}

/* النص داخل نصفه فقط */
#mz101Hero .mz-hero-coffee-promo__eyebrow,
#mz101Hero .mz-hero-coffee-promo__title,
#mz101Hero .mz-hero-coffee-promo__text {
  max-width: 100% !important;
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

#mz101Hero .mz-hero-coffee-promo__eyebrow {
  margin: 0 0 4px !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

#mz101Hero .mz-hero-coffee-promo__title {
  margin: 0 !important;
  font-size: clamp(22px, 2.05vw, 36px) !important;
  line-height: 1.06 !important;
}

#mz101Hero .mz-hero-coffee-promo__text {
  margin: 6px 0 0 !important;
  font-size: clamp(12px, .9vw, 14px) !important;
  line-height: 1.35 !important;
}

#mz101Hero .mz-hero-coffee-promo__cta {
  display: none !important;
}

/* =========================================================
   CLEAN PROMO TEXT — remove random text near bags + smaller font
   ========================================================= */

/* احذف السطر الوصفي لأنه هو الذي يظهر كتشويش قرب الصور */
#mz101Hero .mz-hero-coffee-promo__text {
  display: none !important;
}

/* النص الدعائي داخل نصف النص فقط */
#mz101Hero .mz-hero-coffee-promo__copy {
  overflow: hidden !important;
}

/* خط مختلف وحجم أقل تقريباً 50% */
#mz101Hero .mz-hero-coffee-promo__title {
  font-family: Tahoma, Arial, sans-serif !important;
  font-size: clamp(15px, 1.15vw, 20px) !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  white-space: normal !important;
  max-width: 100% !important;
}

/* العبارة الصغيرة فوق العنوان */
#mz101Hero .mz-hero-coffee-promo__eyebrow {
  font-family: Tahoma, Arial, sans-serif !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  margin: 0 0 5px !important;
  opacity: .9 !important;
}

/* العربي: العنوان يبقى في يمين الحاوية ولا يقترب من الصور */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__copy,
body.rtl #mz101Hero .mz-hero-coffee-promo__copy {
  padding: 0 7vw 0 4vw !important;
  text-align: right !important;
}

/* الإنجليزي وباقي LTR */
html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__copy {
  padding: 0 4vw 0 7vw !important;
  text-align: left !important;
}

/* ارفع أولوية الصور حتى لا تتأثر بالنص */
#mz101Hero .mz-hero-coffee-promo__products {
  z-index: 110 !important;
}

#mz101Hero .mz-hero-coffee-promo__copy {
  z-index: 120 !important;
}

/* =========================================================
   SAME WEIGHT — Coffee bags same visual size
   السبب: الثلاثة 160g، فلا يجب أن يبدو أحدها أكبر وزناً.
   ========================================================= */

#mz101Hero .mz-hero-coffee-promo__pack--plain,
#mz101Hero .mz-hero-coffee-promo__pack--medium,
#mz101Hero .mz-hero-coffee-promo__pack--extra {
  width: clamp(122px, 8.1vw, 164px) !important;
}

/* محاذاة القاعدة من الأسفل */
#mz101Hero .mz-hero-coffee-promo__pack {
  align-self: flex-end !important;
  transform-origin: center bottom !important;
}

/* ترتيب فقط، بدون إيحاء بحجم مختلف */
html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 1 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="rtl"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 3 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--plain {
  order: 1 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--medium {
  order: 2 !important;
}

html[dir="ltr"] #mz101Hero .mz-hero-coffee-promo__pack--extra {
  order: 3 !important;
}

/* =========================================================
   Coffee promo — stronger bottom emphasis for bags
   ========================================================= */

/* مساحة الصور */
#mz101Hero .mz-hero-coffee-promo__media,
#mz101Hero .mz-hero-coffee-promo__visual,
#mz101Hero .mz-hero-coffee-promo__packs {
  position: relative;
}

/* منصة/خط أرضي خافت يربط الأكياس */
#mz101Hero .mz-hero-coffee-promo__packs::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center,
      rgba(201,168,76,.26) 0%,
      rgba(201,168,76,.12) 42%,
      rgba(201,168,76,.00) 78%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

/* كل كيس */
#mz101Hero .mz-hero-coffee-promo__pack {
  position: relative;
  z-index: 3;
}

/* ظل سفلي وهالة أسفل كل كيس */
#mz101Hero .mz-hero-coffee-promo__pack::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 78%;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.28) 45%,
      rgba(0,0,0,0) 78%);
  filter: blur(9px);
  pointer-events: none;
  z-index: -1;
}

/* الكيس نفسه: تعزيز الارتكاز البصري */
#mz101Hero .mz-hero-coffee-promo__pack img {
  display: block;
  filter:
    drop-shadow(0 18px 18px rgba(0,0,0,.32))
    drop-shadow(0 8px 26px rgba(201,168,76,.10));
}

/* إبراز أخف عند أسفل الكيس */
#mz101Hero .mz-hero-coffee-promo__pack--plain::after,
#mz101Hero .mz-hero-coffee-promo__pack--medium::after,
#mz101Hero .mz-hero-coffee-promo__pack--extra::after {
  height: 20px;
}

/* نسخة الهاتف */
@media (max-width: 900px) {
  #mz101Hero .mz-hero-coffee-promo__packs::before {
    left: 12%;
    right: 12%;
    bottom: 6px;
    height: 10px;
    filter: blur(6px);
  }

  #mz101Hero .mz-hero-coffee-promo__pack::after {
    bottom: -7px;
    width: 70%;
    height: 12px;
    filter: blur(7px);
  }

  #mz101Hero .mz-hero-coffee-promo__pack img {
    filter:
      drop-shadow(0 10px 12px rgba(0,0,0,.28))
      drop-shadow(0 5px 16px rgba(201,168,76,.08));
  }
}
