:root {
    --color-primary: #28235a;
    --color-primary-accent: #1e185f;

    --button-border-radius: 0;
    --wrapper-border-radius: 0;
}

.cookie-popup {
    box-sizing: border-box;
    position: fixed;
    bottom: 20px;
    right: -370px;
    max-width: 320px;
    width: 100%;
    background: #fff;
    border-radius: var(--wrapper-border-radius);
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
.cookie-popup.show {
    right: 20px;
}
.cookie-popup header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
header i {
    color: var(--color-primary);
    font-size: 32px;
}
header h2 {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 25px !important;
}
.cookie-popup .data p {
    color: #333;
    font-size: 16px;
    margin-top: 0;
}
.data p a {
    display: block;
    margin-top: 5px;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: none;
}
.data p a:hover {
    text-decoration: underline;
}
.cookie-popup .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-popup .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: var(--button-border-radius);
    background: var(--color-primary);
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}
.cookie-popup #acceptBtn:hover {
    background-color: var(--color-primary-accent);
}
#declineBtn {
    border: 2px solid var(--color-primary);
    background-color: #fff;
    color: var(--color-primary);
}
#declineBtn:hover {
    background-color: var(--color-primary);
    color: #fff;
}

@media (max-width: 575px) {
    .cookie-popup {
        bottom: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .cookie-popup.show {
        right: 0;
    }
}

