/* Cookie consent banner styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #ff8c00;
    padding: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.cookie-banner__link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-banner__link:hover {
    color: #ff9e1a;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.cookie-banner__button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner__button--accept {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: white;
}

.cookie-banner__button--accept:hover {
    background: linear-gradient(135deg, #ff9e1a, #ff7a1a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.cookie-banner__button--reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666666;
}

.cookie-banner__button--reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888888;
}

.cookie-banner__button--settings {
    background: transparent;
    color: #ff8c00;
    border: 1px solid #ff8c00;
}

.cookie-banner__button--settings:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #ff9e1a;
    color: #ff9e1a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__content {
        width: 100%;
    }

    .cookie-banner__buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-banner__button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner__container {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-banner__text {
        font-size: 13px;
    }

    .cookie-banner__buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-banner__button {
        width: 100%;
        padding: 10px 16px;
    }
}
