.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28, 14, 21, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.popup-overlay.popup-active {
  background: rgba(28, 14, 21, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: all;
}

.popup-overlay.popup-closing {
  background: rgba(28, 14, 21, 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
}

/* Main Card */
.popup-card {
  display: flex;
  flex-direction: row;
  background: #FFFFFF;
  max-width: 780px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-sizing: border-box;
}

.popup-active .popup-card,
.popup-active .popup-success-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.popup-closing .popup-card {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: var(--color-dark-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-close svg {
  width: 20px;
  height: 20px;
}

.popup-close:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: transparent;
  transform: rotate(90deg) scale(1.05);
}

/* ─── Left Visual Side ─── */
.popup-visual {
  width: 38%;
  min-width: 270px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--color-dark-bg) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.popup-visual-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: popup-glow-pulse 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes popup-glow-pulse {
  from {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Discount Circle */
.popup-discount-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 2px solid rgba(212, 175, 55, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: popup-circle-float 4s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15), inset 0 0 30px rgba(212, 175, 55, 0.05);
}

@keyframes popup-circle-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

.popup-percent {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FFF8DC, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -2px;
}

.popup-off {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
  letter-spacing: 2px;
}

.popup-visual-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  z-index: 2;
}

.popup-visual-text span {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Sparkles */
.popup-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  color: rgba(212, 175, 55, 0.6);
  animation: sparkle-float 3s ease-in-out infinite;
}

.s1 {
  top: 12%;
  right: 18%;
  font-size: 16px;
  animation-delay: 0s;
}

.s2 {
  top: 25%;
  left: 12%;
  font-size: 12px;
  animation-delay: 0.5s;
}

.s3 {
  bottom: 20%;
  right: 15%;
  font-size: 20px;
  animation-delay: 1s;
}

.s4 {
  bottom: 30%;
  left: 20%;
  font-size: 14px;
  animation-delay: 1.5s;
}

.s5 {
  top: 50%;
  right: 8%;
  font-size: 10px;
  animation-delay: 2s;
}

@keyframes sparkle-float {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-6px) scale(1.3);
  }
}

/* ─── Right Form Side ─── */
.popup-form-side {
  flex: 1 1 auto;
  min-width: 0;
  background: #FFFFFF;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.popup-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-dark-bg);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.popup-logo span {
  color: var(--color-gold);
}

.popup-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark-bg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.popup-subtitle {
  font-size: 14.5px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 28px;
}

.popup-subtitle strong {
  color: var(--color-primary);
  font-weight: 800;
}

/* Form */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.popup-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.popup-input-icon {
  position: absolute;
  right: 16px;
  width: 20px;
  height: 20px;
  color: #bbb;
  pointer-events: none;
  transition: color 0.3s ease;
}

.popup-input-icon svg {
  width: 20px;
  height: 20px;
}

.popup-input-group input {
  width: 100%;
  padding: 15px 48px 15px 18px;
  border: 1.5px solid #eee;
  border-radius: 14px;
  font-size: 14.5px;
  font-family: var(--font-sans);
  color: var(--color-dark-bg);
  background: #FAFAFC;
  transition: all 0.3s ease;
  outline: none;
}

.popup-input-group input::placeholder {
  color: #bbb;
}

.popup-input-group input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(138, 21, 81, 0.06);
}

.popup-input-group input:focus+.popup-input-icon,
.popup-input-group input:focus~.popup-input-icon {
  color: var(--color-primary);
}

/* Submit Button */
.popup-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-dark-bg));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.popup-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold), #FFF3CD);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(138, 21, 81, 0.25);
}

.popup-submit-btn:hover::before {
  opacity: 0.15;
}

.popup-submit-btn svg {
  width: 20px;
  height: 20px;
}

.popup-submit-btn span {
  position: relative;
  z-index: 1;
}

/* Note */
.popup-note {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-bottom: 12px;
}

/* Skip button */
.popup-skip {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  font-size: 13.5px;
  color: #6e6e73;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: center;
  margin: 20px auto 0 auto;
  padding: 8px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.popup-skip:hover {
  color: var(--color-primary);
  background: rgba(138, 21, 81, 0.05);
  border-color: rgba(138, 21, 81, 0.15);
  transform: translateY(-1px);
}

/* ─── Success Card ─── */
.popup-success-overlay {
  z-index: 10000;
}

.popup-success-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34C759, #30D158);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popup-check-bounce 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes popup-check-bounce {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.popup-success-check svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.popup-success-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark-bg);
  margin-bottom: 8px;
}

.popup-success-card>p {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 24px;
}

.popup-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FAFAFC;
  border: 2px dashed rgba(138, 21, 81, 0.2);
  border-radius: 14px;
  padding: 16px 24px;
  margin-bottom: 12px;
}

.popup-code-box span {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup-code-box button {
  padding: 8px 18px;
  border: 1.5px solid var(--color-primary);
  border-radius: 10px;
  background: transparent;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}

.popup-code-box button:hover {
  background: var(--color-primary);
  color: #fff;
}

.popup-success-note {
  font-size: 12.5px;
  color: #aaa;
  margin-bottom: 24px;
}

.popup-success-card .popup-submit-btn {
  margin-top: 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .popup-overlay {
    padding: 14px;
    align-items: center;
  }

  .popup-card {
    flex-direction: column;
    max-width: 440px;
    width: 100%;
    max-height: 92vh;
    border-radius: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .popup-visual {
    width: 100%;
    min-width: auto;
    padding: 22px 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .popup-discount-circle {
    width: 76px;
    height: 76px;
    border-width: 2px;
    flex-shrink: 0;
  }

  .popup-percent {
    font-size: 24px;
  }

  .popup-off {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .popup-visual-text {
    margin-top: 0;
    align-items: flex-start;
    text-align: right;
  }

  .popup-visual-text span {
    font-size: 14px;
    line-height: 1.35;
  }

  .popup-form-side {
    padding: 24px 20px 20px;
  }

  .popup-logo {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .popup-title {
    font-size: 19px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .popup-subtitle {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .popup-close {
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .popup-close svg {
    width: 16px;
    height: 16px;
  }

  .popup-success-card {
    padding: 32px 20px 24px;
    max-width: 420px;
    width: 100%;
    border-radius: 24px;
  }

  .popup-code-box {
    padding: 12px 18px;
  }

  .popup-code-box span {
    font-size: 22px;
    letter-spacing: 2px;
  }
}

@media (max-width: 420px) {
  .popup-overlay {
    padding: 10px;
  }

  .popup-card {
    max-width: 100%;
    border-radius: 20px;
  }

  .popup-visual {
    padding: 16px 14px;
    gap: 12px;
  }

  .popup-discount-circle {
    width: 66px;
    height: 66px;
  }

  .popup-percent {
    font-size: 20px;
  }

  .popup-off {
    font-size: 10px;
  }

  .popup-visual-text span {
    font-size: 13px;
  }

  .popup-form-side {
    padding: 18px 14px 16px;
  }

  .popup-logo {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .popup-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .popup-subtitle {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .popup-phone-container {
    padding: 3px 4px;
  }

  .popup-country-btn {
    padding: 6px 8px;
    font-size: 12px;
    gap: 4px;
  }

  .popup-phone-input {
    font-size: 13.5px;
    padding: 8px 6px;
  }

  .popup-submit-btn {
    font-size: 13.5px;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .popup-otp-grid {
    gap: 5px;
    margin: 12px 0;
  }

  .popup-otp-cell {
    width: 36px;
    height: 44px;
    font-size: 17px;
    border-radius: 10px;
  }

  .popup-note {
    font-size: 11px;
    margin-top: 10px !important;
  }

  .popup-skip {
    font-size: 11.5px;
    margin-top: 10px;
  }

  .popup-code-box {
    padding: 10px 14px;
    gap: 8px;
  }

  .popup-code-box span {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .popup-code-box button {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ─── OTP Verification Styles ─── */
.otp-inputs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  direction: ltr;
  /* numerical codes are entered left-to-right */
  margin: 12px 0 24px 0;
}

.otp-input {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid #eee;
  background: #FAFAFC;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark-bg);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.otp-input:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(138, 21, 81, 0.06);
  transform: translateY(-2px);
}

.otp-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.otp-resend-btn,
.otp-change-num {
  background: none;
  border: none;
  font-size: 13px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease;
}

.otp-resend-btn {
  color: #aaa;
  cursor: not-allowed;
  font-weight: 500;
}

.otp-resend-btn.active {
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
}

.otp-change-num {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.otp-change-num:hover {
  color: var(--color-primary);
}

@media (max-width: 480px) {
  .otp-input {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .otp-inputs-container {
    gap: 8px;
  }
}

/* ─── Popup Shimmer & Country Picker Enhancements ─── */
.popup-shimmer-percent {
  display: inline-block;
  width: 90px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 25%, rgba(255, 215, 0, 0.4) 50%, rgba(255, 215, 0, 0.15) 75%);
  background-size: 200% 100%;
  animation: popup-shimmer 1.5s infinite linear;
}

.popup-shimmer-subtext {
  display: inline-block;
  width: 110px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.12) 75%);
  background-size: 200% 100%;
  animation: popup-shimmer 1.5s infinite linear;
}

.popup-shimmer-title {
  display: block;
  width: 80%;
  max-width: 260px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(138, 21, 81, 0.08) 25%, rgba(138, 21, 81, 0.22) 50%, rgba(138, 21, 81, 0.08) 75%);
  background-size: 200% 100%;
  animation: popup-shimmer 1.5s infinite linear;
  margin-bottom: 8px;
}

.popup-shimmer-desc {
  display: block;
  width: 95%;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.05) 75%);
  background-size: 200% 100%;
  animation: popup-shimmer 1.5s infinite linear;
  margin-bottom: 20px;
}

@keyframes popup-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.popup-phone-container {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 4px 6px;
  direction: rtl;
}

.popup-phone-container:focus-within {
  border-color: var(--color-primary, #8A1551);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(138, 21, 81, 0.12);
}

.popup-country-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(138, 21, 81, 0.06);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.popup-country-btn:hover {
  background: rgba(138, 21, 81, 0.12);
}

.popup-phone-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  font-family: inherit;
  outline: none;
  direction: ltr;
  text-align: right;
}

.popup-error-box {
  display: none;
  align-items: center;
  gap: 8px;
  color: #ef4444;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 4px;
}

.popup-error-box.show {
  display: flex;
}

.popup-otp-grid {
  display: flex;
  gap: 8px;
  justify-content: center;
  direction: ltr;
  margin: 18px 0;
}

.popup-otp-cell {
  width: 44px;
  height: 52px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  outline: none;
  transition: all 0.25s ease;
}

.popup-otp-cell:focus {
  border-color: #8A1551;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(138, 21, 81, 0.12);
  transform: translateY(-2px);
}

/* ─── Mobile Responsive Styles ─── */
@media (max-width: 768px) {
  .popup-overlay {
    padding: 12px;
    align-items: center;
    justify-content: center;
  }

  .popup-card {
    flex-direction: column !important;
    max-width: 440px !important;
    width: 100% !important;
    max-height: 90vh !important;
    border-radius: 24px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .popup-visual {
    width: 100% !important;
    min-width: 100% !important;
    padding: 22px 18px 18px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    text-align: right !important;
  }

  .popup-discount-circle {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    margin-bottom: 0 !important;
    border-width: 3px !important;
  }

  .popup-percent {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .popup-off {
    font-size: 10px !important;
  }

  .popup-visual-text {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    text-align: right !important;
    max-width: 200px !important;
    margin-top: 0 !important;
  }

  .popup-sparkles {
    display: none !important;
  }

  .popup-form-side {
    padding: 20px 18px 24px !important;
    width: 100% !important;
  }

  .popup-close {
    top: 10px !important;
    left: 10px !important;
    width: 34px !important;
    height: 34px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
  }

  .popup-close svg {
    width: 16px !important;
    height: 16px !important;
  }

  .popup-logo {
    margin-bottom: 10px !important;
  }

  .popup-logo img {
    max-height: 30px !important;
  }

  .popup-title {
    font-size: 17px !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }

  .popup-subtitle {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .popup-phone-container {
    padding: 3px 5px !important;
    border-radius: 14px !important;
  }

  .popup-country-btn {
    padding: 6px 10px !important;
    font-size: 12.5px !important;
    border-radius: 10px !important;
  }

  .popup-phone-input {
    font-size: 14.5px !important;
    padding: 8px 10px !important;
  }

  .popup-submit-btn {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
    border-radius: 14px !important;
    min-height: 44px !important;
  }

  .popup-note {
    font-size: 11px !important;
    margin-top: 10px !important;
  }

  .popup-skip {
    font-size: 12px !important;
    margin-top: 6px !important;
    padding: 6px 0 !important;
  }

  .popup-otp-grid {
    gap: 6px !important;
    margin: 14px 0 !important;
  }

  .popup-otp-cell {
    width: 40px !important;
    height: 46px !important;
    font-size: 18px !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 360px) {
  .popup-card {
    border-radius: 18px !important;
  }

  .popup-visual {
    padding: 16px 12px 14px !important;
    gap: 12px !important;
  }

  .popup-discount-circle {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
  }

  .popup-percent {
    font-size: 20px !important;
  }

  .popup-visual-text {
    font-size: 12px !important;
    max-width: 170px !important;
  }

  .popup-form-side {
    padding: 16px 14px 20px !important;
  }

  .popup-title {
    font-size: 15.5px !important;
  }

  .popup-subtitle {
    font-size: 11.5px !important;
  }

  .popup-otp-cell {
    width: 35px !important;
    height: 42px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
  }
}