/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-text p {
    margin: 0 0 5px 0;
}

.cookie-text a {
    color: var(--primary, #e30613);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    font-family: inherit;
}

.cookie-btn:active {
    transform: scale(0.98);
}

.btn-accept {
    background-color: var(--primary, #e30613);
    color: #ffffff;
}

.btn-accept:hover {
    background-color: var(--primary-hover, #b0050f);
}

.btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #555;
}

.btn-decline:hover {
    background-color: #333;
}
