.kepa-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.kepa-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 1rem;
}

.kepa-cookie-text {
    flex: 1;
    line-height: 1.6;
    font-size: 15px;
    max-width: 800px;
}

.kepa-cookie-text a {
    color: #FFDE59;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.kepa-cookie-text a:hover {
    color: #fff;
}

.kepa-cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.kepa-cookie-button {
    background: #FFDE59;
    color: #212121;
    border: none;
    padding: 0.875rem 2rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 15px;
    min-width: 140px;
}

.kepa-cookie-button:hover {
    background: #FFD700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.4);
}

.kepa-cookie-button:active {
    transform: translateY(0);
}

.kepa-cookie-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.kepa-cookie-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #666;
    padding: 0.75rem 1.5rem;
    min-width: 120px;
}

.kepa-cookie-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #999;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.kepa-cookie-button-secondary:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 1024px) {
    .kepa-cookie-content {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .kepa-cookie-text {
        font-size: 14px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .kepa-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .kepa-cookie-text {
        font-size: 13px;
    }
    
    .kepa-cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .kepa-cookie-button,
    .kepa-cookie-button-secondary {
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .kepa-cookie-banner {
        padding: 0.75rem;
    }
    
    .kepa-cookie-text {
        font-size: 12px;
    }
    
    .kepa-cookie-button,
    .kepa-cookie-button-secondary {
        font-size: 14px;
        padding: 0.625rem 1.25rem;
    }
} 