.mba-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  padding: 1.1rem 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0.35rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(182, 58, 107, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}

.mba-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mba-popup-close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #B63A6B;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mba-popup-close:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.mba-popup-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mba-popup-text {
  padding-right: 1.5rem;
}

.mba-popup-eyebrow {
  margin-bottom: 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B63A6B;
}

.mba-popup-title {
  margin: 0 0 0.35rem;
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
  color: #B63A6B;
}

.mba-popup-desc {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 400;
  color: #333;
}

.mba-popup-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  margin-left: -0.35rem;
  padding: 0.55rem 1.6rem;
  border: 0;
  background: transparent;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: letter-spacing 0.25s ease, opacity 0.25s ease;
}

.mba-popup-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 175%;
  transform: translateY(-50%);
  z-index: -1;
  background: url("../../assets/img//pennello_1-100.png") left center / 100% 100% no-repeat;
}

.mba-popup-cta:hover, .mba-popup-cta:focus {
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: 0.08em;
  opacity: 0.96;
  transform: none;
}

@media (max-width: 767.98px) {
  .mba-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
    padding: 1rem 1rem 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .mba-popup-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .mba-popup-desc {
    font-size: 0.94rem;
  }
}

@media (max-width: 767.98px) {
  .mba-popup-cta {
    align-self: center;
    margin-left: 0;
  }
}

