/* Welcome Popup Overlay Styling */
body.admin-bar .wp-popup-overlay-74148fed {
  top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .wp-popup-overlay-74148fed {
    top: 46px;
  }
}

.wp-popup-overlay-74148fed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(4px);
  padding: 15px;
  box-sizing: border-box;
  animation: wpPopupFadeIn 0.3s ease-out forwards;
}

@keyframes wpPopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wp-popup-content-74148fed {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  transform: scale(0.9);
  animation: wpPopupScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wpPopupScaleUp {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

.wp-popup-close-74148fed {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 5px;
}

.wp-popup-close-74148fed:hover {
  opacity: 1;
}

.wp-popup-header-74148fed h2 {
  font-size: 24px;
  margin: 0 0 15px 0;
  line-height: 1.3;
  font-weight: 700;
}

.wp-popup-discount-badge-74148fed {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.wp-popup-discount-badge-74148fed span {
  font-size: 20px;
  font-weight: 800;
  color: inherit;
}

.wp-popup-coupon-notice-74148fed {
  font-size: 15px;
  margin: 0 0 25px 0;
  opacity: 0.9;
}

.wp-popup-coupon-notice-74148fed strong {
  text-transform: uppercase;
  background: rgba(0,0,0,0.08);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.wp-popup-form-74148fed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wp-popup-form-group-74148fed input,
.wp-popup-form-group-74148fed select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.wp-popup-form-group-74148fed input:focus,
.wp-popup-form-group-74148fed select:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

.wp-popup-submit-btn-74148fed {
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s, filter 0.2s;
  box-sizing: border-box;
  margin-top: 5px;
}

.wp-popup-submit-btn-74148fed:hover {
  filter: brightness(0.95);
}

.wp-popup-submit-btn-74148fed:active {
  transform: scale(0.98);
}

.wp-popup-message-74148fed {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.05);
}
