#jco-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.9);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 16px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#jco-cookie-banner.jco-visible {
    transform: translateY(0);
}

#jco-cookie-banner.jco-hidden {
    transform: translateY(100%);
}

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

.jco-cookie-text strong {
    display: block;
    margin-bottom: 2px;
}

.jco-cookie-links {
    margin-top: 4px;
}

.jco-cookie-links a {
    color: #fff;
    text-decoration: underline;
}

.jco-cookie-links span {
    margin: 0 4px;
    opacity: 0.8;
}

.jco-cookie-actions {
    flex-shrink: 0;
}

.jco-btn {
    border: none;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
}

.jco-btn-primary {
    background: #28a745;
    color: #fff;
}

.jco-btn-primary:hover {
    background: #218838;
}

/* Responzívne prispôsobenie */
@media (max-width: 600px) {
    #jco-cookie-banner {
        font-size: 13px;
    }

    .jco-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .jco-cookie-actions {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .jco-btn {
        width: auto;
    }
}
