/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #333;
    color: var(--white);
    padding: 10px;
    z-index: 1000;
    display: none;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    /* Hide by default */
}

.cookie-notice.show {
    display: block;
    /* Show when .show class is added */
}

.cookie-notice.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-notice__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 10px;
}

.cookie-notice__content p {
    margin: 0;
    margin-right: 10px;
    color: var(--white);
    font-size: 0.8rem;
    flex: 1;
    line-height: 1.3;
}

.cookie-notice__content a {
    color: var(--white);
    text-decoration: underline;
}

/* Button styling */
.cookie-notice__content .btn {
    margin-left: auto;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    border-radius: 0;
    min-width: 120px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 8px;
    }

    .cookie-notice__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
    }

    .cookie-notice__content p {
        margin-bottom: 8px;
        margin-right: 0;
    }

    .cookie-notice__content .btn {
        margin-left: 0;
        align-self: flex-end;
        padding: 4px 15px;
        min-width: 100px;
    }
}