/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 16px 20px;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: cookieSlideUp 0.4s ease-out;
}

.cookie-consent.show {
    display: flex;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.5;
    color: #ccc;
}

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

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: #2D5016;
    color: white;
}

.cookie-btn.accept:hover {
    background: #3a6b1e;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        padding-bottom: calc(15px + env(safe-area-inset-bottom, 0));
    }

    .cookie-consent p {
        font-size: 12px;
    }
}