/* cookie-consent.css */
.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg, rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border, rgba(0,0,0,0.1));
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Pretendard', sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}
.cc-banner.active {
    transform: translateY(0);
}
.cc-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.9rem;
    color: var(--text-main, #333);
    line-height: 1.5;
}
.cc-text a {
    color: var(--accent-primary, #6b4c9a);
    text-decoration: underline;
    font-weight: 600;
}
.cc-buttons {
    display: flex;
    gap: 1rem;
}
.cc-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.cc-btn-accept {
    background-color: var(--accent-primary, #6b4c9a);
    color: #fff;
}
.cc-btn-accept:hover {
    background-color: #553A7B;
}
.cc-btn-decline {
    background-color: transparent;
    color: var(--text-muted, #666);
    border: 1px solid var(--glass-border, #ddd);
}
.cc-btn-decline:hover {
    background-color: rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .cc-banner {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    .cc-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .cc-buttons {
        width: 100%;
        justify-content: center;
    }
}
[data-theme='dark'] .cc-banner {
    background-color: rgba(30, 30, 30, 0.9);
    border-top: 1px solid rgba(255,255,255,0.1);
}
[data-theme='dark'] .cc-text {
    color: #f1f1f1;
}
[data-theme='dark'] .cc-btn-decline {
    color: #bbb;
    border-color: #555;
}
[data-theme='dark'] .cc-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}
