.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.cookie-consent p {
    margin: 0;
}

.cookie-consent a {
    color: #ff9902;
    text-decoration: underline;
}

.cookie-consent-btn {
    background: #ff9902;
    color: #fff;
    border: none;
    padding: 8px 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-consent-btn:hover {
    background: #e08a00;
}
