.cookieInfo {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #332929, #7A3231);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;

    /* Start hidden (van ekrana) */
    transform: translateY(100%);
    transition: transform 1.5s ease;
}

.cookieInfo.show {
    transform: translateY(0); /* Klizi gore na ekran */
}

.cookieInfo p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.cookieInfo button {
    background-color: #C89119;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.cookieInfo button:hover {
    background-color: #A06E15;
}

@media (max-width: 600px) {
    .cookieInfo {
        flex-direction: column;
    }

    .cookieInfo p {
        margin-bottom: 10px;
    }

    .cookieInfo button {
        width: 100%;
    }
}
