/* ── Guide Tour Overrides ── */
.shepherd-element {
    z-index: 10000;
    max-width: 360px;
}
.shepherd-content {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.shepherd-header {
    background: var(--cg-primary, #0d6efd);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px 10px 0 0;
}
.shepherd-title {
    font-size: 0.9rem;
    font-weight: 600;
}
.shepherd-cancel-icon {
    color: rgba(255, 255, 255, 0.7);
}
.shepherd-cancel-icon:hover {
    color: #fff;
}
.shepherd-text {
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
}
.shepherd-footer {
    padding: 0 1rem 0.75rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* ── Tour This Page Button ── */
.eg-tour-btn {
    border-radius: 20px;
    font-size: 0.78rem;
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
    margin-left: 0.5rem;
}

/* ── Getting Started Checklist ── */
.eg-checklist {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    z-index: 1050;
    overflow: hidden;
    animation: eg-slide-up 0.3s ease-out;
}
@keyframes eg-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.eg-checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem 0.5rem;
}
.eg-checklist-header strong {
    font-size: 0.9rem;
    color: #1f2937;
}
.eg-checklist-progress {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: 0.5rem;
}
.eg-checklist-bar {
    height: 4px;
    background: #f3f4f6;
    margin: 0 1rem 0.5rem;
    border-radius: 2px;
    overflow: hidden;
}
.eg-checklist-bar-fill {
    height: 100%;
    background: var(--cg-primary, #0d6efd);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.eg-checklist-items {
    padding: 0 0.5rem 0.5rem;
    max-height: 260px;
    overflow-y: auto;
}
.eg-checklist-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: background 0.15s;
    cursor: pointer;
}
.eg-checklist-item:hover {
    background: #f9fafb;
    text-decoration: none;
    color: #374151;
}
.eg-checklist-item.done {
    opacity: 0.55;
}
.eg-checklist-item.done .eg-checklist-text span {
    text-decoration: line-through;
}
.eg-checklist-box {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: #fff;
    transition: all 0.2s;
}
.eg-checklist-item.done .eg-checklist-box {
    background: var(--cg-primary, #0d6efd);
    border-color: var(--cg-primary, #0d6efd);
}
.eg-checklist-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
}
.eg-checklist-text i {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .eg-checklist {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
        max-width: 340px;
    }
}
