/* User Dashboard Specific Styles */

.user-dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-bottom: 1px solid #333;
    z-index: 1000;
    padding: 1rem 0;
}

.user-dashboard-nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-store {
    font-size: 0.875rem;
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-dashboard-container {
    display: flex;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* User Sidebar */
.user-sidebar {
    width: 250px;
    background: #111111;
    border-right: 1px solid #333;
    padding: 2rem 0;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.user-main-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
    background: #000000;
    min-height: calc(100vh - 80px);
}

/* Welcome Card */
.welcome-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.welcome-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.welcome-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.setup-progress {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.progress-step.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.progress-step i {
    width: 20px;
    text-align: center;
}

/* Quick Actions */
.quick-actions {
    background: #111111;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.quick-actions h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #444;
    border-radius: 8px;
    background: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.action-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.action-card i {
    font-size: 2rem;
    color: #6366f1;
}

.action-card h4 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.action-card p {
    margin: 0;
    color: #ffffff;
    font-size: 0.875rem;
}

/* Setup Form */
.setup-form {
    background: #111111;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

/* Logo Upload */
.logo-upload {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.logo-preview {
    width: 150px;
    height: 150px;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-upload-controls {
    flex: 1;
}

.upload-hint {
    margin-top: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
}

/* URL Setup */
.url-setup {
    max-width: 400px;
}

.url-preview {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #111111;
}

.url-prefix {
    color: #ffffff;
    font-weight: 500;
}

.url-preview input {
    border: none;
    background: none;
    outline: none;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.url-hint {
    margin-top: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
}

/* Design Tabs */
.design-tabs {
    background: #111111;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: #ffffff;
}

/* Theme Grid */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.theme-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.theme-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.theme-card.active {
    border-color: #6366f1;
    background: #111111;
}

.theme-preview {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #1a1a1a;
}

.preview-header {
    height: 30px;
    background: #6366f1;
}

.preview-header.minimal {
    background: #374151;
}

.preview-header.colorful {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.preview-content {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.preview-content.minimal {
    background: #1a1a1a;
}

.preview-content.colorful {
    background: linear-gradient(45deg, #ffeaa7, #fab1a0);
    color: #000000;
}

.preview-product {
    height: 40px;
    background: #e2e8f0;
    border-radius: 4px;
}

.preview-product.minimal {
    background: #d1d5db;
}

.preview-product.colorful {
    background: #74b9ff;
}

.theme-card h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-weight: 600;
}

.theme-card p {
    margin: 0;
    color: #ffffff;
    font-size: 0.875rem;
}

/* Color Scheme */
.color-scheme {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.color-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-group label {
    min-width: 120px;
    font-weight: 500;
    color: #ffffff;
}

.color-picker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.color-picker input[type="color"] {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.color-value {
    font-family: monospace;
    font-weight: 600;
    color: #ffffff;
}

/* Layout Options */
.layout-options {
    display: flex;
    gap: 2rem;
}

.layout-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.layout-option input[type="radio"] {
    display: none;
}

.layout-option input[type="radio"]:checked + span {
    border-color: #6366f1;
    background: #111111;
}

.layout-preview {
    width: 120px;
    height: 80px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px;
    background: #111111;
}

.layout-preview.grid {
    grid-template-columns: 1fr 1fr;
}

.layout-preview.list {
    flex-direction: column;
}

.grid-item, .list-item {
    background: #6366f1;
    border-radius: 3px;
    flex: 1;
}

.grid-item {
    min-height: 20px;
}

.list-item {
    height: 12px;
    margin-bottom: 4px;
}

/* Font Options */
.font-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.font-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.font-group label {
    min-width: 120px;
    font-weight: 500;
    color: #ffffff;
}

.font-group select {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

/* Payment Setup */
.payment-setup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.payment-method:hover {
    border-color: #6366f1;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-header i {
    font-size: 2rem;
    color: #6366f1;
}

.method-header h3 {
    margin: 0 0 0.25rem 0;
    color: #ffffff;
    font-weight: 600;
}

.method-header p {
    margin: 0;
    color: #ffffff;
    font-size: 0.875rem;
}

.method-header button {
    margin-left: auto;
}

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.analytics-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.analytics-card h3 {
    margin: 0 0 1rem 0;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.metric-change {
    color: #000000;
    font-size: 0.875rem;
}

/* Settings Sections */
.settings-sections {
    background: #111111;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.setting-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.setting-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.setting-group h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.setting-item:last-child {
    margin-bottom: 0;
}

.setting-item label {
    min-width: 150px;
    font-weight: 500;
    color: #ffffff;
}

.setting-item input,
.setting-item select {
    flex: 1;
    max-width: 300px;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.setting-item input:focus,
.setting-item select:focus {
    outline: none;
    border-color: #6366f1;
}

/* Status Badge */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.draft {
    background: #f59e0b;
    color: #ffffff;
}

.status-badge.published {
    background: #10b981;
    color: #ffffff;
}

.status-badge.maintenance {
    background: #3b82f6;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .user-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .user-sidebar.open {
        transform: translateX(0);
    }
    
    .user-main-content {
        margin-left: 0;
    }
    
    .setup-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .actions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .theme-grid {
        grid-template-columns: 1fr;
    }
    
    .layout-options {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .user-dashboard-nav .nav-container {
        padding: 0 1rem;
    }
    
    .user-main-content {
        padding: 1rem;
    }
    
    .logo-upload {
        flex-direction: column;
        text-align: center;
    }
    
    .color-group,
    .font-group,
    .setting-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .setting-item label {
        min-width: auto;
    }
    
    .setting-item input,
    .setting-item select {
        max-width: none;
    }
}

/* Feature Cards */
.feature-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #444;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-header i {
    font-size: 2rem;
    color: #6366f1;
}

.feature-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    flex: 1;
}

.feature-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-badge.pro {
    background: #3b82f6;
    color: white;
}

.feature-badge.enterprise {
    background: #f59e0b;
    color: white;
}

.feature-badge.ultimate {
    background: #8b5cf6;
    color: white;
}

.feature-badge.available {
    background: #10b981;
    color: white;
}

.feature-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content {
    margin-top: 1.5rem;
}

.pages-list {
    background: #111111;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 100px;
}

.seo-settings {
    display: grid;
    gap: 1rem;
}

.page-item {
    background: #111111;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-item h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.page-item p {
    margin: 0.25rem 0 0 0;
    color: #ffffff;
    font-size: 0.875rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    background: #1a1a1a;
    padding: 1.5rem;
    border-bottom: 1px solid #444;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
}

.close {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 0;
}

/* Upgrade Modal */
.upgrade-modal-content {
    text-align: center;
    padding: 2rem;
}

.upgrade-modal-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.upgrade-modal-content p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.upgrade-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upgrade-actions .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.upgrade-actions .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #444;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-actions .btn-outline:hover {
    background: #444;
    color: #ffffff;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Sections */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Product Controls */
.product-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-controls select {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #444;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.product-controls select:focus {
    border-color: #6366f1;
    outline: none;
}

/* Product Group Badge */
.product-group-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #6366f1;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.product-image {
    position: relative;
}

/* Crypto Payment Styles */
.crypto-payment-content {
    text-align: center;
    padding: 1rem;
}

.crypto-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.crypto-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #444;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
}

.crypto-option:hover {
    border-color: #6366f1;
    background: #333;
}

.crypto-option i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.crypto-address {
    margin-top: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.crypto-address label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.crypto-address input {
    width: 100%;
    padding: 0.5rem;
    background: #333;
    border: 2px solid #444;
    border-radius: 4px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.paypal-button-container {
    margin-top: 1rem;
}

/* Professional Dashboard Sections */
.orders-container, .customers-container, .inventory-container, .marketing-container,
.shipping-container, .taxes-container, .integrations-container, .reports-container,
.support-container {
    padding: 2rem;
}

.orders-stats, .customers-stats, .inventory-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: #6366f1;
}

.stat-content h3 {
    color: #000000;
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.stat-content p {
    color: #000000;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.inventory-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.marketing-cards, .report-categories, .support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.marketing-card, .report-card, .support-card {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.marketing-card:hover, .report-card:hover, .support-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.marketing-icon, .report-icon, .support-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.marketing-card h3, .report-card h3, .support-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.marketing-card p, .report-card p, .support-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.shipping-settings, .tax-settings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.zone-card, .method-card, .region-card {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.zone-card h4, .method-card h4, .region-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.zone-card p, .method-card p, .region-card p {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.method-price {
    color: #6366f1;
    font-weight: 600;
    font-size: 1.1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.compliance-item i {
    color: #10b981;
}

.integration-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.integration-card {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.integration-icon {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.integration-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.integration-card p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* New Professional Sections */
.automation-container, .security-container, .api-container {
    padding: 2rem;
}

.automation-categories, .security-features, .api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.automation-card, .security-card, .api-card {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.automation-card:hover, .security-card:hover, .api-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.automation-icon, .security-icon, .api-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.automation-card h3, .security-card h3, .api-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.automation-card p, .security-card p, .api-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Payment Setup Modals */
.crypto-setup-modal, .paypal-setup-modal, .stripe-setup-modal {
    max-width: 600px;
}

.crypto-selection, .paypal-options, .stripe-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.crypto-option, .paypal-option {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-option:hover, .paypal-option:hover {
    border-color: #6366f1;
}

.crypto-option input, .paypal-option input {
    margin-right: 0.5rem;
}

.crypto-option label, .paypal-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    margin: 0;
}

.crypto-option i, .paypal-option i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: #6366f1;
}

.crypto-address-group {
    margin-bottom: 1rem;
}

.crypto-address-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.crypto-address-group input {
    width: 100%;
    padding: 0.75rem;
    background: #333;
    border: 2px solid #444;
    border-radius: 4px;
    color: #ffffff;
}

.paypal-credentials, .stripe-credentials {
    margin: 1.5rem 0;
}

.paypal-credentials .form-group, .stripe-credentials .form-group {
    margin-bottom: 1rem;
}

.paypal-credentials label, .stripe-credentials label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.paypal-credentials input, .stripe-credentials input {
    width: 100%;
    padding: 0.75rem;
    background: #333;
    border: 2px solid #444;
    border-radius: 4px;
    color: #ffffff;
}

.paypal-credentials small, .stripe-credentials small {
    display: block;
    color: #a0a0a0;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.feature-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-checkboxes label {
    display: flex;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
}

.feature-checkboxes input {
    margin-right: 0.5rem;
}

.paypal-actions, .stripe-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Packages & Badges Section */
.current-package, .available-packages, .user-badges-section {
    margin-bottom: 3rem;
}

.current-package h2, .available-packages h2, .user-badges-section h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.current {
    border-color: #10b981;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
}

.package-card.upgrade:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.package-badge:not(.pro):not(.enterprise):not(.ultimate) {
    background: #6b7280;
}

.package-badge.pro {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.package-badge.enterprise {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.package-badge.ultimate {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.package-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price {
    color: #10b981;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.package-features li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.package-card button {
    width: 100%;
    margin-top: 1.5rem;
}

/* User Badges */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.badge-item {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.badge-item.earned {
    border-color: #10b981;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
}

.badge-item.locked {
    opacity: 0.5;
    background: #111111;
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.badge-icon.earned {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-icon.locked {
    background: #6b7280;
}

.badge-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.badge-description {
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.4;
}

.badge-status {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-status.earned {
    color: #10b981;
}

.badge-status.locked {
    color: #6b7280;
}

/* User Badges in Navigation */
.user-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.user-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.user-badge.free {
    background: #6b7280;
}

.user-badge.pro {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.user-badge.enterprise {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.user-badge.ultimate {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
