/**
 * Cookie Banner Styles
 */

@import url('https://fonts.googleapis.com/css2?family=KoHo:wght@400;700&display=swap');

.cookie-banner,
.cookie-banner__container,
.cookie-banner__header,
.cookie-banner__title,
.cookie-banner__text,
.cookie-banner__btn {
    font-family: 'KoHo', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(84, 17, 97, 0.6);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__link {
    color: #a8dadc;
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: #f1faee;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

.cookie-banner__btn--reject {
    background-color: transparent;
    color: #ffffff;
}

.cookie-banner__btn--reject:hover {
    background-color: #ffffff;
    color: #1a1a2e;
}

.cookie-banner__btn--accept {
    background: #00c22b;
    color: #fff;
    border: none;
    border-top-left-radius: 2em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 2em;
    border-bottom-left-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 28px;
    box-shadow: none;
    transition: background 0.2s;
}

.cookie-banner__btn--accept:hover {
    background: #00991f;
}

.cookie-banner__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cookie-banner__header img {
    width: 28px;
    height: 28px;
    margin-top: 2px;
}

.cookie-banner__header .cookie-banner__title {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    line-height: 1.1;
}

.cookie-banner__header .cookie-banner__text {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.cookie-banner__header>div {
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner__container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__text {
        margin-bottom: 8px;
    }

    .cookie-banner__buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__btn {
        padding: 10px 20px;
    }

    .cookie-banner__header .cookie-banner__title {
        font-size: 22px;
    }

    .cookie-banner__header img {
        width: 24px;
        height: 24px;
    }
}