#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #e8a000;
    padding: 14px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
    font-size: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

#cookie-banner .cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

#cookie-banner .cookie-text {
    flex: 1;
    min-width: 200px;
    color: #333;
    line-height: 1.5;
}

#cookie-banner .cookie-text a {
    color: #8b5a00;
    text-decoration: underline;
}

#cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-reject {
    background: transparent;
    border: 2px solid #999;
    color: #555;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
}

.btn-cookie-reject:hover {
    border-color: #555;
    color: #222;
}

.btn-cookie-accept {
    background: #e8a000;
    border: 2px solid #e8a000;
    color: #1a1a1a;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.btn-cookie-accept:hover {
    background: #c98900;
    border-color: #c98900;
}

@media (max-width: 600px) {
    #cookie-banner .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
