.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
}

.cookie-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notice p {
    margin: 0;
    font-size: 14px;
}

.cookie-notice a {
    color: #FDB813;
    text-decoration: none;
}

.cookie-notice a:hover {
    text-decoration: underline;
    color: #fff;
}

.cookie-notice .btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: none;
    white-space: nowrap;
}

.cookie-notice .btn-accept {
    background-color: #FDB813;
    color: #000;
    border: none;
    font-weight: bold;
}

.cookie-notice .btn-accept:hover {
    background-color: #fff;
    color: #000;
}

.cookie-notice .btn-more {
    background-color: transparent;
    border: 1px solid #FDB813;
    color: #FDB813;
}

.cookie-notice .btn-more:hover {
    background-color: #FDB813;
    color: #000;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice .buttons {
        display: flex;
        gap: 10px;
    }
} 