/* ============================================================
   Cookie Consent Banner
   ============================================================ */

.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(196, 157, 72, 0.3);
    padding: 18px 24px;
    animation: cc-slidein 0.35s ease;
}

@keyframes cc-slidein {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cc-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cc-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}

.cc-icon {
    font-size: 1.4rem;
    color: #c49d48;
    flex-shrink: 0;
}

.cc-text p {
    margin: 0;
    font-size: 0.88rem;
    color: #cccccc;
    font-family: 'Jost', sans-serif;
    line-height: 1.5;
}

.cc-text a {
    color: #c49d48;
    text-decoration: underline;
}

.cc-text a:hover {
    color: #e0b85a;
}

.cc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cc-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    border: none;
    letter-spacing: 0.02em;
}

.cc-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.cc-accept {
    background: linear-gradient(135deg, #c49d48, #e0b85a);
    color: #000;
}

.cc-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
}

.cc-decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

@media (max-width: 560px) {
    .cc-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cc-actions {
        width: 100%;
    }

    .cc-btn {
        flex: 1;
        text-align: center;
    }
}
