/**
 * Affiliate dashboard styles — scoped under .vdhg-aff to avoid leaking
 * into the rest of My Account. Picks up the theme's Inter / Space Grotesk
 * stack and the dark gold/charcoal palette set in theme.css.
 */

.vdhg-aff {
    color: var( --vdhg-text, #e9edf3 );
    font-family: 'Inter', -apple-system, sans-serif;
}

.vdhg-aff__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 0 12px 0;
}

.vdhg-aff__lede {
    color: var( --vdhg-muted, #9aa3b0 );
    margin: 0 0 20px 0;
    max-width: 60ch;
}

.vdhg-aff__notice {
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.vdhg-aff__notice--ok   { background: #1f3a26; color: #b8f5c4; border: 1px solid #2f6b3d; }
.vdhg-aff__notice--warn { background: #3a2a1f; color: #ffd9a8; border: 1px solid #6b4a2f; }

.vdhg-aff__panel {
    background: var( --vdhg-panel, #171c24 );
    border: 1px solid var( --vdhg-border, #232a35 );
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 20px;
}
.vdhg-aff__panel h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 12px 0;
}

.vdhg-aff__btn {
    margin-top: 8px;
}
.vdhg-aff__msg {
    display: inline-block;
    margin-left: 12px;
    font-size: 0.9rem;
    color: var( --vdhg-muted, #9aa3b0 );
}

.vdhg-aff__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}
@media ( max-width: 720px ) {
    .vdhg-aff__grid { grid-template-columns: 1fr; }
}

.vdhg-aff__share {
    display: flex;
    gap: 8px;
}
.vdhg-aff__share input {
    flex: 1;
    background: #0e1116;
    color: var( --vdhg-text, #e9edf3 );
    border: 1px solid var( --vdhg-border, #232a35 );
    border-radius: 8px;
    padding: 10px 12px;
    font-family: monospace;
    font-size: 0.9rem;
}

.vdhg-aff__code code {
    background: #0e1116;
    color: #f2c300;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.vdhg-aff__balance {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #f2c300;
    margin: 0 0 14px 0;
    line-height: 1;
}

.vdhg-aff__shop-cta {
    display: inline-block;
}

.vdhg-aff__stats {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    background: var( --vdhg-panel, #171c24 );
    border: 1px solid var( --vdhg-border, #232a35 );
    border-radius: 14px;
    overflow: hidden;
}
.vdhg-aff__stats th,
.vdhg-aff__stats td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var( --vdhg-border, #232a35 );
}
.vdhg-aff__stats tbody tr:last-child td { border-bottom: 0; }
.vdhg-aff__stats th {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var( --vdhg-muted, #9aa3b0 );
    background: #11161e;
}
.vdhg-aff__stats td {
    font-size: 1.1rem;
    color: var( --vdhg-text, #e9edf3 );
}

/* Single-product redeem panel inside the affiliate shop */
.vdhg-aff-shop {
    background: var( --vdhg-panel, #171c24 );
    border: 1px solid var( --vdhg-border, #232a35 );
    border-radius: 14px;
    padding: 18px 20px;
    margin: 16px 0;
    color: var( --vdhg-text, #e9edf3 );
    font-family: 'Inter', -apple-system, sans-serif;
}
.vdhg-aff-shop__price {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.6rem;
    margin: 0 0 6px 0;
    color: #f2c300;
}
.vdhg-aff-shop__yields,
.vdhg-aff-shop__balance {
    margin: 0 0 6px 0;
    color: var( --vdhg-muted, #9aa3b0 );
    font-size: 0.95rem;
}
.vdhg-aff-shop__redeem { margin-top: 10px; }
.vdhg-aff-shop__result {
    margin-top: 16px;
    padding: 14px;
    background: #0e1116;
    border: 1px dashed #f2c300;
    border-radius: 10px;
}
.vdhg-aff-shop__result code {
    background: #171c24;
    color: #f2c300;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 1rem;
}
