/* te-notifications-build-20260810 */
/* Site-wide notification center. Scoped to te-notification-* to avoid theme collisions. */
.te-notification-center {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 1300;
}
.te-notification-bell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    color: #006D5B;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.te-notification-bell:hover,
.te-notification-bell:focus-visible {
    background: #fff;
    outline: 2px solid rgba(0,109,91,.35);
    outline-offset: 2px;
}
.te-notification-bell-icon { width: 24px; height: 24px; }
.te-notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 10px;
    background: #c62828;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--color-header-bg, #fdf4e5);
}
.te-notification-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: min(370px, calc(100vw - 32px));
    max-height: min(600px, calc(100vh - 90px));
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    color: #222;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.te-notification-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 15px 10px;
    border-bottom: 1px solid #eee;
}
.te-notification-panel-header h2 {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.2;
}
.te-notification-panel-header button {
    padding: 3px 0;
    border: 0;
    background: transparent;
    color: #006D5B;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}
.te-notification-filters {
    display: flex;
    gap: 5px;
    padding: 9px 12px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}
.te-notification-filters button {
    flex: 0 0 auto;
    padding: 5px 9px;
    border: 1px solid #d6d6d6;
    border-radius: 14px;
    background: #fff;
    color: #555;
    font-size: 11px;
    cursor: pointer;
}
.te-notification-filters button.is-active {
    border-color: #006D5B;
    background: #e6f3ef;
    color: #006D5B;
    font-weight: 700;
}
.te-notification-items {
    max-height: 470px;
    overflow-y: auto;
    overflow-x: hidden;
}
.te-notification-item {
    display: block;
    width: 100%;
    padding: 13px 15px;
    border: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #222;
    text-align: left;
    cursor: pointer;
}
.te-notification-item:hover,
.te-notification-item:focus-visible { background: #f6faf8; outline: none; }
.te-notification-item.is-unread { background: #f0faf6; }
.te-notification-item-category {
    display: block;
    margin-bottom: 3px;
    color: #006D5B;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .45px;
    text-transform: uppercase;
}
.te-notification-item-title { display: block; font-size: 13px; font-weight: 700; }
.te-notification-item-body {
    display: block;
    margin-top: 4px;
    color: #555;
    font-size: 12px;
    line-height: 1.45;
}
.te-notification-item-time {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 10px;
}
.te-notification-empty,
.te-notification-loading,
.te-notification-error {
    padding: 22px 15px;
    color: #777;
    font-size: 12px;
    text-align: center;
}
.te-notification-error { color: #c62828; }
@media screen and (max-width: 36em) {
    .te-notification-center { top: 9px; right: 12px; }
    .te-notification-panel {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 70px);
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - env(safe-area-inset-top) - 84px);
    }
    .te-notification-items { max-height: calc(100vh - 190px); }
}
.te-notification-load-more {
    display: block;
    width: calc(100% - 30px);
    margin: 10px 15px 14px;
    padding: 8px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    background: #fff;
    color: #006D5B;
    font-size: 11px;
    cursor: pointer;
}
.te-notification-load-more:disabled { opacity: .6; cursor: default; }
