.imda-banner {
  width: 100%;
  max-width: 500px;

  margin: 8px 0 12px;
  padding: 4px 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  background: #f7f7f7;
  border: 2px solid #ff6b8a;
  border-radius: 14px;
}

/* LEFT */
.imda-left {
  display: flex;
  align-items: center;
  gap: 4px;

  padding: 6px 10px;
  border-radius: 10px;

  background: rgba(255,255,255,0.55);

  box-shadow:
    0 1px 4px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.7);

  flex: 1;
  min-width: 0;
}


.imda-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  color: #d81b60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.imda-text h4 {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  color: #7b2ff7;
  line-height: 1.1;
  margin-bottom: 1px;
}

.imda-text p {
  margin: 0;
  font-size: 9px;
  color: #333;
  font-weight: 600;
}

/* RIGHT */
.imda-right {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #7b2ff7 0%,
    #b13cff 45%,
    #ff8a3d 100%
  );

  flex-shrink: 0;
}

.gift-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
}

.grant-text h4 {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1px;
}

.grant-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 500;
}

@media (max-width: 768px) {

  .imda-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .imda-left,
  .imda-right {
    width: 100%;
  }

  .imda-right {
    justify-content: center;
  }

  .imda-text h4,
  .grant-text h4 {
    font-size: 10px;
  }

  .imda-text p,
  .grant-text p {
    font-size: 8px;
  }
}