/* Purchase Reseller Page Styles */

.purchase-reseller-page {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 40px 0;
}

.reseller-package-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.reseller-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.reseller-package-card .card-header {
    background: linear-gradient(135deg, #6c63ff 0%, #574fd6 100%);
    color: #fff;
    padding: 20px 24px;
    border-bottom: none;
}

.reseller-package-card .card-header h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.reseller-package-card .card-body {
    padding: 24px;
}

.reseller-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.reseller-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #718096;
}

.reseller-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.reseller-features li {
    padding: 6px 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.reseller-features li i {
    color: #48bb78;
    margin-right: 8px;
}

.btn-reseller-buy {
    background: linear-gradient(135deg, #6c63ff 0%, #574fd6 100%);
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    width: 100%;
    transition: opacity 0.2s ease;
}

.btn-reseller-buy:hover {
    opacity: 0.9;
    color: #fff;
}

.reseller-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 8px;
}

.reseller-page-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 40px;
}
