/* ============================================================
 * HYGO REVIEWS — front-end styles
 * Polished, modern review section design.
 *
 * Design system:
 * - Star color: --hygo-star (default #f5b301, warm gold)
 * - Accent (buttons/active states): --hygo-accent (default #f5891f)
 * - Rounded corners: 10px cards, 999px pills
 * - Soft shadows, subtle borders, generous whitespace
 * ============================================================ */

.hygo-reviews-wrap {
    --hygo-radius: 12px;
    --hygo-radius-pill: 999px;
    --hygo-border: #ececec;
    --hygo-muted: #7a7a7a;
    --hygo-text: #1a1a1a;
    --hygo-bg-soft: #fafafa;
    --hygo-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --hygo-shadow-md: 0 2px 12px rgba(0,0,0,0.06);
    color: var(--hygo-text);
    font-size: 15px;
    line-height: 1.55;
}

.hygo-reviews-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    margin: 0 0 24px 0 !important;
    color: var(--hygo-text);
}

/* ============================================================
 * STAR RENDERING — read-only stars (in reviews, loop, breakdown)
 * ============================================================ */
.hygo-stars {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
    line-height: 1;
}
.hygo-star,
.hygo-star-fill {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23e0e0e0" d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}
.hygo-star-fill {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23f5b301" d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}
.hygo-stars-sm .hygo-star,
.hygo-stars-sm .hygo-star-fill { width: 13px; height: 13px; background-size: contain; }
.hygo-stars-lg .hygo-star,
.hygo-stars-lg .hygo-star-fill { width: 20px; height: 20px; background-size: contain; }

/* ============================================================
 * LOOP STARS (shop grid, product cards)
 * ============================================================ */
.hygo-loop-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin: 4px 0;
}
.hygo-loop-rating-count { color: var(--hygo-muted); }

/* ============================================================
 * BREAKDOWN CHART — average rating + bars
 * ============================================================ */
.hygo-review-breakdown {
    background: linear-gradient(135deg, #fffdf7 0%, #fff8ec 100%);
    border: 1px solid #fce9c8;
    border-radius: var(--hygo-radius);
    padding: 24px 28px;
    margin: 0 0 24px 0;
    display: flex;
    gap: 32px;
    align-items: center;
    box-shadow: var(--hygo-shadow-sm);
}
.hygo-breakdown-summary {
    flex: 0 0 auto;
    text-align: center;
    padding-right: 28px;
    border-right: 1px solid #f2dcb0;
    min-width: 130px;
}
.hygo-breakdown-avg {
    font-size: 44px;
    font-weight: 700;
    color: var(--hygo-text);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.hygo-breakdown-summary .hygo-stars {
    margin: 6px 0 8px;
}
.hygo-breakdown-total {
    font-size: 13px;
    color: var(--hygo-muted);
    font-weight: 500;
}
.hygo-breakdown-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hygo-breakdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.hygo-breakdown-label {
    min-width: 36px;
    color: var(--hygo-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}
.hygo-breakdown-track {
    flex: 1;
    height: 8px;
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.hygo-breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--hygo-star, #f5b301), #ffc93c);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hygo-breakdown-count {
    min-width: 24px;
    text-align: right;
    color: var(--hygo-muted);
    font-weight: 500;
    font-size: 12px;
}

/* ============================================================
 * FILTER / SORT CONTROLS
 * ============================================================ */
.hygo-review-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px 0;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hygo-border);
}
.hygo-review-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.hygo-review-sort label {
    color: var(--hygo-muted);
    font-weight: 500;
    margin: 0;
}
.hygo-review-sort select {
    padding: 8px 32px 8px 14px;
    border: 1px solid var(--hygo-border);
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: var(--hygo-text);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%23888" d="M6 8L2 4h8z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.hygo-review-sort select:hover { border-color: #b8b8b8; }
.hygo-review-sort select:focus {
    outline: none;
    border-color: var(--hygo-accent);
    box-shadow: 0 0 0 3px rgba(245,137,31,0.12);
}
.hygo-review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.hygo-filter-chip {
    padding: 7px 14px;
    background: #f4f4f4;
    color: #444;
    border: 1px solid transparent;
    border-radius: var(--hygo-radius-pill);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}
.hygo-filter-chip:hover {
    background: #eaeaea;
    color: var(--hygo-text);
    text-decoration: none;
}
.hygo-filter-chip.hygo-active {
    background: var(--hygo-accent, #f5891f);
    color: #fff;
    box-shadow: 0 1px 3px rgba(245,137,31,0.35);
}
.hygo-filter-chip.hygo-active:hover {
    background: var(--hygo-accent, #f5891f);
    color: #fff;
    filter: brightness(1.05);
}

/* ============================================================
 * REVIEWS LIST
 * ============================================================ */
.hygo-review-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hygo-review {
    background: #fff;
    border: 1px solid var(--hygo-border);
    border-radius: var(--hygo-radius);
    padding: 22px 24px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.hygo-review:hover {
    border-color: #d8d8d8;
    box-shadow: var(--hygo-shadow-md);
}
.hygo-review-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.hygo-review-avatar img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: block;
}
.hygo-review-meta {
    flex: 1;
    min-width: 0;
}
.hygo-review-author {
    font-weight: 600;
    font-size: 15px;
    color: var(--hygo-text);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.hygo-review-date {
    font-size: 12px;
    color: var(--hygo-muted);
    margin-top: 3px;
}
.hygo-review-header .hygo-review-rating {
    margin-left: auto;
    align-self: center;
    flex-shrink: 0;
}
.hygo-review-badges {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.hygo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: var(--hygo-radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}
.hygo-badge-verified {
    background: var(--hygo-verified-bg, #0f9d58);
}
.hygo-badge-imported {
    background: var(--hygo-imported-bg, #6b7280);
}

/* Review body */
.hygo-review-body {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 12px 0;
}
.hygo-review-body p {
    margin: 0 0 10px;
}
.hygo-review-body p:last-child { margin-bottom: 0; }

/* Review photos */
.hygo-review-photos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}
.hygo-review-photo {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid var(--hygo-border);
    cursor: zoom-in;
    transition: transform 0.15s, box-shadow 0.15s;
}
.hygo-review-photo:hover {
    transform: translateY(-1px);
    box-shadow: var(--hygo-shadow-md);
}
.hygo-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Store reply */
.hygo-review-store-reply {
    background: #f7f9fc;
    border-left: 3px solid var(--hygo-accent, #f5891f);
    border-radius: 6px;
    padding: 14px 16px;
    margin: 16px 0 6px;
    font-size: 14px;
}
.hygo-reply-prefix {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--hygo-accent, #f5891f);
    margin-bottom: 6px;
}
.hygo-reply-body {
    color: #444;
    line-height: 1.55;
}
.hygo-reply-body p:last-child { margin-bottom: 0; }

/* Review actions (helpful button) */
.hygo-review-actions {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--hygo-border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hygo-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--hygo-border);
    border-radius: var(--hygo-radius-pill);
    color: #444;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.hygo-helpful-btn:hover {
    border-color: var(--hygo-accent, #f5891f);
    color: var(--hygo-accent, #f5891f);
    background: #fffaf3;
}
.hygo-helpful-btn.hygo-voted {
    background: #eef7ee;
    border-color: #0f9d58;
    color: #0f9d58;
    cursor: default;
}
.hygo-helpful-btn.hygo-voted:hover {
    background: #eef7ee;
    border-color: #0f9d58;
    color: #0f9d58;
}
.hygo-helpful-count {
    font-weight: 700;
    margin-left: 2px;
}
.hygo-helpful-count:empty { display: none; }

/* Pagination */
.hygo-review-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}
.hygo-review-pagination a,
.hygo-review-pagination span {
    padding: 8px 14px;
    border-radius: 6px;
    background: #f4f4f4;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s;
}
.hygo-review-pagination a:hover { background: #e6e6e6; text-decoration: none; }
.hygo-review-pagination .current {
    background: var(--hygo-accent, #f5891f);
    color: #fff;
}

/* No reviews state */
.hygo-no-reviews {
    padding: 40px 20px;
    text-align: center;
    color: var(--hygo-muted);
    background: var(--hygo-bg-soft);
    border-radius: var(--hygo-radius);
    border: 1px dashed var(--hygo-border);
    font-size: 15px;
}

/* ============================================================
 * REVIEW SUBMISSION FORM
 * ============================================================ */
.hygo-review-form-wrap {
    margin: 32px 0 0;
    padding: 28px;
    background: var(--hygo-bg-soft);
    border-radius: var(--hygo-radius);
    border: 1px solid var(--hygo-border);
}
.hygo-form-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
    color: var(--hygo-text);
}
.hygo-review-form-wrap #respond {
    padding: 0;
    background: transparent;
    border: none;
}
.hygo-review-form-wrap #reply-title {
    display: none;
}
.hygo-review-form-wrap .comment-form p {
    margin: 0 0 14px;
}
.hygo-review-form-wrap .comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
.hygo-review-form-wrap .comment-form input[type="text"],
.hygo-review-form-wrap .comment-form input[type="email"],
.hygo-review-form-wrap .comment-form input[type="url"],
.hygo-review-form-wrap .comment-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-family: inherit;
    color: var(--hygo-text);
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.hygo-review-form-wrap .comment-form input:focus,
.hygo-review-form-wrap .comment-form textarea:focus {
    outline: none;
    border-color: var(--hygo-accent, #f5891f);
    box-shadow: 0 0 0 3px rgba(245,137,31,0.12);
}
.hygo-review-form-wrap .comment-form textarea {
    min-height: 130px;
    resize: vertical;
}
.hygo-review-form-wrap .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--hygo-muted);
}
.hygo-review-form-wrap .comment-form-cookies-consent input {
    margin-top: 3px;
}
.hygo-review-form-wrap .comment-form-cookies-consent label {
    font-weight: 400 !important;
    font-size: 12px !important;
    margin: 0 !important;
    color: var(--hygo-muted);
}
.hygo-review-form-wrap .form-submit {
    margin-top: 20px !important;
}
.hygo-review-form-wrap .form-submit input[type="submit"],
.hygo-review-form-wrap #submit {
    background: var(--hygo-accent, #f5891f) !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 30px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: filter 0.15s, transform 0.1s !important;
    box-shadow: 0 2px 6px rgba(245,137,31,0.25) !important;
}
.hygo-review-form-wrap .form-submit input[type="submit"]:hover,
.hygo-review-form-wrap #submit:hover {
    background: var(--hygo-accent, #f5891f) !important;
    color: #fff !important;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

/* ============================================================
 * STAR RATING INPUT (WooCommerce-compatible markup)
 * WC renders stars via :before pseudo-elements — we tune the size,
 * color, spacing, and .active state.
 * ============================================================ */
.comment-form-rating {
    margin: 0 0 18px 0;
}
.comment-form-rating label[for="rating"] {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #444 !important;
    margin-bottom: 8px !important;
    display: block !important;
}
.woocommerce p.stars {
    margin: 0 !important;
}
.woocommerce p.stars a {
    font-size: 22px !important;
    margin-right: 4px !important;
    color: #d0d0d0 !important;
    transition: color 0.12s !important;
}
.woocommerce p.stars a:before {
    color: inherit !important;
}
.woocommerce p.stars a:hover,
.woocommerce p.stars a.active,
.comment-form-rating .stars a.active {
    color: var(--hygo-star, #f5b301) !important;
}
.woocommerce p.stars a:hover:before,
.woocommerce p.stars a.active:before,
.comment-form-rating .stars a.active:before {
    color: var(--hygo-star, #f5b301) !important;
}
/* Kill the duplicate .stars WC injects twice on product pages */
.comment-form-rating .stars ~ .stars {
    display: none !important;
}

/* ============================================================
 * PHOTO UPLOAD INPUT (in review form)
 * ============================================================ */
.hygo-photo-input {
    background: #fff;
    border: 2px dashed #d8d8d8;
    border-radius: 8px;
    padding: 16px;
    transition: border-color 0.15s, background 0.15s;
}
.hygo-photo-input:hover {
    border-color: var(--hygo-accent, #f5891f);
    background: #fffaf3;
}
.hygo-photo-input label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #444 !important;
    display: block !important;
    margin-bottom: 8px !important;
    cursor: pointer;
}
.hygo-photo-hint {
    display: block;
    font-size: 12px;
    color: var(--hygo-muted);
    font-weight: 400;
    margin-top: 2px;
}
.hygo-photo-input input[type="file"] {
    display: block;
    font-size: 13px;
    color: #555;
    margin-top: 6px;
}
.hygo-photo-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.hygo-photo-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--hygo-border);
}

/* ============================================================
 * REVIEW PHOTO LIGHTBOX
 * v1.2.3 — selectors renamed from `.hygo-lightbox*` to
 * `.hygo-review-lightbox*` to escape a name collision with the Hygo
 * Child theme's product-page gallery lightbox (assets/css/wc.css defines
 * `.hygo-lightbox { opacity: 0 }` and toggles a `.is-open` class we
 * don't emit). Under the old name the theme's base opacity:0 was
 * inheriting, so the 0.18s fade-in animation ran to 1 then reverted
 * to 0 — visible as a ~1s flash-then-disappear on click.
 * `animation-fill-mode: forwards` on the fade-in also added as a
 * belt-and-braces so any future rule that tries to set opacity:0 on
 * this element can't kill the visible state again.
 * ============================================================ */
.hygo-review-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    cursor: zoom-out;
    animation: hygo-review-lightbox-fade-in 0.18s ease-out forwards;
}
.hygo-review-lightbox[aria-hidden="false"] { display: flex; }
@keyframes hygo-review-lightbox-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hygo-review-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    cursor: default;
    border-radius: 6px;
    animation: hygo-review-lightbox-zoom-in 0.22s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes hygo-review-lightbox-zoom-in {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.hygo-review-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.15s, transform 0.15s;
}
.hygo-review-lightbox-close:hover,
.hygo-review-lightbox-close:focus {
    background: #fff;
    transform: scale(1.06);
    outline: none;
}
body.hygo-review-lightbox-open {
    overflow: hidden;
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */
@media (max-width: 768px) {
    .hygo-review-breakdown {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    .hygo-breakdown-summary {
        border-right: none;
        border-bottom: 1px solid #f2dcb0;
        padding-right: 0;
        padding-bottom: 16px;
        width: 100%;
    }
    .hygo-breakdown-bars { width: 100%; }
    .hygo-review-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .hygo-review-sort { justify-content: space-between; }
    .hygo-review { padding: 18px; }
    .hygo-review-header { gap: 12px; }
    .hygo-review-header .hygo-review-rating {
        margin-left: 0;
        margin-top: 6px;
    }
    .hygo-review-avatar img { width: 40px; height: 40px; }
    .hygo-review-photo { width: 68px; height: 68px; }
    .hygo-review-form-wrap { padding: 20px; }
    .hygo-review-lightbox { padding: 20px; }
    .hygo-review-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 24px; }
}

/* Loading state while AJAX filter/sort/page fetches new content */
#hygo-reviews-listing {
    transition: opacity 0.15s;
    min-height: 200px;
}
#hygo-reviews-listing.hygo-loading {
    pointer-events: none;
}

/* ============================================================
 * "ALREADY REVIEWED" STATE
 * Replaces the review submission form when the visitor already has an
 * approved or pending review for this product (matched by user_id or
 * a persistent browser cookie — see inc/dedup.php).
 * ============================================================ */
.hygo-review-form-wrap.hygo-already-reviewed {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f7fbf7 0%, #eef7ee 100%);
    border: 1px solid #cfe8d1;
}
.hygo-already-reviewed-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hygo-verified-bg, #0f9d58);
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 14px;
    box-shadow: 0 3px 10px rgba(15, 157, 88, 0.25);
}
.hygo-already-reviewed .hygo-form-title {
    color: #0f9d58 !important;
    margin: 0 0 8px !important;
    font-size: 18px !important;
}
.hygo-already-reviewed-msg {
    color: #4a6e4a;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
 * INLINE REVIEW NOTICES (shown above the form)
 * Used for duplicate-submission warnings redirected from server-side.
 * ============================================================ */
.hygo-review-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.45;
    animation: hygo-notice-slide-in 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes hygo-notice-slide-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hygo-review-notice-error {
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    color: #842029;
}
.hygo-notice-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}
.hygo-notice-text { flex: 1; }
