#cookies-popup {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: #e2c5b0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 1s ease-in-out;
    text-align: center;
}

#cookies-popup p {
    color: #232323;
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.2;
}

#cookies-popup button {
    background: #d51328;
    color: white;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#cookies-popup button:hover {
    background: #cc0000;
}

.cookies-popup-hidden {
    transform: translateX(150%);
    opacity: 0;
}

.cookies-popup-visible {
    transform: translateX(0);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #f1f1f1;
}

@media only screen and (max-width: 768px) {
    #cookies-popup {
        position: fixed;
        bottom: 0px;
        width: 100%;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        transition: all 1s ease-in-out;
        text-align: center;
    }

    #cookies-popup button {
        background: #d51328;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 10px;
        transition: background 0.3s;
    }

    #cookies-popup p {
        margin: 0 0 12px 0;
        font-size: 10px;
        line-height: 1.2;
    }

    .close-popup {
        top: 5px;
        right: 10px;
        font-size: 18px;
    }
}