
/* Promo Container Start */
.cashback-banner {
  position: relative; /* Needed for ribbon positioning */
  background: #1a3454;
  color: white;
  border-radius: 5px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin: 10px;
  overflow: hidden; /* keeps ribbon clean */
}

.cashback-left {
  flex: 1;
}

.cashback-message {
  font-size: 13px;
  line-height: 1;
  margin-top: 5px;
}

.cashback-message strong {
  font-weight: 600;
}

.cashback-message span {
  color: #ffeb3b;
}

.cashback-right {
  display: flex;
  flex-direction: row; /* Default desktop: row */
  gap: 8px;
  flex-shrink: 0;
  margin-top: -18px;
}

.cashback-btn {
  background: #1a3454;
  border: none;
  color: #4aa1eb !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 10px;
 
  transition: 0.3s;
  padding: 5px 10px;
  border-radius: 3px;
}

.cashback-btn .material-icons {
  font-size: 16px !important;
  margin-bottom: 2px;
  align-items: center !important;
}

.cashback-btn.enquire .material-icons,
.cashback-btn.share .material-icons {
  color: #ffffff;
}

/* Hover effects */
.cashback-btn:hover .enquire { color: #d90000; }
.cashback-btn:hover .share { color: #e6e6e6; }

/* Ribbon Styles */
.ribbon {
    position: absolute;
    top: 0px;
    left: 20px;
    width: 120px;
    /* transform: rotate(-45deg); */
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    padding: 7px 0;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 3px 3px;
}

.ribbon.sale {
  background: #28a745; /* Green */
}

.ribbon.rent {
  background: #ff5733; /* Orange */
}

/* Tablet and Mobile: stack buttons vertically */
@media (max-width: 1024px) {
  .cashback-right {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .cashback-banner {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .cashback-left {
    flex: 0 0 84%;
  }
  .cashback-right {
    flex: 0 0 10%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
  }
}
/* Promo Container End */