/* Modern Company Page Styles */
:root {
    --primary-color: #00C9A7;
    --primary-dark: #009279;
    --primary-light: #00E6BF;
    --secondary-color: #3C4858;
    --secondary-light: #525E70;
    --accent-orange: #F9A836;
    --accent-blue: #4F7FFF;
    --bg-light: #F8FAFB;
    --bg-white: #FFFFFF;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --text-light: #A0AEC0;
    --border-light: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading Animation */
.ce-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 9999;
    transform-origin: left;
    animation: loadingBar 1.5s ease-in-out;
}

@keyframes loadingBar {
    0% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(0.7);
    }
    100% {
        transform: scaleX(1);
    }
}

.ce-loading-bar.hidden {
    animation: loadingBarOut 0.3s ease-out forwards;
}

@keyframes loadingBarOut {
    to {
        opacity: 0;
        transform: scaleX(1);
    }
}

.ce-page-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.ce-page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.ce-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade In Animation */
.ce-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ce-fade-in-delay-1 { animation-delay: 0.1s; }
.ce-fade-in-delay-2 { animation-delay: 0.2s; }
.ce-fade-in-delay-3 { animation-delay: 0.3s; }
.ce-fade-in-delay-4 { animation-delay: 0.4s; }
.ce-fade-in-delay-5 { animation-delay: 0.5s; }

/* Modern Card Styles */
.ce-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.ce-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.ce-card-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #FAFBFC 0%, #F8FAFB 100%);
}

.ce-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ce-card-title-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.ce-card-body {
    padding: 24px;
}

.ce-card-body-scrollable {
    max-height: 400px;
    overflow-y: auto;
    padding: 24px;
}

.ce-card-body-scrollable::-webkit-scrollbar {
    width: 8px;
}

.ce-card-body-scrollable::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.ce-card-body-scrollable::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 4px;
}

.ce-card-body-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Company Header Styles */
.ce-company-header {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.ce-company-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ce-company-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ce-company-meta .ce-badge {
    max-width: 100%;
    word-break: break-word;
}

.ce-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.ce-badge-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.ce-badge-success svg,
.ce-badge-success i {
    color: white !important;
}

.ce-badge-danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.ce-badge-danger svg,
.ce-badge-danger i {
    color: white !important;
}

.ce-badge-info {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #3B62D9 100%);
    color: white !important;
    box-shadow: 0 2px 8px rgba(79, 127, 255, 0.3);
}

.ce-badge-info svg,
.ce-badge-info i {
    color: white !important;
}

.ce-badge-warning {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E89320 100%);
    color: white !important;
    box-shadow: 0 2px 8px rgba(249, 168, 54, 0.3);
}

.ce-badge-warning svg,
.ce-badge-warning i {
    color: white !important;
}

/* Modern Button Styles */
.ce-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ce-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ce-btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.ce-btn-modern span {
    position: relative;
    z-index: 1;
}

.ce-btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.3);
}

.ce-btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.4);
    color: white !important;
}

.ce-btn-primary-modern span {
    color: white !important;
}

.ce-btn-primary-modern svg,
.ce-btn-primary-modern i {
    color: white !important;
    stroke: white !important;
}

.ce-btn-secondary-modern {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(60, 72, 88, 0.2);
}

.ce-btn-secondary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 72, 88, 0.3);
    color: white !important;
}

.ce-btn-secondary-modern span {
    color: white !important;
}

.ce-btn-secondary-modern svg,
.ce-btn-secondary-modern i {
    color: white !important;
    stroke: white !important;
}

.ce-btn-outline-modern {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.ce-btn-outline-modern span {
    color: var(--primary-color) !important;
}

.ce-btn-outline-modern svg,
.ce-btn-outline-modern i {
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.ce-btn-outline-modern:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.3);
}

.ce-btn-outline-modern:hover span {
    color: white !important;
}

.ce-btn-outline-modern:hover svg,
.ce-btn-outline-modern:hover i {
    color: white !important;
    stroke: white !important;
}

.ce-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}

/* Info Grid */
.ce-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.ce-info-item {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.ce-info-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.ce-info-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary) !important;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ce-info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary) !important;
    word-break: break-word;
}

/* Documents Section */
.ce-documents-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, #F8FAFB 0%, #F0F4F8 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
}

.ce-tab-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary) !important;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ce-tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.2);
}

.ce-premium-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.ce-premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotatePremium 20s linear infinite;
}

@keyframes rotatePremium {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ce-premium-content {
    position: relative;
    z-index: 1;
}

.ce-premium-title {
    font-size: 24px;
    font-weight: 800;
    color: white !important;
    margin: 0 0 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ce-premium-title::before,
.ce-premium-title::after {
    content: '✦';
    font-size: 20px;
    opacity: 0.7;
    color: white !important;
}

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

.ce-premium-btn {
    background: white !important;
    color: var(--primary-color) !important;
    font-weight: 700;
    transition: var(--transition);
    border: none !important;
}

.ce-premium-btn:hover {
    background: var(--bg-light) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ce-premium-btn.locked::after {
    content: '';
    margin-left: 8px;
}

.ce-premium-btn svg,
.ce-premium-btn i {
    color: var(--primary-color) !important;
}

/* Finance Chart Improvements */
.ce-finance-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ce-chart-container {
    background: linear-gradient(135deg, #FAFBFC 0%, #F8FAFB 100%);
    padding: 24px;
    border-radius: var(--radius-md);
    position: relative;
}

.ce-chart-toolbar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ce-chart-type-btn {
    padding: 6px 14px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.ce-chart-type-btn.active,
.ce-chart-type-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.ce-finance-table {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ce-finance-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
}

.ce-finance-table thead th {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white !important;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.ce-finance-table thead th:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    z-index: 11;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.ce-finance-table tbody tr {
    transition: var(--transition);
    cursor: pointer;
}

.ce-finance-table tbody tr:hover {
    background: var(--bg-light);
}

.ce-finance-table tbody tr.selected {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(0, 146, 121, 0.1) 100%);
}

.ce-finance-table tbody tr.selected td:first-child {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(0, 146, 121, 0.1) 100%);
}

.ce-finance-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
}

.ce-finance-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-primary) !important;
    text-align: left;
    position: sticky;
    left: 0;
    background: white;
    z-index: 10;
}

.ce-finance-table tbody tr:hover td:first-child {
    background: var(--bg-light);
}

.ce-finance-table .table-secondary th {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%) !important;
    color: white !important;
}

.ce-finance-table .table-primary {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.15) 0%, rgba(0, 146, 121, 0.15) 100%);
}

/* List Items */
.ce-list-item {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.ce-list-item:last-child {
    border-bottom: none;
}

.ce-list-item:hover {
    background: var(--bg-light);
}

.ce-list-item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.ce-list-item-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 120px;
}

.ce-list-item-content {
    flex: 1;
}

.ce-list-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.ce-list-item-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Modal */
.ce-pricing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

.ce-pricing-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ce-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ce-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 24px;
    color: var(--text-secondary);
}

.ce-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.ce-modal-header {
    background: white;
    padding: 32px 32px 24px 32px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.ce-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ce-modal-title svg,
.ce-modal-title i {
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
    width: 28px;
    height: 28px;
}

.ce-modal-subtitle {
    font-size: 15px;
    color: var(--text-secondary) !important;
    font-weight: 400;
}

.ce-modal-body {
    padding: 32px;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
}

.ce-modal-body::-webkit-scrollbar {
    width: 6px;
}

.ce-modal-body::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.ce-modal-body::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.ce-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.ce-pricing-card-modal {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.ce-pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #F0FDF9 0%, #E6FAF5 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 201, 167, 0.2);
}

.ce-pricing-badge-modal {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ce-pricing-amount-modal {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 16px 0 12px 0;
}

.ce-pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.ce-pricing-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.ce-pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.ce-pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.ce-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}

.ce-pricing-feature-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.ce-pricing-feature-text {
    font-size: 14px;
    color: var(--text-primary) !important;
    line-height: 1.6;
}

.ce-pricing-feature-text strong {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.ce-pricing-trial {
    background: #FEF3C7;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin: 20px 0;
    border: 1px solid #FCD34D;
}

.ce-pricing-trial-text {
    font-size: 14px;
    font-weight: 600;
    color: #92400E;
    margin: 0;
}

.ce-pricing-trial-subtext {
    font-size: 13px;
    color: #B45309;
    margin: 4px 0 0 0;
}

.ce-pricing-cta {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.ce-pricing-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light) !important;
    margin: 12px 0 0 0;
}

.ce-pricing-note svg,
.ce-pricing-note i {
    color: var(--text-light) !important;
}

/* Map Container */
.ce-map-container {
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Icon fixes */
svg, i[data-feather] {
    stroke-width: 2;
    vertical-align: middle;
}

.ce-badge svg,
.ce-badge i[data-feather] {
    flex-shrink: 0;
}

.ce-btn-modern svg,
.ce-btn-modern i[data-feather] {
    flex-shrink: 0;
}

.ce-card-title-icon svg,
.ce-card-title-icon i[data-feather] {
    color: white !important;
    stroke: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ce-company-title {
        font-size: 24px;
    }
    
    .ce-card-header {
        padding: 16px;
    }
    
    .ce-card-body {
        padding: 16px;
    }
    
    .ce-info-grid {
        grid-template-columns: 1fr;
    }
    
    .ce-modal-body {
        padding: 24px 16px;
    }
    
    .ce-pricing-value {
        font-size: 42px;
    }
}

/* Follow Button Animation */
.ce-follow-btn {
    position: relative;
    overflow: hidden;
}

.ce-follow-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ce-follow-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Shine Effect on Premium Items */
@keyframes shine {
    0% { background-position: -200px; }
    100% { background-position: 200px; }
}

.ce-premium-shine {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: shine 3s infinite;
}

/* Fix Bootstrap conflicts with header */
.ce-header .wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
}

.ce-header-menu {
    margin-right: auto !important;
}

.ce-header-menu > ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ce-header-menu > ul > li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ce-header-other {
    margin-left: auto !important;
}

