
.guided-tour-overlay {
    position: fixed;
    inset: 0;
    z-index: 15000;
    display: none;
    pointer-events: none;
}

.tour-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Главный эффект — вырез в затемнении */
.guided-tour-highlight {
    position: absolute;
    border: 3px solid #524438;
    border-radius: 16px;
    box-shadow: 
        0 0 0 9999px rgba(15, 23, 42, 0.82), /* Затемнение вокруг */
        0 0 0 6px rgba(82, 68, 56, 0.5);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15100;
    pointer-events: none;
}

.guided-tour-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    padding: 26px 28px;
    max-width: 380px;
    z-index: 15200;
    pointer-events: all;
}

/* Остальные стили (оставляем без изменений) */
.tour-progress {
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 22px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #524438, #8A7E6E);
    width: 0%;
    transition: width 0.5s ease;
}

.tour-dots {
    display: flex;
    gap: 7px;
}

.tour-dots span {
    width: 9px;
    height: 9px;
    background: #e2e8f0;
    border-radius: 50%;
    transition: 0.3s;
}

.tour-dots span.active {
    background: #524438;
    transform: scale(1.4);
}

.tour-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.tour-skip {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.97rem;
    cursor: pointer;
}

.tour-next {
    background: linear-gradient(90deg, #524438, #6B5E50);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(82, 68, 56, 0.3);
}