/* ===== Cookie Consent Banner ===== */
#cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a2540;
    border-top: 2px solid #1842b6;
    z-index: 9000;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

#cc-banner.cc-visible {
    transform: translateY(0);
}

.cc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cc-text {
    flex: 1;
    min-width: 200px;
}

.cc-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cc-text strong {
    color: #fff;
}

.cc-link {
    color: #26d48c;
    text-decoration: underline;
}

.cc-link:hover {
    color: #fff;
}

.cc-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cc-btn {
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cc-btn-primary {
    background: #26d48c;
    color: #000;
}

.cc-btn-primary:hover {
    background: #1842b6;
    color: #fff;
}

.cc-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

/* ===== Google Maps Placeholder ===== */
#cc-maps-placeholder {
    min-height: 400px;
    background: #0d1b2a;
    border-radius: 0.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    width: 100%;
    height: 100%;
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
    .cc-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .cc-actions {
        width: 100%;
    }

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