
  }
  
  /* RIBO Compliance Popup */
  .ribo-popup-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); display: flex;
    align-items: center; justify-content: center; z-index: 9999;
  }
  .ribo-popup-box {
    background: white; border-radius: 12px; padding: 32px;
    max-width: 420px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative; animation: popupSlide 0.3s ease;
  }
  .ribo-popup-close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none; font-size: 28px; cursor: pointer;
    color: #999; padding: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
  }
  .ribo-popup-close:hover { color: #333; }
  .ribo-popup-icon { font-size: 2.4rem; margin-bottom: 12px; }
  .ribo-popup-box h3 {
    font-size: 1.3rem; font-weight: 700; color: #856404;
    margin: 0 0 12px; font-family: "Plus Jakarta Sans", sans-serif;
  }
  .ribo-popup-box p {
    font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0 0 20px;
  }
  .ribo-popup-btn {
    background: #ffc107; color: #856404; border: none;
    padding: 10px 24px; border-radius: 6px; font-weight: 600;
    cursor: pointer; font-size: 0.9rem; transition: all 0.2s;
  }
  .ribo-popup-btn:hover { background: #ffb300; }
  @keyframes popupSlide {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  @media (max-width: 480px) {
    .ribo-popup-box { max-width: 90vw; padding: 24px; }
    .ribo-popup-box h3 { font-size: 1.1rem; }
    .ribo-popup-box p { font-size: 0.85rem; }
  }
