.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.95);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    flex: 1;
    margin-right: 2rem;
}

.cookie-consent h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-consent-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cookie-consent-accept {
    background-color: #ca0c0c;
    color: white;
}

.cookie-consent-accept:hover {
    background-color: #ca0c0cc8;
}

.cookie-consent-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-consent-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}