.foodz-cookie-consent {
    position: fixed;
    inset: auto 1.5rem 1.5rem 1.5rem;
    z-index: 9999;
    max-width: 480px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background-color: rgba(33, 33, 33, 0.94);
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    display: none;
    transform: translateY(30px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0;
}

.foodz-cookie-consent.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.foodz-cookie-consent.is-dismissed {
    opacity: 0;
    transform: translateY(20px);
}

.foodz-cookie-consent__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.foodz-cookie-consent__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.45;
}

.foodz-cookie-consent__link {
    color: #ffa347;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.foodz-cookie-consent__link:hover,
.foodz-cookie-consent__link:focus {
    color: #ffd4a6;
}

.foodz-cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.foodz-cookie-consent__button {
    border: none;
    border-radius: 999px;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #ff6a00;
    color: #1a1a1a;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.foodz-cookie-consent__button:hover,
.foodz-cookie-consent__button:focus {
    background-color: #ffa347;
    color: #000000;
    outline: none;
}

@media (min-width: 600px) {
    .foodz-cookie-consent__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .foodz-cookie-consent__text {
        flex: 1 1 auto;
        padding-right: 1rem;
    }

    .foodz-cookie-consent__actions {
        flex: 0 0 auto;
    }
}
