#popup-envio-gratis-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    background: transparent;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  #popup-envio-gratis-overlay.popup-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #popup-envio-gratis-overlay.popup-visible .popup-envio-gratis-card {
    transform: scale(1) translateY(0);
  }
  .popup-envio-gratis-card {
    position: relative;
    width: 100%;
    max-width: min(33vw, 22rem);
    max-height: 52vh;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid rgba(17, 49, 58, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    pointer-events: auto;
  }
  .popup-envio-gratis-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.15rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 9999px;
    color: #6b7280;
    line-height: 0;
    z-index: 10;
    transition: background 0.2s;
  }
  .popup-envio-gratis-close:hover {
    background: #f3f4f6;
  }
  .popup-envio-gratis-close svg {
    width: 0.875rem;
    height: 0.875rem;
  }
  .popup-envio-gratis-body {
    padding: 1rem;
    text-align: center;
  }
  .popup-envio-gratis-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.35rem;
  }
  .popup-envio-gratis-icon-circle {
    padding: 0.5rem;
    background: rgba(230, 131, 147, 0.1);
    border-radius: 9999px;
  }
  .popup-envio-gratis-icon-circle svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #E68393;
  }
  .popup-envio-gratis-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #11313A;
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .popup-envio-gratis-subtitle {
    font-size: 0.75rem;
    color: #4b5563;
    margin: 0 0 0.6rem 0;
    white-space: normal;
  }
  .popup-envio-gratis-subtitle strong {
    color: #11313A;
  }
  .popup-envio-gratis-promo-end {
    font-size: 0.8rem;
    font-weight: 600;
    color: #E68393;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
  }