/*
 * ŠKODA Media Cart Limit — info banner shown above big photo listings.
 * Injected once per listing grid by js/media-cart-limit.js.
 */
.media-cart-limit-banner {
  margin: 0 0 24px;
  padding: 14px 18px 14px 46px;
  position: relative;
  background: #f1f1f1;
  border-left: 4px solid #0e3a2f;
  border-radius: 4px;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.45;
}

.media-cart-limit-banner::before {
  content: 'i';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  background: #0e3a2f;
  border-radius: 50%;
}

/*
 * "Limit reached" popup — built on the shared STBPopup, scoped to .mcl-popup so other
 * popups are untouched. Selectors are qualified with #stb-popups to beat the theme's
 * own ID-specificity rules for .stb-popup.
 */
#stb-popups .stb-popup.mcl-popup {
  max-width: 420px;
  width: 100%;
  padding: 36px 32px 30px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

#stb-popups .stb-popup.mcl-popup .content {
  color: inherit;
  font-weight: 400;
}

#stb-popups .stb-popup.mcl-popup .mcl-popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#stb-popups .stb-popup.mcl-popup .mcl-popup-icon {
  display: inline-flex;
  margin-bottom: 18px;
  line-height: 0;
}

#stb-popups .stb-popup.mcl-popup .mcl-popup-icon svg {
  display: block;
  width: 48px;
  height: 48px;
}

#stb-popups .stb-popup.mcl-popup .mcl-popup-text {
  margin: 0;
  max-width: 34ch;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.5;
}

#stb-popups .stb-popup.mcl-popup .close {
  top: 8px;
  right: 8px;
  color: #9b9b9b;
}

#stb-popups .stb-popup.mcl-popup .close:hover {
  color: #4b4b4b;
}

@media (max-width: 480px) {
  #stb-popups .stb-popup.mcl-popup {
    padding: 28px 20px 24px;
  }

  #stb-popups .stb-popup.mcl-popup .mcl-popup-text {
    font-size: 15px;
  }
}
