.dexon-cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: -120px;
    z-index: 99999;
    max-width: 480px;
    margin: 0 auto;
    background: #1f1f1f;
    color: #f2f2f2;
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.dexon-cookie-consent.is-visible {
    bottom: 16px;
    opacity: 1;
    pointer-events: auto;
}

.dexon-cookie-consent__text {
    margin: 0;
    flex: 1 1 220px;
}

.dexon-cookie-consent__text a {
    color: #ffde5d;
    text-decoration: underline;
}

.dexon-cookie-consent__actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: auto;
}

.dexon-cookie-consent__btn {
    border: none;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.dexon-cookie-consent__btn--accept {
    background: #ffde5d;
    color: #1f1f1f;
}

.dexon-cookie-consent__btn--decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

@media (max-width: 480px) {
    .dexon-cookie-consent {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .dexon-cookie-consent__actions {
        margin-left: 0;
        justify-content: center;
    }
}
