

/* RTL-adjusted popup container */
#lg-popup {
  position: fixed;
  top: 50%;
  left: -260px;
  transform: translateY(-50%);
  background-color: #FD312E; /* LG Active Red */
  color: white;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  z-index: 1000;
  cursor: pointer;
  transition: left 0.5s ease;
  width: 280px;
  overflow: hidden;
}

#lg-popup.show {
  left: 0px;
}

#lg-popup.edge {
  left: -260px;
}

/* Vertical tab in Arabic */
.edge-tab {
  background-color: #A50034; /* LG Heritage Red */
  padding: 10px 6px 0px 0px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  border-radius: 0 10px 10px 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content inside popup */
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
  text-align: center;
}

/* Main message */
.top-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

/* Buy Now button */
.buy-button {
  background-color: white;
  color: #A50034;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #f2f2f2;
}

/* Countdown under button */
.countdown {
  font-size: 14px;
  color: #fffb00;
  margin-top: 5px;
}
