#toast-container .toast {
  background-color: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /* opacity: 0; */
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#toast-container .toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast-container .toast a {
  background: #ff9800;
  color: #fff;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
}

#toast-container .toast a:hover {
  background: #e68900;
}

#toast-container .toast-message {
  margin-left: 20px;
}

.deal-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal-badge {
  background: #fff;
  color: #e53935;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 25px;
}

.deal-strong {
  font-weight: 600;
  font-size: 27px;
}

.deal-sub {
  font-size: 25px;
  font-weight: 600;
  opacity: 0.9;
}

.deal-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deal-count-label {
  font-size: 14px;
  font-weight: 500;
}

.deal-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 8px;
  border-radius: 6px;
  text-align: center;
  min-width: 38px;
}

.time-box span {
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.time-box small {
  font-size: 11px;
  opacity: 0.85;
}

.sep {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.deal-cta {
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
}

/* Hide until initialized */
.swiper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.swiper.swiper-initialized {
  opacity: 1;
  visibility: visible;
}

html {
  overflow-y: scroll;
}

html {
  overflow-y: scroll !important;
}

#searchForDesktop {
  flex: 1;
  display: flex !important;
  justify-content: center;
  transition: none !important;
}

@media (max-width: 639px) {
  #searchForDesktop {
    display: none !important;
  }
}
