/* =========================
   BREAKPOINTS
========================= */
/* Mobile */
/* Tablet */
/* Desktop */
.promo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
}
.promo-popup-overlay.active {
  display: flex;
  animation: promoFadeIn 0.3s ease;
}

.promo-popup {
  background: #ffffff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: promoSlideUp 0.3s ease;
  margin: 0 auto;
}
.promo-popup::-webkit-scrollbar {
  width: 4px;
}
.promo-popup::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 2px;
}
.promo-popup::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 2px;
}
.promo-popup::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
@media (max-width: 480px) {
  .promo-popup {
    max-height: 85dvh;
    max-width: 100%;
    margin: 0;
  }
}
.promo-popup .promo-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #f3f4f6;
  border-radius: 16px 16px 0 0;
}
.promo-popup .promo-popup-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-popup .promo-popup-header h3 i {
  color: #1ea9e2;
  font-size: 20px;
}
.promo-popup .promo-popup-header .promo-popup-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.2s ease-in-out;
  line-height: 1;
}
.promo-popup .promo-popup-header .promo-popup-close:hover {
  background: #e5e7eb;
  color: #1a1f36;
  transform: rotate(90deg);
}
@media (max-width: 480px) {
  .promo-popup .promo-popup-header {
    padding: 16px 20px;
    border-radius: 16px 16px 0 0;
  }
  .promo-popup .promo-popup-header h3 {
    font-size: 16px;
  }
  .promo-popup .promo-popup-header .promo-popup-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
  }
}
.promo-popup .promo-popup-body {
  padding: 40px 24px;
}
@media (max-width: 480px) {
  .promo-popup .promo-popup-body {
    padding: 30px 20px;
  }
}
@media (max-width: 380px) {
  .promo-popup .promo-popup-body {
    padding: 24px 16px;
  }
}
.promo-popup .promo-empty {
  text-align: center;
  padding: 20px 0;
}
.promo-popup .promo-empty .promo-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(30, 169, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.promo-popup .promo-empty .promo-empty-icon i {
  font-size: 36px;
  color: #1ea9e2;
}
@media (max-width: 480px) {
  .promo-popup .promo-empty .promo-empty-icon {
    width: 64px;
    height: 64px;
  }
  .promo-popup .promo-empty .promo-empty-icon i {
    font-size: 28px;
  }
}
.promo-popup .promo-empty h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f36;
  margin: 0 0 8px 0;
}
@media (max-width: 480px) {
  .promo-popup .promo-empty h4 {
    font-size: 18px;
    line-height: 1.3;
  }
}
.promo-popup .promo-empty p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 4px 0;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .promo-popup .promo-empty p {
    font-size: 13px;
    line-height: 1.5;
  }
}
.promo-popup .promo-empty .promo-empty-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .promo-popup .promo-empty {
    padding: 20px 0;
  }
  .promo-popup .promo-empty h4 {
    font-size: 18px;
    line-height: 1.3;
  }
  .promo-popup .promo-empty p {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@keyframes promoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes promoSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes promoSlideUpMobile {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.promo {
  background-color: #1ea9e2;
  border-radius: 15px;
  display: flex;
  width: 100%;
  padding: 3rem;
  box-sizing: border-box;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
@media (max-width: 1024px) {
  .promo {
    padding: 2.5rem 2.5rem;
    gap: 2.5rem;
    min-height: 240px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .promo {
    padding: 2rem 2rem;
    gap: 2rem;
    min-height: 200px;
    border-radius: 12px;
  }
}
@media (max-width: 564px) {
  .promo {
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 2rem;
    gap: 1.5rem;
    min-height: auto;
    border-radius: 12px;
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .promo {
    padding: 2rem 1.25rem 1.5rem;
    gap: 1.25rem;
    border-radius: 10px;
    margin-top: 1.5rem;
  }
}
@media (max-width: 380px) {
  .promo {
    padding: 1.5rem 1rem 1.25rem;
    gap: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
}
.promo .wrapper-promo {
  display: flex;
}
.promo .wrapper-promo.left {
  width: 30%;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}
.promo .wrapper-promo.left img {
  width: 20rem;
  height: auto;
  border-radius: 15px;
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.4);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.left img {
    width: 16rem;
    border-radius: 13px;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.left img {
    width: 12rem;
    border-radius: 10px;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.left img {
    width: 16rem;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.left img {
    width: 12rem;
    border-radius: 8px;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.left img {
    width: 10rem;
    border-radius: 6px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.left {
    width: 35%;
    justify-content: center;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.left {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}
.promo .wrapper-promo.right {
  width: 40%;
  flex-direction: column;
  justify-content: center;
  color: white;
  flex: 1;
  min-width: 0;
}
.promo .wrapper-promo.right h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  word-break: break-word;
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.right h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right h1 {
    font-size: 22px;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right h1 {
    font-size: 26px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right h1 {
    font-size: 22px;
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right h1 {
    font-size: 18px;
    margin-bottom: 0.3rem;
  }
}
.promo .wrapper-promo.right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  word-break: break-word;
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.right p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 450px;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right p {
    font-size: 14px;
    line-height: 1.4;
    max-width: 350px;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right p {
    font-size: 12px;
    line-height: 1.3;
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right {
    width: 60%;
    flex-shrink: 0;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right {
    width: 100% !important;
    text-align: center;
    align-items: center;
    padding: 0 0.5rem;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right {
    width: 100% !important;
    text-align: center;
    align-items: center;
    padding: 0 0.3rem;
  }
}
.promo .wrapper-promo.right .kupon {
  display: flex;
  margin-top: 1rem;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right .kupon {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right .kupon {
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right .kupon {
    gap: 0.6rem;
    margin-top: 0.5rem;
    justify-content: center;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right .kupon {
    gap: 0.5rem;
    margin-top: 0.3rem;
  }
}
.promo .wrapper-promo.right .kupon .code {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background: rgba(239, 242, 246, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.promo .wrapper-promo.right .kupon .code h4 {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.9;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.right .kupon .code h4 {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right .kupon .code h4 {
    font-size: 10px;
    margin-bottom: 3px;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right .kupon .code h4 {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right .kupon .code h4 {
    font-size: 9px;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right .kupon .code h4 {
    font-size: 8px;
    margin-bottom: 1px;
  }
}
.promo .wrapper-promo.right .kupon .code span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.right .kupon .code span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right .kupon .code span {
    font-size: 14px;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right .kupon .code span {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right .kupon .code span {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right .kupon .code span {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.right .kupon .code {
    padding: 0.8rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right .kupon .code {
    padding: 0.6rem 1rem;
    border-radius: 10px;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right .kupon .code {
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right .kupon .code {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right .kupon .code {
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
  }
}
.promo .wrapper-promo.right .kupon button {
  background-color: #fff;
  color: #1ea9e2;
  height: 3rem;
  min-width: 8rem;
  padding: 0 1.5rem;
  border: none;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo .wrapper-promo.right .kupon button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  background: #f8f8f8;
}
.promo .wrapper-promo.right .kupon button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1024px) {
  .promo .wrapper-promo.right .kupon button {
    height: 2.6rem;
    min-width: 7rem;
    font-size: 13px;
    padding: 0 1.2rem;
    border-radius: 13px;
  }
}
@media (max-width: 768px) {
  .promo .wrapper-promo.right .kupon button {
    height: 2.3rem;
    min-width: 6rem;
    font-size: 12px;
    border-radius: 10px;
    padding: 0 1rem;
  }
}
@media (max-width: 564px) {
  .promo .wrapper-promo.right .kupon button {
    font-size: 13px;
    height: 2.5rem;
    min-width: 7rem;
    padding: 0 1.2rem;
  }
}
@media (max-width: 480px) {
  .promo .wrapper-promo.right .kupon button {
    font-size: 12px;
    height: 2.2rem;
    min-width: 6rem;
    border-radius: 8px;
    padding: 0 0.8rem;
  }
}
@media (max-width: 380px) {
  .promo .wrapper-promo.right .kupon button {
    font-size: 11px;
    height: 2rem;
    min-width: 5rem;
    border-radius: 6px;
    padding: 0 0.6rem;
  }
}
.promo .ornamen {
  position: absolute;
  right: 20rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
  pointer-events: none;
}
.promo .ornamen svg {
  width: 300px;
  height: auto;
}
@media (max-width: 1024px) {
  .promo .ornamen {
    right: 6rem;
  }
  .promo .ornamen svg {
    width: 220px;
  }
  .promo .ornamen {
    opacity: 0.18;
  }
}
@media (max-width: 768px) {
  .promo .ornamen {
    right: 2rem;
  }
  .promo .ornamen svg {
    width: 160px;
  }
  .promo .ornamen {
    opacity: 0.15;
  }
}
@media (max-width: 564px) {
  .promo .ornamen {
    right: 1.5rem;
  }
  .promo .ornamen svg {
    width: 120px;
  }
  .promo .ornamen {
    opacity: 0.12;
  }
}
@media (max-width: 480px) {
  .promo .ornamen {
    right: 1rem;
  }
  .promo .ornamen svg {
    width: 90px;
  }
  .promo .ornamen {
    opacity: 0.1;
  }
}
@media (max-width: 380px) {
  .promo .ornamen {
    right: 0.5rem;
  }
  .promo .ornamen svg {
    width: 70px;
  }
  .promo .ornamen {
    opacity: 0.08;
  }
}/*# sourceMappingURL=promo-container.css.map */