/* Cookie Consent Toast Styles */
.lcc-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: none;
}

.lcc-toast.lcc-toast--visible {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.lcc-toast--settings {
    z-index: 10002;
}

.lcc-toast__content {
    padding: 20px;
}

.lcc-toast__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #1a1a1a;
    line-height: 1.3;
}

.lcc-toast__text {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0 0 16px;
}

.lcc-toast__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.lcc-toast__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lcc-toast__btn--primary {
    background: #111;
    color: #fff;
}

.lcc-toast__btn--primary:hover {
    background: #333;
}

.lcc-toast__btn--secondary {
    background: #f0f0f0;
    color: #333;
}

.lcc-toast__btn--secondary:hover {
    background: #e0e0e0;
}

.lcc-toast__link {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    margin-left: auto;
}

.lcc-toast__link:hover {
    color: #333;
}

.lcc-toast__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lcc-toast__close:hover {
    background: #e0e0e0;
    color: #333;
}

.lcc-toast__section {
    margin-bottom: 12px;
}

.lcc-toast__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.lcc-toast__label input {
    width: 16px;
    height: 16px;
}

/* Backdrop - hidden by default for toast */
.lcc-backdrop {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .lcc-toast {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }

    .lcc-toast__content {
        padding: 16px;
    }

    .lcc-toast__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lcc-toast__btn {
        width: 100%;
        text-align: center;
    }

    .lcc-toast__link {
        margin-left: 0;
        text-align: center;
    }
}

/* Utility classes */
.lcc-u-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
