.af-loader__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.af-loader__dot {
    width: 12px;
    height: 12px;
    background: #f36a3f;
    border-radius: 50%;
    animation: af-bounce 1.4s infinite ease-in-out;
}

.af-loader__dot:nth-child(1) { animation-delay: -0.32s; }
.af-loader__dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes af-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

article {
    margin-bottom: 60px;
    scroll-margin-top: 80px;
}

.af-circle-loader {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    padding: 3px;
    width: 160px;
    height: 160px;
}

.af-circle-loader__content {
    position: relative;
    width: 100%;
    height: 100%;
}

.af-circle-loader__close {
    position: absolute;
    top: 0;
    right: 0;
    background: #1d1d1b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.af-circle-loader__progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.af-circle-loader__track {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 2;
}

.af-circle-loader__fill {
    fill: none;
    stroke: #f36a3f;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.af-circle-loader__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
}