@charset "utf-8";
/* CSS Document */

#s326-privacy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99998;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  #s326-privacy-overlay.visible {
    opacity: 1;
    pointer-events: all;
  }
  #s326-privacy-box {
    background: #fff;
    border-radius: 14px 14px 14px 14px;
    max-width: 620px;
    width: 100%;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    font-family: 'Segoe UI', Arial, sans-serif;
    direction: rtl;
    transform: translateY(20px);
    transition: transform 0.35s ease;
    margin-bottom: 1rem;
  }
  #s326-privacy-overlay.visible #s326-privacy-box {
    transform: translateY(0);
  }
  #s326-privacy-box h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.55rem;
    color: #111;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  #s326-privacy-box p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 1.1rem;
  }
  #s326-privacy-box .s326-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
  }
  #s326-accept-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
  }
  #s326-accept-btn:hover { background: #333; }
  #s326-policy-btn {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    font-family: inherit;
  }
  #s326-policy-btn:hover { border-color: #888; background: #f5f5f5; }
  @media (max-width: 480px) {
    #s326-privacy-box { padding: 1.25rem; }
    #s326-privacy-box .s326-actions { flex-direction: column; }
    #s326-accept-btn, #s326-policy-btn { width: 100%; text-align: center; }
  }