/* ── GAT Trust Signals & Shipping Countdown — Frontend Styles ─────────── */
/* Colours are injected as CSS custom properties by PHP (wp_add_inline_style)  */
/* so this file never changes when the admin saves new brand colours.           */

/* ── Trust Signals Block ───────────────────────────────────────────────── */
.gat-trust-signals {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin: 10px 0 15px;
    padding: 12px 15px;
    background: var(--gat-trust-bg, #f9f9f9);
    border-left: 4px solid var(--gat-trust-accent, #FF0A54);
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    font-family: inherit;
    color: var(--gat-trust-text, #374151);
}
.gat-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.gat-trust-icon { font-size: 15px; flex-shrink: 0; }

/* Signal-specific text colours are intentional and not brand-overridable      */
/* — red/green/blue carry semantic meaning (urgency/social/popularity).         */
.gat-trust--viewing .gat-trust-text { color: #c0392b; font-weight: 600; }
.gat-trust--cart    .gat-trust-text { color: #27ae60; font-weight: 600; }
.gat-trust--sold    .gat-trust-text { color: #2980b9; font-weight: 600; }

.gat-trust-preview-label {
    font-size: 11px;
    color: #f39c12;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #f39c12;
}

/* ── Product Shipping Countdown Block ─────────────────────────────────── */
.gat-product-ship {
    background-color: var(--gat-cd-bg, #EAE4E1);
    color: var(--gat-cd-text, #374151);
    padding: 12px 15px;
    margin: 15px 0;
    border-left: 4px solid var(--gat-cd-accent, #FF0A54);
    font-size: 15px;
    border-radius: 0 4px 4px 0;
}
.gat-product-ship strong,
.gat-cd-strong {
    color: var(--gat-cd-strong, #FF0A54);
}

/* ── Footer Ticker Bar ────────────────────────────────────────────────── */
.gat-footer-ticker {
    background-color: var(--gat-ticker-bg, #EAE4E1);
    color: var(--gat-ticker-text, #374151);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-top: 2px solid var(--gat-ticker-border, #FF0A54);
    width: 100%;
    display: block;
    letter-spacing: .5px;
}
.gat-footer-ticker strong,
.gat-ticker-strong {
    color: var(--gat-ticker-strong, #FF0A54);
    font-weight: 700;
}
