:root {
    --kc-primary-color: #3b82f6;
    --kc-bg-color: rgba(255, 255, 255, 0.95);
    --kc-text-color: #1f2937;
    --kc-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Cookie Bar Container */
#kc-cookie-bar {
    position: fixed;
    z-index: 999999;
    background: var(--kc-bg-color);
    color: var(--kc-text-color);
    padding: 1.5rem;
    box-shadow: var(--kc-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
}

/* Positions */
#kc-cookie-bar.kc-pos-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    transform: translateY(100%);
}

#kc-cookie-bar.kc-pos-top {
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transform: translateY(-100%);
}

#kc-cookie-bar.kc-pos-left {
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    border-radius: 1rem;
    transform: translateX(-110%);
}

#kc-cookie-bar.kc-pos-right {
    bottom: 2rem;
    right: 2rem;
    max-width: 400px;
    border-radius: 1rem;
    transform: translateX(110%);
}

#kc-cookie-bar.kc-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0) !important;
}

/* Content Styles */
.kc-header h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.kc-body p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* Actions */
.kc-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.kc-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
}

.kc-btn-primary {
    background: var(--kc-primary-color);
    color: white;
}

.kc-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.kc-btn-secondary {
    background: rgba(0,0,0,0.05);
    color: inherit;
}

.kc-btn-secondary:hover {
    background: rgba(0,0,0,0.1);
}

/* Floating Button */
#kc-float-trigger {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999998;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--kc-primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--kc-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0);
}

#kc-float-trigger.kc-visible {
    transform: scale(1);
}

#kc-float-trigger:hover {
    transform: scale(1.1);
}

#kc-float-trigger svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

@media (max-width: 640px) {
    #kc-cookie-bar.kc-pos-left,
    #kc-cookie-bar.kc-pos-right {
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        border-radius: 0;
    }
}
