:root {
    --busybee-yellow: #FFC107;
    --busybee-black: #212529;
    --busybee-gray: #6C757D;
}

.busybee-subscription-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bg-busybee {
    background-color: var(--busybee-black) !important;
}

.text-busybee {
    color: var(--busybee-yellow) !important;
}

.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: var(--busybee-yellow);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--busybee-yellow);
    color: var(--busybee-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .bi-check-circle-fill {
    color: #28a745;
}

.feature-list .bi-x-circle-fill {
    color: #dc3545;
}

.btn-busybee {
    background-color: var(--busybee-yellow);
    color: var(--busybee-black);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
}

.btn-busybee:hover {
    background-color: #e0a800;
    color: var(--busybee-black);
}

/* Ensure Bootstrap doesn't conflict with theme */
.busybee-subscription-page .navbar {
    margin-bottom: 0;
}

.busybee-subscription-page section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.busybee-subscription-page footer {
    margin-top: 3rem;
}