.dropdown-bottom-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 72vh;
    background: var(--bg-color);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -3px 12px var(--shadow-color);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.25s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    top: auto;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.dropdown-bottom-container.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.dropdown-bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    min-height: 44px;
    font-weight: var(--text-gras);
    position: sticky;
    top: 0;
    z-index: 1;
}

.bottom-option {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--taille-text-pc);
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
    transition: background-color 0.2s ease;
    background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.close-bottom {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.dropdown-bottom-content {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-bottom-trigger {
    margin-top: 2px;
    margin-left: 10px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-bottom-trigger:hover {
    transform: scale(1.2);
    color: var(--text-color);
}

@media (min-width: 768px) {
    .dropdown-bottom-container {
        width: min(420px, 95vw);
        left: auto;
        right: 14px;
        bottom: 14px;
        border-radius: 14px;
        max-height: min(72vh, 520px);
        transform: translateY(20px);
    }

    .dropdown-bottom-container.active {
        transform: translateY(0);
    }

    .close-bottom {
        font-size: var(--taille-icon-mo);
    }

    .bottom-option {
        font-size: var(--taille-text-mo);
    }
}

.action-feedback-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(46, 125, 255, 0.2), rgba(7, 16, 35, 0.58));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 12000;
}

.action-feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

.action-feedback-core {
    width: min(52vw, 240px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(120, 190, 255, 0.95), rgba(26, 99, 255, 0.92) 60%, rgba(11, 57, 159, 0.9));
    box-shadow: 0 0 0 10px rgba(72, 147, 255, 0.18), 0 0 46px rgba(58, 147, 255, 0.62);
    transform: scale(0.62);
}

.action-feedback-overlay.active .action-feedback-core {
    animation: action-core-pop 620ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.action-feedback-icon {
    font-size: clamp(44px, 8vw, 78px);
    color: #eaf4ff;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.7), 0 0 28px rgba(170, 218, 255, 0.9);
}

@keyframes action-core-pop {
    0% {
        transform: scale(0.62);
        opacity: 0.45;
    }

    58% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

