/* Small supplemental styles on top of Tailwind CDN. */
.img-fallback {
    background: repeating-linear-gradient(45deg, #fce7f3, #fce7f3 10px, #fbcfe8 10px, #fbcfe8 20px);
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details[open] > summary::after { content: ' −'; }
details:not([open]) > summary::after { content: ' +'; }

/* ---- Trust-signal section (own-policy badges) ----
   Inherits each store's palette via the --tokens set on <html>; no hardcoded colors. */
.social-proof-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid;
}
.social-proof-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}
.social-proof-badge-icon { font-size: 1.35rem; line-height: 1; }
