/* Cookie Consent Banner - Premium Dark Theme */
.cookie-banner {
    position: fixed;
    bottom: -300px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #444;
    z-index: 99998;
    padding: 25px 0;
    padding-bottom: calc(25px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text p {
    color: #bbb;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-cookie-accept:hover {
    background: #e66000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.btn-cookie-decline {
    background: transparent;
    color: #999;
    border: 2px solid #555;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-cookie-decline:hover {
    border-color: #888;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
    }

    .cookie-text h4 {
        font-size: 16px;
        justify-content: center;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 18px 0;
    }

    .cookie-content {
        padding: 0 12px;
        gap: 15px;
    }

    .cookie-text h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .cookie-text p {
        font-size: 12px;
        line-height: 1.5;
    }

    .btn-cookie-accept {
        padding: 12px 18px;
    }

    .btn-cookie-decline {
        padding: 10px 18px;
    }
}