/* Custom styles for ProFinder Charts */

:root {
    --primary-color: #0066cc;
    --secondary-color: #004080;
    --accent-color: #ff6b35;
}

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

/* Hero section styling */
.uk-section-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Product cards */
.uk-card-hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Navigation */
.uk-navbar-container {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.uk-logo {
    color: var(--primary-color) !important;
}

/* Buttons */
.uk-button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.uk-button-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Product grid */
.product-grid .uk-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-grid .uk-card-body {
    flex-grow: 1;
}

/* Price styling */
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .uk-navbar-center {
        display: none;
    }
    
    .uk-heading-large {
        font-size: 2rem;
    }
}

/* Cart badge */
.uk-badge {
    background-color: var(--accent-color);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form styling */
.uk-form-stacked .uk-form-label {
    font-weight: 600;
    margin-bottom: 5px;
}

/* PayPal button container */
#paypal-button-container {
    min-height: 50px;
}
