/**
 * Learn Page Premium Features Styles
 * Comprehensive styling for premium learning features
 */

/* ============================================
   LEARNING PATHS
   ============================================ */

.learning-paths-section {
    padding: 4rem 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }

.paths-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-top: 2rem; }

.path-card {
    border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); cursor: pointer; transition: all 0.3s ease; flex-direction: column; }

.path-card:hover {
    transform: translateY(-8px); }

.path-header {
    text-align: center; position: relative; }

.path-header i {
    font-size: 3rem; margin-bottom: 1rem; }

.path-badge {
    top: 1rem; right: 1rem; font-weight: 600; backdrop-filter: blur(10px); }

.path-content {
    flex: 1; }

.path-content h3 {
    margin: 0 0 0.5rem; }

.path-content p {
    line-height: 1.6; }

.path-meta i {
    margin-right: 0.25rem; }

.progress-bar {
    width: 100%; height: 8px; }

.path-action {
    border-top: 1px solid var(--border-color); }

.path-btn {
    border: none; align-items: center; justify-content: center; }

.path-modal {
    left: 0; z-index: 10003; }

.path-modal-content {
    max-width: 700px; max-height: 80vh; }

.path-modal-header p {
    opacity: 0.9; }

.path-steps {
    overflow-y: auto; }

.path-step {
    border-left: 4px solid transparent; }

.path-step.completed {
    border-left-color: var(--success-color); }

.step-number {
    flex-shrink: 0; }

.step-type {
    text-transform: capitalize; }

/* ============================================
   ACHIEVEMENTS & BADGES
   ============================================ */

.achievements-button {
    margin-left: 1rem; }

.achievements-panel-header {
    border-bottom: 2px solid var(--border-color); }

.achievement-stat .stat-label {
    letter-spacing: 0.5px; }

.toolbar-btn:hover {
    border-color: var(--primary-color); }

.template-item pre {
    overflow-x: auto; }

.timer-time {
    font-family: 'Courier New', monospace; }

body.focus-mode .learn-nav,
body.focus-mode .bookmarks-panel,
body.focus-mode .notes-panel,
body.focus-mode .achievements-panel {
    pointer-events: none; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
}


/* Focus styles for accessibility - Auto-added */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #0066cc; outline-offset: 2px; }
