/* ========================================
   BREADCRUMB STYLES
   ======================================== */

.breadcrumb {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    margin-top: 64px; /* Height of fixed nav */
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    padding: 4px 8px;
    border-radius: 6px;
}

.breadcrumb-link:hover {
    color: var(--edukoura-blue);
    background: #eff6ff;
}

.breadcrumb-link svg {
    flex-shrink: 0;
}

.breadcrumb-separator {
    color: #d1d5db;
    font-size: 0.875rem;
    user-select: none;
}

.breadcrumb-current {
    color: var(--edukoura-blue);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 4px 8px;
}

/* ========================================
   CTA STICKY BAR STYLES
   ======================================== */

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-sticky.visible {
    transform: translateY(0);
}

.cta-sticky-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-sticky-content {
    flex: 1;
}

.cta-sticky-text {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-sticky-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cta-sticky-text span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-sticky-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.cta-sticky-close:hover {
    background: #f3f4f6;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-sticky-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-sticky-text {
        align-items: center;
    }
    
    .cta-sticky-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cta-sticky-actions .btn-primary {
        flex: 1;
    }
}
