/* ==========================================================================
   Amazon Associates — Affiliate Link Styles
   ========================================================================== */

/* ── Inline Article Shortcode Link ──────────────────────────────────────── */
.amzn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
    background: #fff8f0;
    border: 1px solid #f0d9b5;
    color: #b45309;
    font-family: var(--a-font-body, 'Outfit', sans-serif);
    font-size: 0.88em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.amzn-link:hover {
    background: #fff3e0;
    border-color: #d4a056;
    color: #92400e;
    box-shadow: 0 2px 8px rgba(180, 83, 9, 0.12);
    transform: translateY(-1px);
}
.amzn-link__text {
    font-weight: 600;
}
.amzn-link__badge {
    font-size: 0.68em;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    background: #f59e0b;
    color: #fff;
}

/* ── Shade Matcher Result Card Link ─────────────────────────────────────── */
.sm-result-card__amazon {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    background: #f59e0b;
    color: #fff;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sm-result-card__amazon:hover {
    background: #d97706;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
}

/* ── Holiday Wishlist Card Link ─────────────────────────────────────────── */
.hw-card__amazon {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.65rem;
    padding: 0.35rem 0.8rem;
    border-radius: 5px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hw-card__amazon:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(217, 119, 6, 0.25);
}

/* ── FTC Disclosure ─────────────────────────────────────────────────────── */
.affiliate-disclosure {
    font-family: var(--a-font-body, 'Outfit', sans-serif);
    font-size: 0.72rem;
    color: #999;
    text-align: center;
    padding: 0.6rem 1rem;
    margin: 1.5rem auto 0;
    max-width: 720px;
    line-height: 1.5;
    border-top: 1px solid #f0f0f0;
}
