@media (max-width: 800px) {

  .popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
  }

  .popup-inner {
    position: fixed !important;
    top: 5% !important;
    left: 5% !important;
    width: 90% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 1.5rem;
    background: #fffdf4;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    line-height: 1.6;
    box-sizing: border-box;
    z-index: 1001;
    -webkit-overflow-scrolling: touch;
  }

  .popup-close {
    position: sticky;
    top: 0;
    right: 0;
    text-align: right;
    padding: 0.5rem 0.5rem 0 0;
    background: #fffdf4;
    z-index: 10;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
  }

  .popup-image {
    margin: 1.5rem 0;
    text-align: center;
  }

  .popup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .popup-note {
    background: #fff3c4;
    padding: 1rem;
    border-left: 6px solid #a76f00;
    border-radius: 8px;
    margin-top: 2rem;
  }
}
  .btn-outline, .btn-primary {
    font-size: 16px;
    padding: 10px 14px;
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 6px auto;
    display: block;
  }
  
