/**
 * Reseller Page Styles
 * 
 * Uses CSS variables from skins for cross-theme compatibility.
 * Shared components (highlights, benefits, steps) are in shared.css
 */

/* Reseller Tiers */
.reseller-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tier-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tier-popular {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.tier-popular:hover { transform: scale(1.05) translateY(-8px); }

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-orange);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.tier-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
}

.tier-header h3 { font-size: 1.5rem; margin-bottom: 5px; }
.tier-credits { font-size: 14px; color: var(--text-muted); }
.tier-price { text-align: center; margin-bottom: 20px; }
.tier-price-value { display: block; font-size: 2.5rem; font-weight: 800; }
.tier-price-per { font-size: 14px; color: var(--text-muted); }

.tier-margin {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.tier-features { list-style: none; padding: 0; margin: 0 0 25px; }

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.tier-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-tier {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-tier:hover { opacity: 0.9; transform: translateY(-2px); }

.tiers-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .reseller-tiers-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-popular { transform: none; }
}

@media (max-width: 576px) { .reseller-tiers-grid { grid-template-columns: 1fr; } }

/* Reseller Contact Box */
.reseller-contact-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px 40px;
}

.reseller-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.1), rgba(var(--accent-orange-rgb), 0.05));
    border: 2px solid rgba(var(--accent-orange-rgb), 0.3);
    border-radius: 50%;
}

.reseller-contact-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

.reseller-contact-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.reseller-contact-box > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.reseller-contact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-feature span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reseller-contact-box { padding: 40px 24px; }
    .reseller-contact-features { grid-template-columns: 1fr; }
    .reseller-contact-box h2 { font-size: 1.5rem; }
}
