.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 0;
    background: #f1f1f1;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    width: 360px;
    flex-direction: column;
    border-radius: 10px;
}

.cookie-consent__text {
    margin-right: 0;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
}

@media (max-width: 999px) {
    .cookie-consent {
        position: fixed;
        bottom: 30px;
        left: 10px;
        right: 10px;
        width: auto;
    }
}