.ugp-promotion-panel {
  box-sizing: border-box;
  clear: both;
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  max-width: none;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ugp-promotion-card {
  align-items: flex-start;
  background: #f7f9fb;
  border: 1px solid #d9e0e7;
  border-left: 5px solid var(--ugp-accent, #1e91cf);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(20, 55, 38, .08);
  color: #25313c;
  display: flex;
  gap: 13px;
  padding: 14px 16px;
}

.ugp-promotion-card--qualified {
  background: #f7f9fb;
  border-color: #d9e0e7;
  border-left-color: var(--ugp-accent, #1e91cf);
}

.ugp-promotion-card--unavailable {
  background: #fff7ec;
  border-color: #eed0a4;
  border-left-color: #c17a16;
  color: #67420e;
}

.ugp-promotion-card__icon {
  align-items: center;
  background: var(--ugp-accent, #1e91cf);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 38px;
  font-size: 19px;
  height: 38px;
  justify-content: center;
  line-height: 1;
}

.ugp-promotion-card--qualified .ugp-promotion-card__icon { background: var(--ugp-accent, #1e91cf); }
.ugp-promotion-card--unavailable .ugp-promotion-card__icon { background: #c17a16; }
.ugp-promotion-card__content { flex: 1 1 auto; min-width: 0; }
.ugp-promotion-card__title { display: block; font-size: 15px; line-height: 1.3; margin-bottom: 3px; }
.ugp-promotion-card__message { font-size: 14px; line-height: 1.45; }

.ugp-promotion-progress {
  background: #e4e9ee;
  border-radius: 999px;
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  width: 100%;
}

.ugp-promotion-progress > span {
  background: var(--ugp-accent, #1e91cf);
  border-radius: inherit;
  display: block;
  height: 100%;
  min-width: 3px;
  transition: width .25s ease;
}

.ugp-promotion-gifts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ugp-promotion-gift { align-items: center; background: #fff; border: 1px solid #d9e0e7; border-radius: 6px; display: inline-flex; font-size: 12px; font-weight: 600; gap: 7px; padding: 4px 9px 4px 4px; }
.ugp-promotion-gift img { border-radius: 4px; height: 44px; object-fit: contain; width: 44px; }

.ugp-promotion-panel--floating {
  bottom: 15px;
  left: 50%;
  margin: 0;
  max-width: 720px;
  position: fixed;
  transform: translateX(-50%);
}

.ugp-promotion-toast-stack {
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: calc(100% - 36px);
  pointer-events: none;
  position: fixed;
  right: 18px;
  width: 410px;
  z-index: 99999;
}

.ugp-promotion-toast {
  background: #fff;
  border: 1px solid #d9e0e7;
  border-left: 5px solid var(--ugp-accent, #1e91cf);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
  color: #25313c;
  opacity: 0;
  padding: 14px;
  pointer-events: auto;
  position: relative;
  transform: translateY(15px);
  transition: opacity .25s ease, transform .25s ease;
  width: 100%;
}

.ugp-promotion-toast--show { opacity: 1; transform: translateY(0); }
.ugp-promotion-toast__top { align-items: center; display: flex; gap: 10px; }
.ugp-promotion-toast__icon { align-items: center; background: var(--ugp-accent, #1e91cf); border-radius: 50%; color: #fff; display: flex; flex: 0 0 34px; font-size: 18px; height: 34px; justify-content: center; }
.ugp-promotion-toast__heading { display: flex; flex: 1 1 auto; flex-direction: column; line-height: 1.25; min-width: 0; }
.ugp-promotion-toast__heading strong { color: var(--ugp-accent, #1e91cf); font-size: 16px; }
.ugp-promotion-toast__heading span { color: #25313c; font-size: 13px; font-weight: 600; margin-top: 2px; }
.ugp-promotion-toast__close { appearance: none; background: transparent; border: 0; color: #537161; cursor: pointer; flex: 0 0 30px; font-size: 25px; height: 30px; line-height: 26px; padding: 0; }
.ugp-promotion-toast__message { color: #4b5966; font-size: 13px; line-height: 1.4; margin: 10px 0 0; }
.ugp-promotion-toast__gifts { display: grid; gap: 7px; margin-top: 10px; }
.ugp-promotion-toast__gift { align-items: center; background: #f7f9fb; border: 1px solid #d9e0e7; border-radius: 7px; display: flex; font-size: 13px; font-weight: 700; gap: 9px; padding: 6px 9px 6px 6px; }
.ugp-promotion-toast__gift img { background: #fff; border-radius: 5px; height: 52px; object-fit: contain; width: 52px; }

@media (max-width: 767px) {
  .ugp-promotion-panel { margin: 0 0 12px; padding: 0; }
  .ugp-promotion-card { gap: 10px; padding: 12px; }
  .ugp-promotion-card__icon { flex-basis: 32px; font-size: 16px; height: 32px; }
  .ugp-promotion-card__title { font-size: 14px; }
  .ugp-promotion-card__message { font-size: 13px; }
  .ugp-promotion-panel--floating { bottom: 8px; max-width: none; }
  .ugp-promotion-toast-stack { bottom: 10px; left: 10px; max-width: none; right: 10px; width: auto; }
  .ugp-promotion-toast { padding: 12px; }
}
