/* Popup subscribe styles */
.csa-popup { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; }
.csa-popup[aria-hidden="false"] { display: flex; }
.csa-popup-backdrop { position: absolute; inset: 0; background: rgba(16, 26, 40, 0.6); backdrop-filter: blur(2px); }
.csa-popup-panel { position: relative; background: #fff; padding: 22px; border-radius: 12px; width: 420px; max-width: 92%; box-shadow: 0 12px 40px rgba(2,6,23,0.2); z-index: 2; }
.csa-popup-close { position: absolute; right: 12px; top: 8px; background: transparent; border: none; font-size: 22px; cursor: pointer; }
.csa-popup-body { text-align: center; }
.csa-popup-logo { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; margin-bottom: 10px; }
.csa-popup-body h2 { margin: 6px 0 8px 0; font-size: 20px; }
.csa-popup-body p { color: #556; margin: 0 0 12px 0; }
.csa-popup-body input[type="email"] { width: 100%; padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 10px; font-size: 14px; }
.csa-categories-section { margin-bottom: 12px; }
.csa-categories-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; color: #333; }
.csa-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; max-height: 120px; overflow-y: auto; }
.csa-category-item { display: flex; align-items: center; gap: 6px; padding: 4px; }
.csa-category-item input[type="checkbox"] { width: 14px; height: 14px; }
.csa-category-item label { font-size: 13px; cursor: pointer; }
.csa-popup-actions { display: flex; gap: 10px; justify-content: center; }
.csa-sub-btn { background: #007cba; color: white; border: none; padding: 10px 14px; border-radius: 8px; cursor: pointer; }
.csa-sub-btn:hover { background: #005a87; }
.csa-popup-note { margin-top: 10px; font-size: 12px; color: #7a7a7a; }
.sr-only { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 480px) { .csa-popup-panel { padding: 14px; } .csa-popup-body h2 { font-size: 18px; } }
